Ich habe das Phoenix Open Source Emulator (NoOne) genommen,
aber bei mir kommen Fehlermeldungen.
Spoiler anzeigen
Wenn mir jemand helfen könnte, wäre sehr Nett.
MFG iDexos.
Ich habe das Phoenix Open Source Emulator (NoOne) genommen,
aber bei mir kommen Fehlermeldungen.
Wenn mir jemand helfen könnte, wäre sehr Nett.
MFG iDexos.
Du hast eine falsche Datenbank ....
Wenn du einen brauchst PN me
We see ourselves
Nix mit falsche Datenbank (sofern du eine Datenbank für die Version 3.11 benutzt.)
Update deine Datenbank mit folgendem Query:
ALTER TABLE `permissions_users`
ADD COLUMN `cmd_roll` enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_rave` enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_control` enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_makesay` enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_dance` enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_sitdown` enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_exe` enum('0','1') NOT NULL DEFAULT '0';
ALTER TABLE `permissions_ranks`
ADD COLUMN `cmd_roll` enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_rave` enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_control` enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_makesay` enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_dance` enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_sitdown` enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_exe` enum('0','1') NOT NULL DEFAULT '0';
INSERT INTO `texts` VALUES ('cmd_dance_desc', ':dance <username> - Make the selected user dance');
INSERT INTO `texts` VALUES ('cmd_exe_desc', ':exe');
INSERT INTO `texts` VALUES ('cmd_makesay_desc', ':makesay <username> <message> - Make the selected user say a message');
INSERT INTO `texts` VALUES ('cmd_rave_desc', ':rave - Make everyone dance');
INSERT INTO `texts` VALUES ('cmd_roll_desc', ':roll <username> <number> - Make a user roll the selected number');
INSERT INTO `texts` VALUES ('cmd_sitdown_desc', ':sitdown - Make everyone sitdown');
INSERT INTO `texts` VALUES ('cmd_control_desc', ':control <username> - Control the selected user');
INSERT INTO `texts` VALUES ('cmd_dance_name', 'dance');
INSERT INTO `texts` VALUES ('cmd_exe_name', 'exe');
INSERT INTO `texts` VALUES ('cmd_makesay_name', 'makesay');
INSERT INTO `texts` VALUES ('cmd_rave_name', 'rave');
INSERT INTO `texts` VALUES ('cmd_roll_name', 'roll');
INSERT INTO `texts` VALUES ('cmd_sitdown_name', 'sitdown');
INSERT INTO `texts` VALUES ('cmd_control_name', 'control');
Alles anzeigen
Falls du die Phoenix 3.11 Datenbank brauchst der Download wird angehängt
Ich habe diese MySQL Abfragen vom Thread auch eingefügt.
ALTER TABLE `permissions_users`ADD COLUMN `cmd_roll` enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_rave` enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_control` enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_makesay` enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_dance` enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_sitdown` enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_exe` enum('0','1') NOT NULL DEFAULT '0';
ALTER TABLE `permissions_ranks`
ADD COLUMN `cmd_roll` enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_rave` enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_control` enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_makesay` enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_dance` enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_sitdown` enum('0','1') NOT NULL DEFAULT '0',
ADD COLUMN `cmd_exe` enum('0','1') NOT NULL DEFAULT '0';
INSERT INTO `texts` VALUES ('cmd_dance_desc', ':dance <username> - Make the selected user dance');
INSERT INTO `texts` VALUES ('cmd_exe_desc', ':exe');
INSERT INTO `texts` VALUES ('cmd_makesay_desc', ':makesay <username> <message> - Make the selected user say a message');
INSERT INTO `texts` VALUES ('cmd_rave_desc', ':rave - Make everyone dance');
INSERT INTO `texts` VALUES ('cmd_roll_desc', ':roll <username> <number> - Make a user roll the selected number');
INSERT INTO `texts` VALUES ('cmd_sitdown_desc', ':sitdown - Make everyone sitdown');
INSERT INTO `texts` VALUES ('cmd_control_desc', ':control <username> - Control the selected user');
INSERT INTO `texts` VALUES ('cmd_dance_name', 'dance');
INSERT INTO `texts` VALUES ('cmd_exe_name', 'exe');
INSERT INTO `texts` VALUES ('cmd_makesay_name', 'makesay');
INSERT INTO `texts` VALUES ('cmd_rave_name', 'rave');
INSERT INTO `texts` VALUES ('cmd_roll_name', 'roll');
INSERT INTO `texts` VALUES ('cmd_sitdown_name', 'sitdown'); INSERT INTO `texts` VALUES ('cmd_control_name', 'control');
Alles anzeigen
Ich habe die MySQL Abfragen von dir eingefügt und da komm ein Fehler.
Thread Link : Phoenix Emulator 3.11.0 OPEN SOURCE!
Ich werde es mit der Datenbank probieren, wenn es klappt dann gebe ich dir ein Thanks.
Steht der Fehler nicht schon da?
Lösch die Tabelle "Server_settings" und füg dies ein: /*
Navicat MySQL Data Transfer
Source Server : hi
Source Server Version : 50611
Source Host : localhost:3306
Source Database : chobba2
Target Server Type : MYSQL
Target Server Version : 50611
File Encoding : 65001
Date: 2013-07-03 15:57:10
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `server_settings`
-- ----------------------------
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;
-- ----------------------------
-- Records of server_settings
-- ----------------------------
INSERT INTO `server_settings` VALUES ('', '15', '50', '50', '1', '1', '0', '50', 'disabled', '1', '1', '1', '1', '0', '0', '0', '0', '1', '15', '1', '100000', '1', '1', '300', '3600', '0');
FileX , kannst Thread closen.
#closed
Sie haben noch kein Benutzerkonto auf unserer Seite? Registrieren Sie sich kostenlos und nehmen Sie an unserer Community teil!