• 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!
  • New resources must be posted under Resources tab. A discussion thread will be created automatically, you can't open threads manually anymore.

NPC Knight NPC's [Armor, shield, weapons]

Grehy

Killroy
Joined
Nov 21, 2008
Messages
2,631
Reaction score
33
Location
United States
Its frustrating only having the weapons you can get from quests or loot etc, so I'm making NPC's that will sell basic equipment, shields, and weapons for each vocation (knights, paladins, mages)

-EQUIPMENT

Code:
<?xml version="1.0" encoding="UTF-8"?>
<npc name="Knight Robert" script="data/npc/scripts/default.lua" walkinterval="2000" floorchange="0">
    <health now="150" max="150"/>
    <look type="134" head="0" body="0" legs="0" feet="0" addons="3" corpse="2212"/>
    <parameters>
        <parameter key="module_shop" value="1"/>
        <parameter key="shop_buyable" value="helmet of the ancients,2342,50000;devil helmet,2462,3500;warrior helmet,2475,7500;strange helmet,2479,1000;crown helmet,2491,5000;crusader helmet,2497,8000;plate armor,2463,800;golden armor,2466,30000;knight armor,2476,13000;crown armor,2487,10000;dragon scale mail,2492,90000;crystalline armor,8878,85000;voltage armor,8879,85000;swamplair armor,8880,85000;windborn colossus armor,8883,130000;oceanborn leviathan armor,8884,130000;golden legs,2470,150000;knight legs,2477,3500;crown legs,2488,35000;plate legs,2647,1000;boots of haste,2195,30000;steel boots,2645,30000;fur boots,7457,5000;"/>
        <parameter key="shop_sellable" value=""/>
        <parameter key="message_greet" value="Hello Knight |PLAYERNAME|! I sell armor for knights, say {trade} to see my offers!"/>
        <parameter key="message_sendtrade" value="Go ahead and have a look at the list!"/>
        <parameter key="message_oncloseshop" value="I hope you found what you wanted! Come back again!"/>
    </parameters>
</npc>

-SHIELDS
Code:
<?xml version="1.0" encoding="UTF-8"?>
<npc name="Knight Bradley" script="data/npc/scripts/default.lua" walkinterval="2000" floorchange="0">
    <health now="150" max="150"/>
    <look type="131" head="0" body="0" legs="0" feet="0" addons="0" corpse="2212"/>
    <parameters>
        <parameter key="module_shop" value="1"/>
        <parameter key="shop_sellable" value=" "/>
        <parameter key="shop_buyable" value="mastermind shield,2514,145000;beholder shield,2518,3000;dragon shield,2516,9000;crown shield,2519,13000;demon shield,2520,50000;tower shield,2528,12000;vampire shield,2534,20000;medusa shield,2536,13000;"/>
        <parameter key="message_greet" value="Hello Knight |PLAYERNAME|! I sell shields for knights, say {trade} to see!"/>
        <parameter key="message_sendtrade" value="Go ahead and have a look at the list!"/>
        <parameter key="message_oncloseshop" value="I hope you found what you wanted! Come back again!"/>
    </parameters>
</npc>



Rep is nice if you like it!

P.S I will be posting more! Knights shields, weapons, and the rest for paladins and mages.
 
Last edited:

Similar threads

Back
Top