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

Need a Npc

kingi96

New Member
Joined
May 24, 2010
Messages
419
Reaction score
3
Hi i need a npc script and it will sell

BLoody edge,7416,500000
Great axe,2415,500000
Abyss hammer,7414,500000
banana staff,3966,500000
Sniper Arrow,7364,250000
Silkweaver bow,8857,250000

Plz can anybody fix it to me u tried but it didnt worked for me

The name of Npc gonna be Special Weapons REP++ thx
 
Code:
<?xml version="1.0" encoding="UTF-8"?>
<npc name="npcName" walkinterval="5000" floorchange="0">
    <health now="100" max="100"/>
    <look type="289" head="114" body="114" legs="91" feet="91" addons="3"/>
    <parameters>
		<parameter key="message_greet" value="Hi |PLAYERNAME|! To buy epic just say {trade}. Mind they are very expensive" />
        <parameter key="module_shop" value="1"/>
        <parameter key="shop_buyable" value="Bloody Edge,7416,500000;Great axe,2415,500000;Abyss hammer,7414,500000;banana staff,3966,500000;Sniper Arrow,7364,250000;Silkweaver bow,8857,250000"  /> 
 
    </parameters>
</npc>
 
XML:
<?xml version="1.0" encoding="UTF-8"?>
<npc name="Npcname" script="data/npc/scripts/default.lua" walkinterval="2500" floorchange="0">
    <health now="100" max="100"/>
    <look type="289" head="114" body="114" legs="91" feet="91" addons="3"/>
    <parameters>
		<parameter key="message_greet" value="Hi |PLAYERNAME|! To buy epic just say {trade}. Mind they are very expensive" />
        <parameter key="module_shop" value="1"/>
        <parameter key="shop_buyable" value="Bloody Edge,7416,500000;Great axe,2415,500000;Abyss hammer,7414,500000;banana staff,3966,500000;Sniper Arrow,7364,250000;Silkweaver bow,8857,250000"  /> 
 
    </parameters>
</npc>

Be sure you do have default.lua in npc/scripts
 
Thanks :D, diddn't know that.
lol Loves Santig for always bein there to clean up my messes :p
great Tutor to me :)


lmfao " name="Npcname" "
he even changes this around XD God love ya lol .
 
Back
Top