Queue events or use delay / cooldown
Hey again.
Im still playing around with the MMF.
How can I achieve the following, I want the player character to dash forward after pressing space:
Player press space bar:
- Player set speed 100
- wait 1 sec
- Player set speed 50
- end event
Since im new with the system, Im having problems how to get that working smartly. I can circle around with bunch of shifty conditions, but what I wanna do is just like run a script that says:
Code:
player setspeed 100;
wait 1;
player setspeed 50;