SA-MP Forums Archive
Error in MySQL Register Script - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Error in MySQL Register Script (/showthread.php?tid=162487)



Error in MySQL Register Script - Gforcez - 23.07.2010

Hello,
I get a Error, But i cant find the solution :\
Maybe on of you guys can help me.

The Error:

Код:
: error 075: input line too long (after substitutions)  | 'The Error is in line 194'
The Code:

Код:
new string[256]; //line 194
   	format(string, sizeof(string), "UPDATE Users SET pPassword='%s',pAdminLevel='%d',pDonateRank='%d',pMoney='%d',pLevel='%d',pExp='%d',pSkill='%d',pPoints='%d',pKills='%d',pDeaths='%d',pWarns='%d', WHERE Name='%s'", PlayerInfo[playerid][pPassword], PlayerInfo[playerid][pAdminLevel], PlayerInfo[playerid][pDonateRank], PlayerInfo[playerid][pMoney], PlayerInfo[playerid][pLevel], PlayerInfo[playerid][pExp], PlayerInfo[playerid][pSkill], PlayerInfo[playerid][pPoints], PlayerInfo[playerid][pKills], PlayerInfo[playerid][pDeaths], PlayerInfo[playerid][pWarns], PlayerInfo[playerid][pName]);



Re: Error in MySQL Register Script - Gforcez - 24.07.2010

Nobody Knows ?


Re: Error in MySQL Register Script - dice7 - 24.07.2010

The ide/compiler does not tolerate lines longer then 512 characters. Just do this

pawn Код:
new string[256];
format(string, sizeof(string), "UPDATE Users SET pPassword='%s',pAdminLevel='%d',pDonateRank='%d',pMoney='%d',pLevel='%d',pExp='%d',pSkill='%d',pPoints='%d',pKills='%d',pDeaths='%d',pWarns='%d', WHERE Name='%s'",
PlayerInfo[playerid][pPassword], PlayerInfo[playerid][pAdminLevel], PlayerInfo[playerid][pDonateRank], PlayerInfo[playerid][pMoney], PlayerInfo[playerid][pLevel], PlayerInfo[playerid][pExp], PlayerInfo[playerid][pSkill], PlayerInfo[playerid][pPoints], PlayerInfo[playerid][pKills], PlayerInfo[playerid][pDeaths], PlayerInfo[playerid][pWarns], PlayerInfo[playerid][pName]);



Re: Error in MySQL Register Script - Gforcez - 24.07.2010

Thanks! =D