Page 1 of 1
GE-RPG
Posted:
Thu Feb 10, 2005 4:22 am
by BDOVPro
Hello everyone, im new to this program and i was wondering if its possible to make the Player/Actor move up and down like in an RPG, and if it is can some one please tell me how to do this? or provide an example/tutorial?
Thanks
Posted:
Fri Feb 11, 2005 1:20 am
by willg101
I'm not quite sure what you mean by 'like in an RPG' , but it's possible to move the player pretty much any where/way you want to.
Posted:
Fri Feb 11, 2005 4:31 am
by BDOVPro
I did figure it out(took a while) but what i ment was "can you make them move in directions Left, Right, UP, Down, like in pretty much all 2d games that are not platform. Pokemon, Dragon Warrior(i think thats the game) and other Game Boy Color games." well thanks anyway and i just have to say game-editor is a great system for ppc game development.
Posted:
Fri Feb 11, 2005 2:56 pm
by Just4Fun
BDOVPro:
You can create just about any sort of 2D game using GE. As far as your question goes, you may want to study the tutorials that are listed under the GE help menu. There are several great tutorials that deal with player movement.
Good Luck.
Posted:
Fri Feb 11, 2005 4:03 pm
by micro
If you mean like the first Zelda game then i know how t make it
add this
"add"
"key down"
(press UP f.x)
"script editor"
y = y -6;
"add"
"key down"
(press DOWN f.x)
"script editor"
y = y +6
Posted:
Fri Feb 11, 2005 4:14 pm
by ingsan
BDOVPro, don't forget to make the view move with your Actor whenever you use micro's example