Guest User

Untitled

a guest
Jan 11th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. task Banka_Update[10000]()
  2. {
  3. foreach(new playerid : Player)
  4. {
  5. if(PlayerInfo[playerid][pBankovniRacun] == 0)
  6. {
  7. new strall[126];
  8. format(strall, sizeof(strall), "~r~no account",PlayerInfo[playerid][pBankovniRacun]);
  9. PlayerTextDrawSetString(playerid, TDEditor_PTD[playerid][1], strall);
  10. }
  11. if(PlayerInfo[playerid][pBankovniRacun] == 1)
  12. {
  13. new strall[126];
  14. format(strall, sizeof(strall), "%d$",PlayerInfo[playerid][pNovacBanka]);
  15. PlayerTextDrawSetString(playerid, TDEditor_PTD[playerid][1], strall);
  16. }
  17. }
  18. return 1;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment