//edit habe glaube selber den fehler gefunden gehabt
Wenn ich das hier so benutze
stock CreateMySQLTabelle()
{
new query[500] = "CREATE TABLE IF NOT EXISTS `Tabelle_Spieler`(";
strcat(query, " `Name` varchar(24) NOT NULL,");
strcat(query, " `Passwort` varchar(50) NOT NULL,");
strcat(query, " `Alter` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Geschlecht` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Skin` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Level` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `EXP` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `UpgradePunkte` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `VIP` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Admin` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Gemutet` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Gefreezt` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Gebannt` INT(50) NOT NULL DEFAULT '0',");
strcat(query, " `BannGrund` varchar(50) NOT NULL DEFAULT '0',");
strcat(query, " `Banner` varchar(24) NOT NULL DEFAULT '0',");
strcat(query, " `BannDatum` varchar(25) NOT NULL,");
strcat(query, " `Warnings` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Eingeloggt` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `EingeloggtSeit` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Logins` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Tutorial` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Startbonus` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Geld` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Konto` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `KontoGuthaben` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Kredit` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `KreditEnde` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Job` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `JobSkill1` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `JobSkill2` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `JobSkill3` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `JobSkill4` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `JobSkill5` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `JobSkill6` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `JobSkill7` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `JobSkill8` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `JobSkill9` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `JobSkill10` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `AlcPegel` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `DrugPregel` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `GWD` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Ehe` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Ehepartner` varchar(24) NOT NULL DEFAULT '0',");
strcat(query, " `Kopfgeld` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Perso` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `RollerSchein` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `AutoSchein` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `BikeSchein` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `TruckSchein` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `BusSchein` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `BootSchein` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `FlugSchein` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `WaffenSchein1` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `WaffenSchein2` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `LS` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `LV` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `SF` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `BaySide` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `SperreRoller` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `SperreAuto` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `SperreBike` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `SperreTruck` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `SperreBus` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `SperreBoot` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `SperreFlug` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `SperreWaffen1` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `SperreWaffen2` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `SperreLS` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `SperreLV` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `SperreSF` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `SperreBayside` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `FraktionsSperre` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Team` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Fraktion` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Leader` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Member` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Rank` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Gehalt` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `HausSchluessel` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `HausMieter` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `BizSchluessel` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Telefon` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `TelefonNummer` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `TelefonBuch` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `TelefonVertrag` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `TelefonGuthaben` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `TelefonAkku` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `NoteBook` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `NoteBookAkku` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Windows` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Drogen` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Materialien` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Navi` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `AutoRadio` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Masken` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Bomben` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Guertel` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Funkgeraet` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Tazer` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `TazerNachladen` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Ladegeraet` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Uhr` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Zollpass` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Goldbarren` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Peilsender` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `PeilsenderAkku` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Lottoschein` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `ImKrankenhaus` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Krankenhauszeit` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Tode` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Kills` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `GangTode` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `GangKills` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `VerbrecherGetoetet` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `VerbrecherEingesperrt` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `GangJail` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Eingejailt` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Jaildauer` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `WantedLevel` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Verbrechen` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Kaution` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Kautionspreis` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `PosX` FLOAT(11) NOT NULL DEFAULT '0',");
strcat(query, " `PosY` FLOAT(11) NOT NULL DEFAULT '0',");
strcat(query, " `PosZ` FLOAT(11) NOT NULL DEFAULT '0',");
strcat(query, " `PosA` FLOAT(11) NOT NULL DEFAULT '0',");
strcat(query, " `PosI` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `PosVW` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Leben` FLOAT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Ruestung` FLOAT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Waffe1` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Waffe2` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Waffe3` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Munition1` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Munition2` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Munition3` INT(11) NOT NULL DEFAULT '0',");
strcat(query, " `Registrierungsdatum` varchar(30) NOT NULL,");
strcat(query, " `Email` varchar(30) NOT NULL,");
strcat(query, " `JobKuendigungZeit` INT(11) NOT NULL DEFAULT '0',");
strcat(query, "PRIMARY KEY ( `Name` )");
strcat(query, "COLLATE='utf8_general_ci' ENGINE=InnoDB");
mysql_query(query);
return 1;
}
Macht der keine probleme beim compilen...
Aber er erstellt mir die tabelle nicht
ongamemode ist es drin
stock CreateMySQLTabelle();
connecten tut er auch
er erstellt einfach nur nicht die tabelle?
mach ich da was falsch?
bitte um schnelle hilfe