23.09.2013, 07:02
So heres my code for registering a player, i have more things to save, so how to make these into 2-3 lines with using other strings?
pawn Код:
format(string, sizeof(string), "INSERT INTO `players` ( `Name` , `Password`, `Money` , `Bank` , `Level` ,`RPoints` ,`Warns` ,`Job` ,`Banned` ,`Kills` , `Deaths`, `Faction`, `LastIP`, `rankname` `groupID`) VALUES ('%s', '%s', '%d', '%d', '%d', '%d', '%d', '%s', '%d', '%d', '%d','%s','%s', '%s' '%d')",
PlayerName(playerid), PlayerTemp[playerid][password], PlayerTemp[playerid][sm], PlayerInfo[playerid][bank], PlayerInfo[playerid][playerlvl], PlayerInfo[playerid][rpoints], PlayerInfo[playerid][warns], PlayerInfo[playerid][job], PlayerInfo[playerid][banned], PlayerInfo[playerid][kills], PlayerInfo[playerid][deaths] ,PlayerInfo[playerid][PTeamName], PlayerTemp[playerid][IP], PlayerInfo[playerid][rankname], PlayerTemp[playerid][groupID]);
mysql_query(string);