sovereignx/data/maps/DesertUnderpass/scripts.inc

37 lines
882 B
PHP
Raw Normal View History

2017-11-10 01:21:31 +00:00
DesertUnderpass_MapScripts:: @ 823AF37
2019-04-05 00:28:37 +01:00
map_script MAP_SCRIPT_ON_TRANSITION, DesertUnderpass_OnTransition
2017-11-10 01:21:31 +00:00
.byte 0
2019-04-05 00:28:37 +01:00
DesertUnderpass_OnTransition: @ 823AF3D
2017-12-27 03:20:29 +00:00
setflag FLAG_LANDMARK_DESERT_UNDERPASS
2017-11-10 01:21:31 +00:00
end
DesertUnderpass_EventScript_Fossil:: @ 823AF41
2017-11-10 01:21:31 +00:00
lock
faceplayer
goto_if_set FLAG_CHOSE_ROOT_FOSSIL, DesertUnderpass_EventScript_GiveClawFossil
goto_if_set FLAG_CHOSE_CLAW_FOSSIL, DesertUnderpass_EventScript_GiveRootFossil
2017-11-10 01:21:31 +00:00
release
end
DesertUnderpass_EventScript_GiveClawFossil:: @ 823AF57
2017-11-10 01:21:31 +00:00
giveitem_std ITEM_CLAW_FOSSIL
removeobject 1
release
end
DesertUnderpass_EventScript_GiveRootFossil:: @ 823AF68
2017-11-10 01:21:31 +00:00
giveitem_std ITEM_ROOT_FOSSIL
removeobject 1
release
end
@ Unused
DesertUnderpass_Text_FoundRootFossil:: @ 823AF79
.string "{PLAYER} found the ROOT FOSSIL.$"
@ Unused
DesertUnderpass_Text_FoundClawFossil:: @ 823AF93
.string "{PLAYER} found the CLAW FOSSIL.$"
2017-11-10 01:21:31 +00:00