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

Potions NPC

Orkanite

omfg mapper
Joined
May 11, 2008
Messages
365
Reaction score
115
Sorry if this has already been requested, but if someone can help me find an npc who sells health and mana potions that is compatible with devland (not the new TFS style) or even just an explanation on how to get npcs to sell fluid containers, that'd be great. Thanks, Orky ^_^
 
You can try put in your npc

Code:
		elseif msgcontains(msg, 'health potion') then
			buy(cid,7618,getCount(msg),50)
		elseif msgcontains(msg, 'great health potion') then
			buy(cid,7591,getCount(msg),120)
		elseif msgcontains(msg, 'strong health potion') then
			buy(cid,7588,getCount(msg),220)
		elseif msgcontains(msg, 'mana potion') then
			buy(cid,7620,getCount(msg),80)
		elseif msgcontains(msg, 'great mana potion') then
			buy(cid,7590,getCount(msg),150)
		elseif msgcontains(msg, 'strong mana potion') then
			buy(cid,7589,getCount(msg),250)
 
Back
Top