11 lines
444 B
Python
11 lines
444 B
Python
# Protect the Harp Seal | (2436188)
|
|
if sm.getSkillByItem() == 0:# Check whether item has an vehicleID stored, 0 if false.
|
|
sm.chat("An Error occurred whilst trying to find the mount.")
|
|
elif sm.hasSkill(sm.getSkillByItem()):
|
|
sm.chat("You already have the 'Protect the Harp Seal' mount.")
|
|
else:
|
|
sm.consumeItem()
|
|
sm.giveSkill(sm.getSkillByItem())
|
|
sm.chat("Successfully added the 'Protect the Harp Seal' mount.")
|
|
sm.dispose()
|