
-----------------------------------
sniper437
Thu Nov 24, 2005 5:00 pm

rpg help
-----------------------------------
so i'm making this rpg and i've hit a couple of problems :oops: 1. right now only battle and goblin work.
2. after the battle i want it to go back to the waiting room screen :?: 
3. i want to create boundries for the moving monsters in the mini-game
4. when the mp goes to zero i want it to disable the magic command..

if somone can show me how or edit the file and send it to me with the  problems fixed i'd really apreciate it :D

-----------------------------------
Tony
Thu Nov 24, 2005 7:16 pm


-----------------------------------
1. Keep working on it :)
2. Use 
if flag then
  magic_command()
else
  no_magic_command()
end if


-----------------------------------
do_pete
Fri Nov 25, 2005 11:10 am


-----------------------------------
In order to keep the characters and stuff on the screen you could go something like this
CharacterX := min (max (CharacterX, 0), maxx - Pic.Width (CharacterPic))
CHaracterY := min (max (CharacterY, 0), maxy - Pic.Height (CharacterPic))


-----------------------------------
Albrecd
Fri Nov 25, 2005 1:28 pm


-----------------------------------
When you use all of you mana in the fight, you can continue to do magic attacks and the mana just goes negative, also, you shouldn't require that the input be in capitals.
One more thing, get rid of the delays.
Nice start though.

-----------------------------------
do_pete
Fri Nov 25, 2005 1:50 pm


-----------------------------------
you can use Input.KeyDown
