Hi ich bin nun fertig mit den MySQL umschreiben es fehlt nurnoch MySQL tabelle erstellen....
ich habe am ende von tutorial einen link gesehen der was das anzeigt:
http://pastebin.com/QVHeTat6
DROP TABLE IF EXISTS `accounts`;
CREATE TABLE `accounts` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`Name` VARCHAR(24) NOT NULL,
`Passwort` VARCHAR(128) NOT NULL,
`Level` INT(11) NOT NULL DEFAULT '1',
`Geld` INT(11) NOT NULL DEFAULT '0',
`Kills` INT(11) NOT NULL DEFAULT '0',
`Tode` INT(11) NOT NULL DEFAULT '0',
`Health` FLOAT NOT NULL DEFAULT '100',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=0 DEFAULT CHARSET=latin1;
ich glaube, das ist das, womit ich eine Tabelle erstelle, nur wo in script muss das hin?