Advertisement
Guest User

Untitled

a guest
Jun 21st, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. function show_logo(playerid) {
  2. new string[64];
  3. format(string, sizeof(string), " %s (ID: %d)", GetName(playerid),playerid);
  4. PlayerTextDrawSetString(playerid, NameTD, string);
  5. PlayerTextDrawShow(playerid, NameTD);
  6. TextDrawShowForPlayer(playerid, LogoTD[0]);
  7. TextDrawShowForPlayer(playerid, LogoTD[1]);
  8. return 1;
  9. }
  10.  
  11. function hide_logo(playerid) {
  12. PlayerTextDrawHide(playerid, NameTD);
  13. TextDrawHideForPlayer(playerid, LogoTD[0]);
  14. TextDrawHideForPlayer(playerid, LogoTD[1]);
  15. return 1;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement