• 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!

Anyway to convert 8.0 npc to 8.4

ViLze

New Member
Joined
Jan 7, 2009
Messages
11
Reaction score
0
I want to have 8.0 evolution npcs in my 8.4 server but cant figure out how to get 'em to work in 8.4
 
eee
Just do it yourself ?
It's very simple :)
For example amulets (xml):
Code:
<?xml version="1.0"?>

<npc name="Mapet" script="data/npc/scripts/default.lua" access="3" lookdir="2" walkinterval="2000">
	<mana now="800" max="800"/>
	<health now="200" max="200"/>
<look type="139" head="132" body="79" legs="97" feet="132"/>
	<parameters>
		<parameter key="module_shop" value="1" />
		<parameter key="message_greet" value="Hello |PLAYERNAME|. I sell rings and amulets. Just 'trade' !" />
		<parameter key="shop_buyable" value="life ring,2168,300;rime ring,2169,300;stealth ring,2165,200;energy ring,2167,100;might ring,2164,200;sword ring,2207,100;club ring,2209,100;axe ring,2208,100;power ring,2169,300;garlic necklace,2199,300;dragon necklace,2201,300;stone skin amulet,2197,100;protection amulet,2200,1000;elven amulet,2198,500;platinum amulet,2171,2000;scart,2661,100;amulet of loss,2173,10000" />
	</parameters>
</npc>
and LUA you already have :)
 
Back
Top