Need testers for new "engine"

Talk about making games.

Re: My side project. Check new post!!

Postby Kalladdolf » Mon May 18, 2009 12:56 pm

zygoth wrote:I think you should study pyro's collision system

You know, you have a point there. That system is the best one on GE yet (and I'm even too stupid to figure out what parts of the code actually belong to it).
=}
User avatar
Kalladdolf
 
Posts: 2427
Joined: Sat Sep 08, 2007 8:22 am
Location: Germany
Score: 120 Give a positive score

Re: My side project. Check new post!!

Postby jimmynewguy » Mon May 18, 2009 7:33 pm

zygoth wrote:and camera
Zygo

what do you mean by his camera? screen wraping?

EDIT: now multiple save locations available, along with when you die you go back to the last save point, with 1 hitpoint, you get to keep the items you got, and the enemies come back. I think being able to keep your stuff, but having 1 hitpoint is a fair trade, how about you?
Working on a probably too ambitious project! Wild-west-adventure-RPG-shooter-thing.
User avatar
jimmynewguy
 
Posts: 1137
Joined: Sat Mar 31, 2007 6:27 pm
Score: 89 Give a positive score

Re: My side project. Check new post!!

Postby pyrometal » Tue May 19, 2009 2:30 am

zygoth wrote:I think you should study pyro's collision system and camera--it is good for platformers like this.


lol, I upgraded both of these systems recently, but I haven't posted an example of them yet... Maybe I should! ttyl all!

--pyro
SPRITE WARRIOR:
Free, open-source & crossplatform pixel art editor (currently under construction).
User avatar
pyrometal
 
Posts: 706
Joined: Wed Nov 28, 2007 4:07 am
Location: Kingston, ON, Canada
Score: 86 Give a positive score

Re: My side project. Check new post!!

Postby Lexcondran » Tue May 19, 2009 11:20 pm

jimmeh how do i make a rpg battlescreen im having way to many issues with my rpg as i got many things down but cant move onward with it since my fighting is with many issues/i got leveling up down and somewhat the stats though there are problems, somewhat ive figured out Melee-ranged-magic attack types but still many issues
http://www.mediafire.com/?e4zzycilztdm1qm =My RPG APP FILE V. 3.0 {7/15/2010}
http://www.mediafire.com/?tjjmmmkzyga =My editable demo of my Rpg for people V2.3
viewtopic.php?f=6&t=10247 =Link to my RPG's (4.0) Topic =]
User avatar
Lexcondran
 
Posts: 230
Joined: Thu Jul 31, 2008 6:09 pm
Location: Tucson, Arizona, USA
Score: 8 Give a positive score

Re: My side project. Check new post!!

Postby jimmynewguy » Wed May 20, 2009 1:52 am

pyrometal wrote:
zygoth wrote:I think you should study pyro's collision system and camera--it is good for platformers like this.


lol, I upgraded both of these systems recently, but I haven't posted an example of them yet... Maybe I should! ttyl all!

--pyro

*cough hack wheez* lol, just kiding, but it would be pretty neat :)

i'm having too much fun making this lol

@lex~~i can make an rpg battle demo tomarrow, right now i'm tired, and about to watch deadliest warrior(best show ever!!!)
Working on a probably too ambitious project! Wild-west-adventure-RPG-shooter-thing.
User avatar
jimmynewguy
 
Posts: 1137
Joined: Sat Mar 31, 2007 6:27 pm
Score: 89 Give a positive score

Re: My side project. Check new post!!

Postby jimmynewguy » Sat May 23, 2009 10:39 pm

aliright so i developed my own collision system, it's not as good as Pyro's but works the way it needs to for this game. the only problem is it works with clones, so i'm gonna have to tear down some long tile work and switch it to clones. so don't expect anything new for a while(even though you didn't before), but when i'm done, you'll see it was worth it :mrgreen:


EDIT!!!!! Starting form scratch....i remember reading a post by DST about how it's ok to make more than one attempt. i realized that if i had so many bugs this early in development there could be a potential long term problem. I have made my own collision system, and i will make my own camera system. Now that i'm alot better with GE than when i started this projecet, i can fix all the bugs, but i have to start from ground zero, here goes! :D
Working on a probably too ambitious project! Wild-west-adventure-RPG-shooter-thing.
User avatar
jimmynewguy
 
Posts: 1137
Joined: Sat Mar 31, 2007 6:27 pm
Score: 89 Give a positive score

Re: Need testers for new "engine"

Postby jimmynewguy » Mon May 25, 2009 10:59 pm

see first post for new "engine" please test, and thank you :)
Working on a probably too ambitious project! Wild-west-adventure-RPG-shooter-thing.
User avatar
jimmynewguy
 
Posts: 1137
Joined: Sat Mar 31, 2007 6:27 pm
Score: 89 Give a positive score

Re: Need testers for new "engine"

Postby Hblade » Wed May 27, 2009 9:28 pm

Wow nice Jimmy :D.
Subscribe to my YouTube? - Yes| No
User avatar
Hblade
 
Posts: 4455
Joined: Fri Dec 08, 2006 11:14 pm
Score: 181 Give a positive score

Re: Need testers for new "engine"

Postby Kalladdolf » Mon Jun 01, 2009 7:27 am

This is quite a nice collision system, jimmy! Might one enquire how you made it?
User avatar
Kalladdolf
 
Posts: 2427
Joined: Sat Sep 08, 2007 8:22 am
Location: Germany
Score: 120 Give a positive score

Re: Need testers for new "engine"

Postby jimmynewguy » Mon Jun 01, 2009 2:44 pm

lol, sure. it's basically a engine based off "floors" each line of tiles being it's own floor
[ ][ ][ ][ ][ ] floor 1
[ ][ ][ ][ ][ ] floor 2
[ ][ ][ ][ ][ ] floor 3
ect.
then i found the offset of the collision which was 151 pixles(idk why though sorry) so on top collision
Code: Select all
yvelocity = 0;
y = collide.y + 151;

left collision
Code: Select all
x -= 3;//how fast player moves opposite direction

same with right but opposite
bottom
Code: Select all
yvelocity = 0;
y = collide.y + 187;//offset 187 for some reason??

the offset is just like how many pixles off the tile was from the actuall actor if you get me(if not i can explain better i think)
so that has to tweak based of your tiles ect. it would be sooooooooooo much easier with tiled clones and right now mapping out each floor is rather difficult so i wouldn't recommend it over Pyro's or anything, but it works none the less, right?
:)
Working on a probably too ambitious project! Wild-west-adventure-RPG-shooter-thing.
User avatar
jimmynewguy
 
Posts: 1137
Joined: Sat Mar 31, 2007 6:27 pm
Score: 89 Give a positive score

Re: Need testers for new "engine"

Postby Kalladdolf » Mon Jun 01, 2009 3:18 pm

Nice job of coming up with this, this is certainly a new (and nice) way of doing it!
Unfortunately, I couldn't possibly care about floors and special patterns in my game, but this might be useful for anyone else here.
User avatar
Kalladdolf
 
Posts: 2427
Joined: Sat Sep 08, 2007 8:22 am
Location: Germany
Score: 120 Give a positive score

Re: Need testers for new "engine"

Postby skydereign » Mon Jun 01, 2009 10:35 pm

I used a similar concept for collisions, I think the number is the ground's y - 1/2 its height, -half your actor's height + any displacement... I think that is it, not sure though, my system was slightly different.
User avatar
skydereign
 
Posts: 3510
Joined: Mon Jul 28, 2008 8:29 am
Score: 589 Give a positive score

Previous

Return to Game Development

Who is online

Users browsing this forum: No registered users and 1 guest