I'm trying to make a turn based game, and because everything is based off of the player calling update, I want to make it so pressing the "A" button skips your turn by telling the "Player" to call "Update". I'm pretty sure you can do this by using "tell" but I couldn't figure out how to do it. How would you do this? thanks!
If you are in the player code, on the confirm
event (which is the event that's called when the A button is pressed) you could just write call "update"
to trigger the update
event, which should work. You can also use tell event.player to
... if you wish, but that's a bit weird.
Tho, I do advise putting all the "skip the turn" code in the confirm
event, as that would probably make it simpler :))
1 Like
Thank you so much for your help!