Hallo, i have question, how i can create a few teleport location..
For exmample i have 3 coordinates location:
1 --------------2
|
|
|
|
|
3---------------
and i press on my custom teleporter button: "Wall of Agros"
and I want that one time teleporter teleport me to location 1, second for exmaple to 3... Random coord...
I think i need to create this teleporter based jython language...
I found tele script on 247_PossessorOfAPreciousSoul_4 quest
elif event == "31740-5.htm" :
if cond == 1 :
st.set("cond","2")
st.takeItems(CARADINE_LETTER_LAST,1)
st.getPlayer().teleToLocation(143209,43968,-3038)
So i need something, like this
st.getPlayer().teleToLocation(1545,43968,-3038)
st.getPlayer().teleToLocation(143209,43968,-3038)
st.getPlayer().teleToLocation(14251129,-45468,-3038)
st.getPlayer().teleToLocation(1454209,44968,-2138)
a few cord...
I think you understand me.