25.11.2015, 11:11
Greetings samp community.
Im trying to save wanted level to my database, so players regain it when they reconnect.
However my question is.
is this a correct stock?
Im trying to save wanted level to my database, so players regain it when they reconnect.
However my question is.
is this a correct stock?
Код:
stock SavePlayerData(playerid) { new query[100]; mysql_format(mysql, query, sizeof(query), "UPDATE `players` SET `IP`='%s', `Admin`=%d, `VIP`=%d, `Kills`=%d, `Deaths`=%d, `Score`=%d, `Wanted`=%d, `Money`=%d WHERE `ID`=%d",\ IP[playerid], pData[playerid][Admin], pData[playerid][VIP], pData[playerid][Kills], pData[playerid][Deaths], GetPlayerScore(playerid), GetPlayerWantedLevel(playerid), pData[playerid][Money], pData[playerid][ID]); mysql_tquery(mysql, query, "", ""); }