scn 1AmuletTeleportScript
short button
Begin OnEquip player
MessageBox "Wohin möchtet Ihr?", "Sommerpalast", "Stronghold", "Marketcity"
End
Begin GameMode
Set button to GetButtonPressed
if button == 0
;Auswahl 1 Sommerpalast
Message "Teleport zum Sommerpalast"
Player.PositionCell 265, 49, 715, 1, "1CabanaPalace"
elseif button == 1
;Auswahl 2 Stronghold
Message "Teleport zum Stronghold"
;Player.PositionCell -144, -325, -387, 0, "300AkaviriStrongholdGreatHall"
elseif button == 2
;Auswahl 3 Marketcity
Message "Teleport nach Marketcity"
;Player.PositionCell -214491, -3542738, 0, "300AkaviriStrongholdB"
endif
end