Hey Towner,
Habe ein problem beim Client und zwar komme ich rein und es geht ja auch ''fast'' alles
aber sobald ich den Emu anschaue kommt immer das
Client geht aber trzd, wie bekomme ich es weg?
Hey Towner,
Habe ein problem beim Client und zwar komme ich rein und es geht ja auch ''fast'' alles
aber sobald ich den Emu anschaue kommt immer das
Client geht aber trzd, wie bekomme ich es weg?
Poste mal die Logs
Ich schätze mal da gibt es ein Problem mit dem Emulator und der Datenbank - was die Tabelle Server Status betrifft - eventuell.
Falls es das das Problem ist, einfach die entsprechende Tabelle server_status entfernen und folgendes einfügen (vorher eventuell ein Backup von der Tabelle machen für alle Fälle):
CREATE TABLE IF NOT EXISTS `server_status` (
`status` enum('0','1','2') NOT NULL DEFAULT '0',
`users_online` int(11) NOT NULL DEFAULT '0',
`rooms_loaded` int(11) NOT NULL DEFAULT '0',
`server_ver` text NOT NULL,
`stamp` double NOT NULL,
`userpeak` int(11) NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
Quelle: Quellcode entnommen aus einer Phoenix Datenbank 3.11.0
Ich schätze mal da gibt es ein Problem mit dem Emulator und der Datenbank - was die Tabelle Server Status betrifft - eventuell.
Falls es das das Problem ist, einfach die entsprechende Tabelle server_status entfernen und folgendes einfügen (vorher eventuell ein Backup von der Tabelle machen für alle Fälle):
CodeCREATE TABLE IF NOT EXISTS `server_status` ( `status` enum('0','1','2') NOT NULL DEFAULT '0', `users_online` int(11) NOT NULL DEFAULT '0', `rooms_loaded` int(11) NOT NULL DEFAULT '0', `server_ver` text NOT NULL, `stamp` double NOT NULL, `userpeak` int(11) NOT NULL DEFAULT '0' ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
Quelle: Quellcode entnommen aus einer Phoenix Datenbank 3.11.0
Wenn ich einen anderen Emu nehme steht da:
es geht nur mit den Fehlern siehe oben mit den Emu aber will die Fehler weg haben,
es fehlen sogar ein paar commands wie zb :buy :control x und etc
Jetzt gehts mit dem Screen weiter so das nur da steht pixels_max
Dann geht das immer weiter so mit
ALTER TABLE `HIER KOMMEN DANN IMMER MEHR WIE : ip_lastforbans` ADD `pixels_max` int(15) NOT NULL DEFAULT '0';
und habe keine lust jedes einzellne einzufügen
Dann hier:
DROP TABLE IF EXISTS `server_settings`;
CREATE TABLE `server_settings` (
`motd` text NOT NULL,
`timer` int(11) NOT NULL DEFAULT '15',
`pixels` int(11) NOT NULL DEFAULT '15',
`credits` int(11) NOT NULL DEFAULT '75',
`enable_chatlogs` enum('0','1') NOT NULL DEFAULT '1',
`enable_roomlogs` enum('0','1') NOT NULL DEFAULT '1',
`vipclothesforhcusers` enum('1','0') NOT NULL DEFAULT '1',
`MaxRoomsPerUser` int(4) NOT NULL DEFAULT '50',
`enable_externalchatlinks` enum('disabled','blacklist','whitelist') NOT NULL DEFAULT 'disabled',
`enable_securesessions` enum('1','0') NOT NULL DEFAULT '1',
`enable_cmdlogs` enum('0','1') NOT NULL DEFAULT '1',
`allow_friendfurnidrops` enum('0','1') NOT NULL DEFAULT '1',
`enable_cmd_redeemcredits` enum('0','1') NOT NULL DEFAULT '1',
`points` int(11) NOT NULL DEFAULT '0',
`pixels_max` int(15) NOT NULL DEFAULT '0',
`credits_max` int(15) NOT NULL DEFAULT '0',
`points_max` int(15) NOT NULL DEFAULT '0',
`enable_antiddos` enum('0','1') NOT NULL DEFAULT '1',
`MaxPetsPerRoom` int(2) NOT NULL DEFAULT '15',
`MarketPlaceTax` int(2) NOT NULL DEFAULT '1',
`MaxMarketPlacePrice` int(9) NOT NULL DEFAULT '10000',
`unload_crashedrooms` enum('0','1') NOT NULL DEFAULT '1',
`ShowUsersAndRoomsInAbout` enum('0','1') NOT NULL DEFAULT '1',
`idlesleep` int(6) NOT NULL DEFAULT '300',
`idlekick` int(6) NOT NULL DEFAULT '1200',
`ip_lastforbans` enum('0','1') NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
Alles anzeigen
Dann hier:
SQL Alles anzeigenDROP TABLE IF EXISTS `server_settings`; CREATE TABLE `server_settings` ( `motd` text NOT NULL, `timer` int(11) NOT NULL DEFAULT '15', `pixels` int(11) NOT NULL DEFAULT '15', `credits` int(11) NOT NULL DEFAULT '75', `enable_chatlogs` enum('0','1') NOT NULL DEFAULT '1', `enable_roomlogs` enum('0','1') NOT NULL DEFAULT '1', `vipclothesforhcusers` enum('1','0') NOT NULL DEFAULT '1', `MaxRoomsPerUser` int(4) NOT NULL DEFAULT '50', `enable_externalchatlinks` enum('disabled','blacklist','whitelist') NOT NULL DEFAULT 'disabled', `enable_securesessions` enum('1','0') NOT NULL DEFAULT '1', `enable_cmdlogs` enum('0','1') NOT NULL DEFAULT '1', `allow_friendfurnidrops` enum('0','1') NOT NULL DEFAULT '1', `enable_cmd_redeemcredits` enum('0','1') NOT NULL DEFAULT '1', `points` int(11) NOT NULL DEFAULT '0', `pixels_max` int(15) NOT NULL DEFAULT '0', `credits_max` int(15) NOT NULL DEFAULT '0', `points_max` int(15) NOT NULL DEFAULT '0', `enable_antiddos` enum('0','1') NOT NULL DEFAULT '1', `MaxPetsPerRoom` int(2) NOT NULL DEFAULT '15', `MarketPlaceTax` int(2) NOT NULL DEFAULT '1', `MaxMarketPlacePrice` int(9) NOT NULL DEFAULT '10000', `unload_crashedrooms` enum('0','1') NOT NULL DEFAULT '1', `ShowUsersAndRoomsInAbout` enum('0','1') NOT NULL DEFAULT '1', `idlesleep` int(6) NOT NULL DEFAULT '300', `idlekick` int(6) NOT NULL DEFAULT '1200', `ip_lastforbans` enum('0','1') NOT NULL DEFAULT '0' ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
Geht auch nicht ach ist auch jetzt scheiss egal
Auf Wunsch ist hier dicht.
#closed
Sie haben noch kein Benutzerkonto auf unserer Seite? Registrieren Sie sich kostenlos und nehmen Sie an unserer Community teil!