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

Potion NPC

Tarielle

New Member
Joined
Nov 4, 2007
Messages
214
Reaction score
0
Location
Sweden
How can I make so the mana or life potion NPC replies: Do you want to buy a great mana potion for 129 gold? eg.
This code wont work beause when I use it you can only buy a mana fluid even if you request great or a strong one.
Code:
shopModule:addBuyableItem({'mana potion'},7620, 50, 'mana potion')

shopModule:addBuyableItem({'strong mana potion'},7589,80, 'strong mana potion')

shopModule:addBuyableItem({'great mana potion'},7590,120, 'great mana potion')

and if you use this and request a great, then the NPC replies: Do you want buy a great for 120 gold with:
Code:
shopModule:addBuyableItem({'mana potion'},7620, 50,'mana potion')

shopModule:addBuyableItem({'strong'},7589, 80'strong mana potion')

shopModule:addBuyableItem({'great'},7590, 120,'great mana potion')

And I get the same problem with:
Code:
<parameter key="shop_buyable" value="mana potion,7530,50;great mana potion,7598,80;strong mana potion,7590,120;"/>

and
Code:
<parameter key="shop_buyable" value="mana potion,7530,50;great,7598,80;strong,7590,120;"/>

Anyone got an idea? :<
 
Last edited:
"mana potion" is the shortest version, so it has to be at the end.

eg:

great mana potion

strong mana potion

mana potion

same goes to health potions.
 
Back
Top