Advertisement
razvan_xd

Untitled

Jul 23rd, 2012
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.89 KB | None | 0 0
  1. //==============================================================================
  2. public IsPlayerAdminCall (playerid)
  3.     return (Statistici [playerid][pAdmin] >= 1);
  4. //==============================================================================
  5. public IsPlayer1340Admin (playerid)
  6.     return (Statistici [playerid][pAdmin] >= 1340);
  7. //==============================================================================
  8. public LockAccount (playerid, Nume[], IP[], Motiv[])
  9. {
  10.     new
  11.         query[256],
  12.         NumeESCAPED[MAX_PLAYER_NAME];
  13.     mysql_real_escape_string(Nume, NumeESCAPED);
  14.     BanLog(NumeESCAPED, "Anticheat", Motiv);
  15.     mysql_format(Database, query, "INSERT INTO `Banuri` (`Nume`, `IP`, `Motiv`, `Durata banului`, `Banat de`, `Data`) VALUES('%s', '%s', '%e', '0', 'Anticheat', CURRENT_TIMESTAMP)", NumeESCAPED, IP, Motiv);
  16.     mysql_function_query(Database, query, false, "", "");
  17.     Kick(playerid);
  18.     return 1;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement