scn teleamulett
short tele
short control
Begin OnEquip
if control == 0
messagebox "Wohin möchtet ihr?", "Nach Hause", "Zur Kaiserstadt", "Nach Anvil", "Nach Skingrad", "Nach Leyawiin", "Nach Bravil", "Nach Cheydinhal", "Nach Bruma", "nach Chorrol", "Ich möchte hierbleiben"
set control to 1
endif
End
Begin GameMode
if control == 1
Set tele to GetButtonPressed
if tele == -1
return
elseif tele == 0 && control == 1
set control to 0
player.moveto DVDG2
elseif tele == 1 && control == 1
set control to 0
player.moveto ICMarketWestGateMarker
elseif tele == 2 && control == 1
set control to 0
player.moveto AnvilLandGateMarker
elseif tele == 3 && control == 1
set control to 0
player.moveto MG13CarstenMark
elseif tele == 4 && control == 1
set control to 0
player.moveto LeyawiinGreenGateMarker
elseif tele == 5 && control == 1
set control to 0
player.moveto BravilCenterMarker
elseif tele == 6 && control == 1
set control to 0
player.moveto CheydinhalBlueGateMarker
elseif tele == 7 && control == 1
set control to 0
player.moveto BrumaBeggarGate
elseif tele == 8 && control == 1
set control to 0
return
endif
endif
end