Blacker was aber in der DB fehlt ist:
Code:
--
-- Tabellenstruktur für Tabelle `skills`
--
CREATE TABLE IF NOT EXISTS `skills` (
`owner` int(11) default NULL,
`skillid` int(11) default NULL,
`exp` bigint(16) default '0',
`level` int(11) default '0'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Daten für Tabelle `skills`
--
Code:
--
-- Tabellenstruktur für Tabelle `equips`
--
CREATE TABLE IF NOT EXISTS `equips` (
`id` int(11) NOT NULL auto_increment,
`owner` int(11) default NULL,
`equipid` int(11) default NULL,
`slot` int(11) default '0',
`plus` int(11) default '0',
`type` int(11) default NULL,
`durability` int(11) default '0',
`equipped` int(11) default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=68 ;
--
-- Daten für Tabelle `equips`
--
Code:
--
-- Tabellenstruktur für Tabelle `commands`
--
CREATE TABLE IF NOT EXISTS `commands` (
`GM Commands` varchar(11) character set utf8 default NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Daten für Tabelle `commands`
--
Aber kp ob man die Braucht O_O ?
Und hier nochmal paar Daten für NPC´s
Code:
INSERT INTO `spawns_npc` (`spawn_id`, `model`, `name`, `speechtime`, `posx`, `posy`, `posz`, `direction`, `posWorldID`, `sizeMod`) VALUES
(206, 877, 'MaFl_Helper', 10, 6953, 100, 3213, 171, 1, 1),
(205, 878, 'MaFl_HairShop', 10, 6957, 100, 3350, 11, 1, 1),
(204, 211, 'MaFl_Bobochan', 10, 6928, 100, 3228, 20, 1, 1),
(203, 211, 'MaFl_Luda', 10, 6927, 100, 3236, 82, 1, 1),
(202, 211, 'MaFl_Boboko', 10, 6927, 100, 3230, 20, 1, 1),
(201, 211, 'MaFl_Boboku', 10, 6926, 100, 3233, 82, 1, 1),
(207, 880, 'MaFl_PetTamer', 10, 6990, 100, 3256, 273, 1, 1),
(209, 878, 'MaFl_Gergantes', 10, 6960, 100, 3340, 19, 1, 1);
Und hier Commends
Code:
INSERT INTO `commands` (`GM Commands`) VALUES
('/makeitrain'),
('/makeitsnow'),
('/kill'),
('/spawn'),
('/createguil'),
('/createitem'),
('/createitem'),
('/gmitem'),
('/snoop'),
('/monsterset'),
('/undying'),
('/invisibile'),
('/teleport'),
('/Expert Lev'),
('/Expert Job'),
('/Profession'),
('/Profession'),
('/id'),
('/changeface'),
('/localevent'),
('/level'),
('/respawn3'),
('/respawn4'),
('/respawn5'),
('/respawn'),
('/server'),
('/noninvisib'),
('/aroundkill'),
('/createnpc'),
('/creategold'),
('/beginquest'),
('/endquest'),
('/debug'),
('/loadscript'),
('/setguildna');
Gruß :)