Making Teleporting Items
Making Teleporting Items
How can I make a ring that teleports me to a certain place, when I put it on? If that is possible, without writing a whole new script or something, that is.
I take it you're referring to the construction set, that's the only way to do it, but you would need to right a new script.
This is a script that I used to create an amulet that teleported my character to Aryon's chambers in Vos:
This is a script that I used to create an amulet that teleported my character to Aryon's chambers in Vos:
You could plagiarise it, inserting your own co-ordinates and cellname.Begin amuletTelVosScript
short button
short messageOn
short reset
short OnPcEquip
if ( OnPCEquip == 0 )
set reset to 0
endif
if ( reset == 1 )
return
endif
if ( OnPCEquip == 1 )
if ( reset == 0 )
Set OnPCEquip to 0
MessageBox "Would you like to return to Aryon?" "Yes" "No"
set messageOn to 1
endif
endif
if ( messageOn == 1)
set button to GetButtonPressed
if ( button >= 0 )
set messageOn to 0
endif
if ( button == 0 )
Player->PositionCell, 3931.521, 3127.359, 15775.268, 180, "Tel Vos, Aryon's Chambers"
set reset to 1
elseif ( button == 1 )
set reset to 1
return
endif
endif
End
[QUOTE=Darth Gavinius;1096098]Distrbution of games, is becoming a little like Democracy (all about money and control) - in the end choice is an illusion and you have to choose your lesser evil.
And everything is hidden in the fine print.[/QUOTE]
And everything is hidden in the fine print.[/QUOTE]