Hallo,
ich finde das Problem leider nicht, aber jedesmal folgender Error.
Code
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '
`GunLic` int(11) NOT NULL,
`DrivLicPoint` int(11) NOT NULL,
`Spawnchan' at line 44
Hier mal der SQL Code der Tabelle
Code
DROP TABLE IF EXISTS `script_accounts`;
CREATE TABLE `script_accounts` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`Name` varchar(25) NOT NULL,
`Passwort` varchar(129) NOT NULL,
`Admin` int(11) NOT NULL,
`Level` int(11) NOT NULL,
`Geschlecht` int(11) NOT NULL,
`Exp` int(11) NOT NULL,
`MaxExp` int(11) NOT NULL,
`Tut` int(11) NOT NULL,
`Leader` int(11) NOT NULL,
`Rank` int(11) NOT NULL,
`Job` int(11) NOT NULL,
`Money` int(11) NOT NULL,
`PayDayCash` int(11) NOT NULL,
`Bank` int(11) NOT NULL,
`PayDay` int(11) NOT NULL,
`Morde` int(11) NOT NULL,
`Gestorben` int(11) NOT NULL,
`Verbrechen` int(11) NOT NULL,
`Spielzeit` int(11) NOT NULL,
`Knast` int(11) NOT NULL,
`Wanteds` int(11) NOT NULL,
`Premium` int(11) NOT NULL,
`Punkte` int(11) NOT NULL,
`Mats` int(11) NOT NULL,
`SafeMats` int(11) NOT NULL,
`Drugs` int(11) NOT NULL,
`SafeDrugs` int(11) NOT NULL,
`DrugSkill` int(11) NOT NULL,
`NewsSkill` int(11) NOT NULL,
`AnglerSkill` int(11) NOT NULL,
`BusSkill` int(11) NOT NULL,
`AnwaltSkill` int(11) NOT NULL,
`PilotSkill` int(11) NOT NULL,
`BusExp` int(11) NOT NULL,
`BusMaxExp` int(11) NOT NULL,
`AnwaltExp` int(11) NOT NULL,
`AnwaltMaxExp` int(11) NOT NULL,
`Skin` int(11) NOT NULL,
`DrivLic` int(11) NOT NULL,
`FlugLic` int(11) NOT NULL,
`BootLic` int(11) NOT NULL,
`AngelLic` int(11) NOT NULL,,
`GunLic` int(11) NOT NULL,
`DrivLicPoint` int(11) NOT NULL,
`Spawnchange` int(11) NOT NULL,
`Hauskey` int(11) NOT NULL,
`Perso` int(11) NOT NULL,
`Bizkey` int(11) NOT NULL,
`Nummer` int(11) NOT NULL,
`KH` int(11) NOT NULL,
`JailTime` int(11) NOT NULL,
`Jailed` int(11) NOT NULL,
`JailType` int(11) NOT NULL,
`Muted` int(11) NOT NULL,
`MuteTime` int(11) NOT NULL,
`Handy` int(11) NOT NULL,
`HandyGeld` int(11) NOT NULL,
`Team` int(11) NOT NULL,
`Erstehilfe` int(11) NOT NULL,
`ContractGeld` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
Alles anzeigen