HoangNamMapper

Untitled

Nov 7th, 2015
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.50 KB | None | 0 0
  1. // Mat na
  2. CMD:mask(playerid, params[])
  3. {
  4.     if(mask[playerid] == 0)
  5.     {
  6.         SendClientMessage(playerid, -1, "Ban da deo mat na.");
  7.         SetPlayerDisplayName(playerid, "Stranger");
  8.         mask[playerid] = 1;
  9.     } else {
  10.         SendClientMessage(playerid, -1, "Ban da thao mat na xuong.");
  11.         new orname[MAX_PLAYER_NAME+1]; GetPlayerName(playerid, orname, sizeof(orname));
  12.         SetPlayerDisplayName(playerid, orname);
  13.         mask[playerid] = 0;
  14.     }
  15.     return 1;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment