Minorthreat0987
Pokemon Tellurium
- 462
- Posts
- 19
- Years
- Seen Jan 28, 2021
can any one post a picture of the lighthouse(from G/S/C) because i need to recolor the graphics for my game.
thanks in advance
thanks in advance
Super Saiyan Raditz said:i am makeing a pokemon game and i dont know how to make the battleing system,how to add the pokemon to the game and all the basic stuff in the game like catching pokemon adding them to your party and haveing a pc creating the attacks and stuff like that.
as i was saying i need help and you have to learn how to do it some times this is my first game on rpg maker 2003 if theres a better free program can you please give to a link to the download
class Game_Player < Game_Character
alias update_old update
def update
if Input.press?(Input::SHIFT)
@move_speed = 4.3
end
if not Input.press?(Input::SHIFT)
@move_speed = 3.8
end
update_old
end
end