Hey,
Ich versuche grade meine MySQL Tabelle vom Script aus zuerstellen
Nun ist mein Problem das sie nicht erstellt wird
Woran kann das liegen
stock TabelleErstellen()
{
mysql_query("CREATE TABLE IF NOT EXISTS `"#SERVERTAG"_accounts` (`id` int(11) NOT NULL AUTO_INCREMENT, `Name` varchar(24),`Passwort` varchar(24),`Level` int(11),`Admin` int(11), `Geld` int(11), `Tode` int(11), `Morde` int(11), `Premium` int(11),PRIMARY KEY (`id`)) ENGINE=MyISAM DEFAULT CHARSET=latin1;");
print("Die Tabellen wurden erstellt.");
}
public OnGameModeInit()
{
// Don't use these lines if it's a filterscript
SetGameModeText("Blank Script");
AddPlayerClass(0, 1958.3783, 1343.1572, 15.3746, 269.1425, 0, 0, 0, 0, 0, 0);
TabelleErstellen();
return 1;
}
Danke im Vorraus