hey CAAZ can u post the ged file for your pokemon remix because my friend and i ave been trying to make a turn by turn attack game exactly how u have yours set up for about 6 months now and we're not really sure how to do it

J Slayer67 wrote:hey CAAZ can u post the ged file for your pokemon remix because my friend and i ave been trying to make a turn by turn attack game exactly how u have yours set up for about 6 months now and we're not really sure how to do it![]()
its simple really at the start of your program have a variable
myturn=0
then in your controlled player button ie tackle put a conditional loop in mouse down left click
if myturn=0
{
dmg action here
myturn=1
}
then in the enemy draw code conditional loop
if myturn=1
{
damage action
myturn=0
}