07.02.2016, 14:03
I get these errors even i tried to shorten the string using "\"
Errors
Code:
Errors
Код:
error 075: input line too long (after substitutions) error 037: invalid string (possibly non-terminated string) error 017: undefined symbol "INSERT" error 017: undefined symbol "INTO" fatal error 107: too many error messages on one line
Код:
new query[512]; PlayerInfo[playerid][Accountid] = cache_insert_id(mysql); mysql_format(mysql, query, sizeof(query), "INSERT INTO `players` \ (`Account_ID`, \ `Name`, \ `Password`, \ `IP`, \ `Admin`, \ `VIP`, \ `FreeRoam_Score`, \ `Deathmatch_Score`, \ `Duel_Score`, \ `Deaths`, \ `Skin`, \ `Pms`, \ `Gos`, \ `God`, \ `Cms`, \ `MegaJump`, \ `Color`, \ `Fighting_Style`, \ `BanCount`, \ `JailCount`, \ `KickCount`, \ `MuteCount`, \ `ExplodeCount`, \ `SlapCount`, \ `WeaponRCount`, \ `Banned`, \ `Jailed`, \ `Muted`, \ `Frozen`, \ `Time`, \ `Weather`, \ `Last_Login`) \ VALUES \ (`%d`, \ '%e', \ '%e', \ '%e', \ 0, \ 0)", PlayerInfo[playerid][Accountid], PlayerInfo[playerid][pAdmin], GetName(playerid), inputtext, ip);