LegendaryBeast Posted June 26, 2012 Posted June 26, 2012 Hello Guys how i can make npc's like players.? i have that question for over 3 months and anyone can help me
EliteZ1 Posted June 26, 2012 Posted June 26, 2012 NPC TO PC google ! Who i find Features: - It supports null name and title - No item id Weapons - Armor set parser to add a armor set to the morphed npc Smiley (like you see in the picture Apella set id 49) With all that said heres the code: http://pastebin.com/YAat39nG And sql: SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for `max_poly` -- ---------------------------- DROP TABLE IF EXISTS `max_poly`; CREATE TABLE `max_poly` ( `name` varchar(22) default NULL, `title` varchar(22) default NULL, `sex` decimal(22,0) NOT NULL default '0', `hair` decimal(22,0) NOT NULL default '0', `hairColor` decimal(22,0) NOT NULL default '0', `face` decimal(22,0) NOT NULL default '0', `classId` decimal(22,0) NOT NULL default '0', `npcId` decimal(22,0) NOT NULL default '0', `weaponIdRH` decimal(22,0) NOT NULL default '0', `weaponIdLH` decimal(22,0) NOT NULL default '0', `weaponIdEnc` decimal(22,0) NOT NULL default '0', `armorId` decimal(22,0) NOT NULL default '0', `head` decimal(22,0) NOT NULL default '0', `hats` decimal(22,0) NOT NULL default '0', `faces` decimal(22,0) NOT NULL default '0', `chest` decimal(22,0) NOT NULL default '0', `legs` decimal(22,0) NOT NULL default '0', `gloves` decimal(22,0) NOT NULL default '0', `feet` decimal(22,0) NOT NULL default '0', `abnormalEffect` decimal(22,0) NOT NULL default '0', `pvpFlag` decimal(22,0) NOT NULL default '0', `karma` decimal(22,0) NOT NULL default '0', `recom` decimal(22,0) NOT NULL default '0', `clan` decimal(22,0) NOT NULL default '0', `isHero` decimal(22,0) NOT NULL default '0', `pledge` decimal(22,0) NOT NULL default '0', `nameColor` decimal(22,0) NOT NULL default '0', `titleColor` decimal(22,0) NOT NULL default '0', PRIMARY KEY (`classId`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- ---------------------------- -- Records of max_poly -- ---------------------------- INSERT INTO `max_poly` VALUES ('Alex', 'Captain', '1', '0', '0', '0', '31', '30291', '0', '0', '0', '49', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1', '0', '0', '0') Have fun. ^_~
DONALD TRUMP 2016 Posted August 1, 2012 Posted August 1, 2012 You can 3D them too (looks a bit more legit/NPC like xD)
lord_rex Posted August 14, 2012 Posted August 14, 2012 Try FakePC engine it's exists on L2JServer forum in user contributions
LegendaryBeast Posted August 14, 2012 Author Posted August 14, 2012 Try FakePC engine it's exists on L2JServer forum in user contributions found how i can do it thnx. Lock Plz
Recommended Posts