Advertisement
Jujuv

[SAMP | INC] Gang-TDM Util

Mar 21st, 2012
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.27 KB | None | 0 0
  1. #include <a_samp>
  2.  
  3. GetPlayerGang(playerid)
  4. {
  5.     return GetPVarInt(playerid, "gang");
  6. }
  7. SetPlayerGang(playerid, gangid)
  8. {
  9.     SetPVarInt(playerid, "gang", gangid);
  10.     new response = 0;
  11.    
  12.     if(GetPVarInt(playerid, "gang") == gangid) { response = 1; }
  13.    
  14.     return response;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement