Advertisement
RogerGomesCosta

Untitled

Jul 18th, 2014
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.49 KB | None | 0 0
  1.     // Deletar todas os slots de armas
  2.     format(szString, sizeof szString, "DELETE FROM Weapons WHERE ID = '%d'", PlayerInfo[playerid][pID]);
  3.     db_query(DataBase, szString);
  4.  
  5.     for(new i = 0; i < 13; i++)
  6.     {
  7.         GetPlayerWeaponData(playerid, i, weapon[i], ammo[i]);
  8.         if(weapon[i] != -1)
  9.         {
  10.             format(szString, 150, "INSERT INTO Weapons (ID,Slot,Weapon,Ammo) VALUES(%d,%d,%d,%d)", PlayerInfo[playerid][pID], i, weapon[i], ammo[i]);
  11.             db_query(DataBase, szString);
  12.         }
  13.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement