Advertisement
Guest User

Untitled

a guest
Sep 19th, 2014
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. switch(xTestBusy)
  2. {
  3. case true:
  4. {
  5. if(!strcmp(xChars, text, false))
  6. {
  7. //new
  8. //string[456],
  9. new pName[MAX_PLAYER_NAME]
  10. ;
  11. GetPlayerName(playerid, pName, sizeof(pName));
  12. PlayerInfo[playerid][pTk] = PTK;
  13. format(string, sizeof(string), "{FF0000}[TK]{FFFFFF}Najbrzi je bio {FF0000}%s\" {FFFFFF}i osvaja nagradu od $%d i sada ima {FF0000}%d {FFFFFF}TK POENA. Ā»", pName,xCash,PTk);
  14. SendClientMessageToAll(COLOR_GRAD1, string);
  15. format(string, sizeof(string), "{00FFFF}Ā« Dobili ste $%dĀ»", xCash);
  16. SendClientMessage(playerid, COLOR_GRAD1, string);
  17. GivePlayerMoney(playerid, xCash);
  18. PlayerInfo[playerid][pTk] += 1;
  19. xReactionTimer = SetTimer("xReactionTest", TIMEE, 1);
  20. xTestBusy = false;
  21. SaveAccounts();
  22. }
  23. }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement