Mein Problem ist jetzt das ich unterschiedliche Flags ausprobiert habe, doch nix funktioniert.
selbst mit dem Programm Quice kann ich da nix enstellen.
wäre super wenn ihr helfen könntet.
Gruß der Hed
Code:
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for creature_template
-- ----------------------------
CREATE TABLE `creature_template` (
`entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
`difficulty_entry_1` mediumint(8) unsigned NOT NULL DEFAULT '0',
`difficulty_entry_2` mediumint(8) unsigned NOT NULL DEFAULT '0',
`difficulty_entry_3` mediumint(8) unsigned NOT NULL DEFAULT '0',
`KillCredit1` int(11) unsigned NOT NULL DEFAULT '0',
`KillCredit2` int(11) unsigned NOT NULL DEFAULT '0',
`modelid1` mediumint(8) unsigned NOT NULL DEFAULT '0',
`modelid2` mediumint(8) unsigned NOT NULL DEFAULT '0',
`modelid3` mediumint(8) unsigned NOT NULL DEFAULT '0',
`modelid4` mediumint(8) unsigned NOT NULL DEFAULT '0',
`name` char(100) NOT NULL DEFAULT '0',
`subname` char(100) DEFAULT NULL,
`IconName` char(100) DEFAULT NULL,
`gossip_menu_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
`minlevel` tinyint(3) unsigned NOT NULL DEFAULT '1',
`maxlevel` tinyint(3) unsigned NOT NULL DEFAULT '1',
`minhealth` int(10) unsigned NOT NULL DEFAULT '0',
`maxhealth` int(10) unsigned NOT NULL DEFAULT '0',
`minmana` int(10) unsigned NOT NULL DEFAULT '0',
`maxmana` int(10) unsigned NOT NULL DEFAULT '0',
`armor` mediumint(8) unsigned NOT NULL DEFAULT '0',
`faction_A` smallint(5) unsigned NOT NULL DEFAULT '0',
`faction_H` smallint(5) unsigned NOT NULL DEFAULT '0',
`npcflag` int(10) unsigned NOT NULL DEFAULT '0',
`speed` float DEFAULT '1',
`scale` float NOT NULL DEFAULT '1',
`rank` tinyint(3) unsigned NOT NULL DEFAULT '0',
`mindmg` float NOT NULL DEFAULT '0',
`maxdmg` float NOT NULL DEFAULT '0',
`dmgschool` tinyint(4) NOT NULL DEFAULT '0',
`attackpower` int(10) unsigned NOT NULL DEFAULT '0',
`dmg_multiplier` float NOT NULL DEFAULT '1',
`baseattacktime` int(10) unsigned NOT NULL DEFAULT '0',
`rangeattacktime` int(10) unsigned NOT NULL DEFAULT '0',
`unit_class` tinyint(3) unsigned NOT NULL DEFAULT '0',
`unit_flags` int(10) unsigned NOT NULL DEFAULT '0',
`dynamicflags` int(10) unsigned NOT NULL DEFAULT '0',
`family` tinyint(4) NOT NULL DEFAULT '0',
`trainer_type` tinyint(4) NOT NULL DEFAULT '0',
`trainer_spell` mediumint(8) unsigned NOT NULL DEFAULT '0',
`trainer_class` tinyint(3) unsigned NOT NULL DEFAULT '0',
`trainer_race` tinyint(3) unsigned NOT NULL DEFAULT '0',
`minrangedmg` float NOT NULL DEFAULT '0',
`maxrangedmg` float NOT NULL DEFAULT '0',
`rangedattackpower` smallint(5) unsigned NOT NULL DEFAULT '0',
`type` tinyint(3) unsigned NOT NULL DEFAULT '0',
`type_flags` int(10) unsigned NOT NULL DEFAULT '0',
`lootid` mediumint(8) unsigned NOT NULL DEFAULT '0',
`pickpocketloot` mediumint(8) unsigned NOT NULL DEFAULT '0',
`skinloot` mediumint(8) unsigned NOT NULL DEFAULT '0',
`resistance1` smallint(5) NOT NULL DEFAULT '0',
`resistance2` smallint(5) NOT NULL DEFAULT '0',
`resistance3` smallint(5) NOT NULL DEFAULT '0',
`resistance4` smallint(5) NOT NULL DEFAULT '0',
`resistance5` smallint(5) NOT NULL DEFAULT '0',
`resistance6` smallint(5) NOT NULL DEFAULT '0',
`spell1` mediumint(8) unsigned NOT NULL DEFAULT '0',
`spell2` mediumint(8) unsigned NOT NULL DEFAULT '0',
`spell3` mediumint(8) unsigned NOT NULL DEFAULT '0',
`spell4` mediumint(8) unsigned NOT NULL DEFAULT '0',
`spell5` mediumint(8) NOT NULL,
`spell6` mediumint(8) NOT NULL,
`spell7` mediumint(8) NOT NULL,
`spell8` mediumint(8) NOT NULL,
`PetSpellDataId` mediumint(8) unsigned NOT NULL DEFAULT '0',
`VehicleId` mediumint(8) NOT NULL,
`mingold` mediumint(8) unsigned NOT NULL DEFAULT '0',
`maxgold` mediumint(8) unsigned NOT NULL DEFAULT '0',
`AIName` char(64) NOT NULL DEFAULT '',
`MovementType` tinyint(3) unsigned NOT NULL DEFAULT '0',
`InhabitType` tinyint(3) unsigned NOT NULL DEFAULT '3',
`unk16` float NOT NULL DEFAULT '1',
`unk17` float NOT NULL DEFAULT '1',
`RacialLeader` tinyint(3) unsigned NOT NULL DEFAULT '0',
`questItem1` int(11) unsigned NOT NULL DEFAULT '0',
`questItem2` int(11) unsigned NOT NULL DEFAULT '0',
`questItem3` int(11) unsigned NOT NULL DEFAULT '0',
`questItem4` int(11) unsigned NOT NULL DEFAULT '0',
`questItem5` int(11) unsigned NOT NULL DEFAULT '0',
`questItem6` int(11) unsigned NOT NULL DEFAULT '0',
`movementId` int(11) unsigned NOT NULL DEFAULT '0',
`RegenHealth` tinyint(3) unsigned NOT NULL DEFAULT '1',
`equipment_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
`mechanic_immune_mask` int(10) unsigned NOT NULL DEFAULT '0',
`flags_extra` int(10) unsigned NOT NULL DEFAULT '0',
`ScriptName` char(64) NOT NULL DEFAULT '',
PRIMARY KEY (`entry`),
KEY `pickpocketloot` (`pickpocketloot`),
KEY `skinloot` (`skinloot`),
KEY `lootid` (`lootid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Creature System';
-- ----------------------------
-- Records
-- ----------------------------
INSERT INTO `creature_template` VALUES ('99999', '0', '0', '0', '0', '0', '28120', '0', '0', '0', 'PvP Wache', '<KEIN PVP>', '', '0', '99', '100', '1000000', '1000000', '111111', '2222222', '333333', '35', '7', '33554432', '99', '1', '1', '4.45455e+07', '4.55556e+10', '0', '0', '1', '100', '0', '0', '4096', '0', '0', '0', '0', '0', '0', '0', '0', '0', '10', '0', '0', '0', '0', '5555', '5555', '5555', '5555', '5555', '5555', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '16777215', '16777215', '', '0', '3', '1', '1', '0', '0', '0', '0', '0', '0', '0', '0', '1', '0', '0', '0', '');






