26.12.2016, 09:53
Replace this:
with this:
Note: It can be found OnDialogResponse.
And also, never do this. This is a public forum. Don't PM me for help, just post it here.
PHP код:
mysql_format(mysql, query, sizeof(query), "INSERT INTO `players` (`Username`, `Password`, `IP`, `Admin`, `VIP`,`Kills`,`Cookies`,`Cakes`,`Icecream`,`Deaths`,`Score`, `Money`) VALUES ('%e', '%s', '%s', 0, 0, 0, 0, 0, 50000)", pName(playerid), pData[playerid][Password], IP[playerid]);
PHP код:
mysql_format(mysql, query, sizeof(query), "INSERT INTO `players` (`Username`, `Password`, `IP`, `Admin`, `VIP`,`Kills`,`Cookies`,`Cakes`,`Icecream`,`Deaths`,`Score`, `Money`) VALUES ('%e', '%s', '%s', '0', '0', '0', '0', '0','0','0','0', '50000')", pName(playerid), pData[playerid][Password], IP[playerid]);
And also, never do this. This is a public forum. Don't PM me for help, just post it here.

