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

Ice rapier > npc

labbadia

New Member
Joined
Aug 29, 2010
Messages
51
Reaction score
1
Hello!
When i try to sell ice rapier in npc..it dont work...
Appear the ice rapier in option to sell(;Ice Rapier,2396,1000;)... but i cant sell...its like i have 0 ice dont have option to sell!
When i buy(;Ice Rapier,2396,5000;) one from the same npc and try sell its work...
 
Try this. If helped rep++.

Code:
<npc name="Koza" script="data/npc/scripts/default.lua" autowalk="25" floorchange="0" access="5" level="1" maglevel="1">
    <health now="150" max="150"/>
    <look type="139" head="132" body="79" legs="97" feet="132" corpse="2212"/>
    <parameters>
        <parameter key="module_shop" value="1" />
        <parameter key="message_greet" value="Hello |PLAYERNAME|. I sell and buy ice rapiers." />
        <parameter key="shop_buyable" value="ice rapier,2396,10000;" />
        <parameter key="shop_sellable" value="ice rapier,2396,1000;" />

    </parameters>
</npc>
 
Back
Top