Advertisement
mrdrifter

Odliczanie

Feb 14th, 2014
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. //Użycie Odlicz(playerid, <CZAS W SEKUNDACH>)
  2.  
  3. stock Odlicz(playerid, time)
  4. {
  5.  
  6. SetTimerEx("Odlicz@Timer", 1000, 0, "dd", playerid, time);
  7.  
  8. }
  9.  
  10. forward Odlicz@Timer(playerid, time);
  11. public Odlicz@Timer(playerid, time)
  12. {
  13. if(time > 0)
  14. {
  15. new str[32];
  16. format(str, sizeof(str), "Odliczanie! %d sek", time);
  17.  
  18. ShowPlayerDialog(playerid, 9999, DIALOG_STYLE_MSGBOX, "Odlicz", str, "Yep", "");
  19.  
  20. SetTimerEx("Odlicz@Timer", 1000, 0, "dd", playerid, time-1);
  21. }
  22.  
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement