Hallo
Ich habe etwas im MySQL Bereich verändert und jetzt spuckt es einen Error in einer Zeile aus, in der ich nichts gemacht habe, hat da jemand eine Ahnung ?
public OnGameModeInit() // 719
{
SetTimer("ConnectionMySQL",2000,1);
mysql_init();
if(mysql_connect(DB_HOST, DB_USER, DB_PASSWORD, DB_NAME)==0)
{
SendRconCommand("exit");
}
else
{
//730
mysql_query("CREATE TABLE IF NOT EXISTS `Vehicles` \
(`CarID` INT NOT NULL,\
`CarFraktion` INT NOT NULL,\
`CarJob` INT NOT NULL,\
`CarNoob` INT NOT NULL,\
`Model` INT NOT NULL,\
`Locked` INT NOT NULL,\
`CarVerwahrt` INT NOT NULL,\
`CarTunebar` INT NOT NULL,\
`CarX` FLOAT NOT NULL,\
`CarY` FLOAT NOT NULL,\
`CarZ` FLOAT NOT NULL,\
`CarA` FLOAT NOT NULL,\
`AdacX` FLOAT NOT NULL,\
`AdacY` FLOAT NOT NULL,\
`AdacZ` FLOAT NOT NULL,\
`AdacA` FLOAT NOT NULL,\
`Color1` INT NOT NULL,\
`Color2` INT NOT NULL,\
`Price` INT NOT NULL,\
`Sell` INT NOT NULL,`Owner` TEXT NOT NULL);");
} //752
return 1; //753
}
C:\Users\X\Desktop\dudalus236.pwn(748) : error 075: input line too long (after substitutions)
C:\Users\X\Desktop\dudalus236.pwn(749) : error 027: invalid character constant
C:\Users\X\Desktop\dudalus236.pwn(749) : error 017: undefined symbol "CREATE"
C:\Users\X\Desktop\dudalus236.pwn(749) : error 017: undefined symbol "TABLE"
C:\Users\X\Desktop\dudalus236.pwn(749) : fatal error 107: too many error messages on one line
Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
5 Errors.
MfG dUDA