24 lines
665 B
Python
24 lines
665 B
Python
# a pile of herbs (1043001) | Forest of Endurance : Stage 5 (910130102)
|
|
# Forest of Endurance - The Double-Rooted Reg Ginseng (Quest 2051)
|
|
# Author: Tiger
|
|
|
|
import random
|
|
|
|
rewards = [
|
|
[4020007, 2], # Diamond Ore
|
|
[4020008, 2], # Black Crystal Ore
|
|
[4010006, 2], # Gold Ore
|
|
[1032013, 1] # Red Hearted Earrings
|
|
]
|
|
|
|
if sm.hasQuest(2051):
|
|
response = sm.sendAskYesNo("Are you sure you want to take #bDouble-Rooted Red Ginseng#k with you?")
|
|
|
|
if response:
|
|
sm.giveItem(4031032, 1) # Double-Rooted Reg Ginseng
|
|
sm.warp(101000000) # Ellinia
|
|
else:
|
|
rand = random.choice(rewards)
|
|
sm.giveItem(rand[0], rand[1])
|
|
sm.warp(101000000) # Ellinia
|