• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Implementing an NPC into your map.

Oif Oif Oif

New Member
Joined
Aug 5, 2009
Messages
548
Reaction score
1
Location
Lexus HQ
Okay well i have made all my NPC's however, i have absolutley NO idea how to put it in the map. i went to creatures>NPC'S drop down menu, then all the NPC's i have made arn't there.

Do i have to drag all my NPC files over somewhere? if so.. where?

please help out, I will bump up your rep++ -.^

PS: Search function shows inacurate results!
 
Go into C/Program Files/RME (Or where ever your map editor folder is), go into /data/8.54 and open creatures.xml.

You should see:
Code:
<creature name="Achad" type="monster" looktype="146" lookhead="93" lookbody="93" looklegs="57" lookfeet="97"/>
  <creature name="Acolyte Of the Cult" type="monster" looktype="194" lookhead="114" lookbody="121" looklegs="121" lookfeet="57"/>
  <creature name="Adept of the Cult" type="monster" looktype="194" lookhead="114" lookbody="94" looklegs="94" lookfeet="57"/>
  <creature name="Amazon" type="monster" looktype="137" lookhead="113" lookbody="120" looklegs="114" lookfeet="132"/>
  <creature name="Ancient Scarab" type="monster" looktype="79" lookhead="20" lookbody="30" looklegs="40" lookfeet="50"/>
  <creature name="Apocalypse" type="monster" looktype="12" lookhead="38" lookbody="114" lookfeet="94"/>

Copy any human code such as:
Code:
  <creature name="Amazon" type="monster" looktype="137" lookhead="113" lookbody="120" looklegs="114" lookfeet="132"/>

Change:
Code:
type="monster"
To:
Code:
type="npc"

Modify outfit accordingly.

Thats what your asking for, to put npcs in your map editor?

Hope that helped,
Leftwing
 
Back
Top