10 lines
294 B
Python
10 lines
294 B
Python
# Portal to leave Ellinel Fairy Academy
|
|
|
|
FANZY = 1040002 # NPC ID
|
|
MIDSUMMER_NIGHTS_FOREST_PATH_FROM_ELLINEL = 101074001 # MAP ID
|
|
|
|
sm.setSpeakerID(FANZY)
|
|
|
|
response = sm.sendAskYesNo("Head back to #bNorth Forest: Giant Tree#k?")
|
|
if response:
|
|
sm.warp(MIDSUMMER_NIGHTS_FOREST_PATH_FROM_ELLINEL) |