• 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 an Addon Items Seller np

xerentis

New Member
Joined
Jul 27, 2008
Messages
23
Reaction score
0
Hello all maybe u can help me?^^
Cuz i need an npc that sells the addon items that u need for addons like "demon dusts" "lizzard scales" ......
thanks for help^^
 
no you dont understand xD i have this script i need an npc that sells the items not the addons the "items"
that i dont need to loot the items from monsters^^
 
Here, it is not 100% complete, but it has many addon-items.

Some things you are suppose to hunt for urself in-game, thats how Znote was when I was using this npc, so it dosn't got all the addons.

Code:
<npc name="Jason" script="data/npc/scripts/seller.lua" autowalk="0" floorchange="0" access="5" level="1" maglevel="1">
	<health now="150" max="150"/>
	<look type="152" head="0" body="132" legs="132" feet="132" addons="3"/>
	<parameters>
		<parameter key="module_shop" value="1" />
		<parameter key="message_greet" value="Hello |PLAYERNAME|. I am selling addon items." />
		<parameter key="shop_buyable" value="sniper gloves,5875,3000;lizard leather,5876,300;green dragon leather,5877,300;minotaur leather,5878,150;giant spider silk,5879,300;iron ore,5880,300;lizard scale,5881,300;red dragon scale,5882,300;ape fur,5883,300;fighting spirit,5884,3000;warrior's sweat,5885,3000;spider silk yarn,5886,3000;royal steel,5887,4000;hell steel,5888,2000;draconian steel,5889,1000;chicken feather,5890,100;enchanted chicken wing,5891,5000;crude iron,5892,2000;behemoth fang,5893,500;bat wing,5894,200;fish fin,5895,300;bear paw,5896,150;wolf paw,5897,100;beholder eye,5898,300;turtle shell,5899,300;honeycomb,5902,200;ferumbras hat,5903,500000;magic sulphur,5904,700;vampire dust,5905,300;demon dust,5906,1000;yellow piece of cloth,5914,300;white piece of cloth,5909,300;green piece of cloth,5910,300;red piece of cloth,5911,300;blue piece of cloth,5912,300;brown piece of cloth,5913,300;yelow piece of cloth,5914,300;dragon claw,5919,10000;green dragon scale,5920,300;behemoth claw,5930,500;soul stone,5809,5000;mandrake,5015,2000;demon horn,5954,1000;red dragon leather,5948,300;engraved crossbow,5947,4000;brutus bloodbeard's hat,6099,3000;lethal lissy's shirt,6100,3000;ankh,2193,200;holy orchid,5922,500;mermaid comb,5945,10000;pirate voodoo doll,5810,1000;dworc voodoo doll,3955,1000;banana staff,3966,5000;tribal mask,3967,1500;hardened bone,5925,400;nose ring,5804,3000;damaged steel helmet,5924,6000;peg leg,6126,300;hook,6097,300;eye patch,6098,300;ron the ripper's sabre,6101,4000;deadeye devious eye,6102,4000;blooming griffinclaw,5937,5000;water from the hydra cave,5938,5000;blessed wooden stake,5942,2000;ceiron's wolf tooth chain,5940,5000;lottery ticket,5957,50000" />
	</parameters>
</npc>

Code:
local keywordHandler = KeywordHandler:new()
local npcHandler = NpcHandler:new(keywordHandler)
NpcSystem.parseParameters(npcHandler)

-- OTServ event handling functions start
function onCreatureAppear(cid)				npcHandler:onCreatureAppear(cid) end
function onCreatureDisappear(cid) 			npcHandler:onCreatureDisappear(cid) end
function onCreatureSay(cid, type, msg) 	npcHandler:onCreatureSay(cid, type, msg) end
function onThink() 						npcHandler:onThink() end
-- OTServ event handling functions end

npcHandler:addModule(FocusModule:new())
 
Back
Top