• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Npc sells Teleport Scroll...

Winnerandy

Experienced Web Design'er
Joined
Oct 23, 2008
Messages
2,251
Reaction score
51
Location
Tellus.
Hi guys!

I need a Npc that sells a teleport scroll,and a manarune.. The name of the NPC should be : The Helper

The price of teleport scroll should be for 5 cc, and the ID 6118.

And the manarune should cost 1cc, and the id should be 2270

:D
 
PHP:
<npc name="The Helper" script="data/npc/scripts/default.lua" walkinterval="2000" floorchange="0" access="3" level="1" maglevel="1">
	<health now="150" max="150"/>
	<look type="134" head="116" body="120" legs="75" feet="39" addons="0" corpse="2212"/>
	<parameters>
		<parameter key="message_greet" value="|PLAYERNAME|, do you need anything? {trade}?" />
		<parameter key="message_needmoremoney" value="Get outta here!"/>
		<parameter key="message_decline" value="It is your money."/>
		<parameter key="module_shop" value="1"/>
		<parameter key="shop_sellable" value="teleport scroll,6118,50000;manarune,2270,10000"/>
	</parameters>
</npc>
 
Back
Top