Guten Abend,
Ich wollte mal fragen wieso die Tabellen sich nicht erstellen ?
Hier mal der Code:
stock ErstelleTabelle(){ new query[2500]; strcat(query,"CREATE TABLE IF NOT EXISTS `accounts` (`id` int(11) NOT NULL AUTO_INCREMENT,`Name` varchar(24) NOT NULL,`Passwort` varchar(24) NOT NULL,`Level` int(11) NOT NULL,`Geld` int(11) NOT NULL,`Admin` int(11) NOT NULL,`Ban` int(11) NOT NULL,`Fraktion` int(11) NOT NULL,`Leader` int(11) NOT NULL,`Member` int(24) NOT NULL,`Rang` int(11) NOT NULL,`Personalausweis` int(11) NOT NULL,PRIMARY KEY (`id`))"); mysql_function_query(MYSQLVerbindung,query,false,"",""); strdel(query,0,sizeof(query)); printf("Datenbanken erfolgreich erstellt"); return 1;}