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

npc looktype=itemid

ib0w

teamfiveporject
Joined
Apr 3, 2009
Messages
91
Reaction score
4
Location
Sweden/Ronneby
hey guys how can i make a npc looks like an item?
i want a npc look like itemid 12319.
i tryed like this <look typeex="12319" corpse="3128"/>
but it bugged my client.
im using 8.6, 0.3.6
 
Try using this? Maybe its because an item doesn't have a corpse..
Code:
<?xml version="1.0" encoding="UTF-8"?>

<npc name="Sacred Dragon" script="dragon.lua" walkinterval="0" floorchange="0">
    <health now="100" max="100"/>
    [COLOR="#FF0000"]<look typeex="12319"/>[/COLOR]
    <parameters>
            <parameter key="module_shop" value="1"/>
        <parameter key="message_greet" value="Hello |PLAYERNAME|. What brings you to me? You want start the {adventures}?"/>
<parameter key="shop_buyable" value="sacred teleporter,9942,2000000;" />
    </parameters>

</npc>
 
Back
Top