Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- forward five();
- forward four();
- forward three();
- forward two();
- forward one();
- forward start();
- public five()
- {
- GameTextForAll("~y~5",3000,3);
- return 1;
- }
- public four()
- {
- GameTextForAll("~y~4",3500,3);
- return 1;
- }
- public three()
- {
- GameTextForAll("~y~3",4000,3);
- return 1;
- }
- public two()
- {
- GameTextForAll("~y~2",5000,3);
- return 1;
- }
- public one()
- {
- GameTextForAll("~y~1",7500,3);
- return 1;
- }
- public start()
- {
- GameTextForAll("~y~GO GO GO",10000,3);
- return 1;
- }
- COMMAND:countdown(playerid, params[])
- {
- if(level[playerid] >= 1)
- {
- SetTimer("five", 1000, 0);
- SetTimer("four", 2000, 0);
- SetTimer("three", 3000, 0);
- SetTimer("two", 4000, 0);
- SetTimer("one", 5000, 0);
- SetTimer("start", 6000, 0);
- }
- else return 0;
- return 1;
- }
Advertisement
Add Comment
Please, Sign In to add comment