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.
and if you use this and request a great, then the NPC replies: Do you want buy a great for 120 gold with:
And I get the same problem with:
and
Anyone got an idea? :<
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: