C:\Users\Sanchez\Desktop\Justify\script\gamemodes\ucp.pwn(210) : error 075: input line too long (after substitutions)
C:\Users\Sanchez\Desktop\Justify\script\gamemodes\ucp.pwn(211) : error 037: invalid string (possibly non-terminated string)
C:\Users\Sanchez\Desktop\Justify\script\gamemodes\ucp.pwn(211) : error 017: undefined symbol "INSERT"
C:\Users\Sanchez\Desktop\Justify\script\gamemodes\ucp.pwn(211) : error 017: undefined symbol "INTO"
Newreg[playerid] = true;
mysql_format(mysql, query, sizeof(query), "INSERT INTO `players` (`ID`, `User`, `Pass`, `IP`, `Admin`, `SkinID`, `AccountLocked`, `AccountBanned`, `BanningAdmin`, `BannedReason`, `MoneyHand`, `MoneyBank`,`Health`, `Armour`, `LastActivity`, `WeaponSlot1`, `WepSlotAmmo1`, `WeaponSlot2`, `WepSlotAmmo2`, `WeaponSlot3`, `WepSlotAmmo3`, `WeaponSlot4`, `WepSlotAmmo4`, `WeaponSlot5`, `WepSlotAmmo5`) VALUES ('', '%e', '%s', '%s', 0, 299, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 250, 5000, 0, 0, 0, 100.0, 0.0, 0, 0)", GetUserName(playerid), Player[playerid][Pass], IP[playerid]);
mysql_format(connectionHandle, query, sizeof query, "INSERT INTO `players` (bla, bla, bla,
bla, bla) VALUES ()", bla, bla,
Bla, bla);
Break your mysql format in three sentence
Like; PHP код:
|
Break your mysql format in three sentence
Like; PHP код:
|
format(query, sizeof(query), "INSERT INTO `players` (bla, bla, bla,
mysql_tquery(connectionhandle, query);
change to
pawn Код:
|
C:\Users\Sanchez\Desktop\Justify\script\gamemodes\ucp.pwn(210) : warning 215: expression has no effect
C:\Users\Sanchez\Desktop\Justify\script\gamemodes\ucp.pwn(210) : error 001: expected token: ";", but found "*"
C:\Users\Sanchez\Desktop\Justify\script\gamemodes\ucp.pwn(210) : error 029: invalid expression, assumed zero
C:\Users\Sanchez\Desktop\Justify\script\gamemodes\ucp.pwn(210) : error 029: invalid expression, assumed zero
C:\Users\Sanchez\Desktop\Justify\script\gamemodes\ucp.pwn(210) : fatal error 107: too many error messages on one line
Newreg[playerid] = true;