The Source Posted July 12, 2007 Share Posted July 12, 2007 Question: How to warp to any location within the module that you are in? Is it possible? How? Link to comment Share on other sites More sharing options...
stoffe Posted July 12, 2007 Share Posted July 12, 2007 Question: How to warp to any location within the module that you are in? Is it possible? How? You can the JumpToLocation() function for this, for example: void main() { object oWarper = GetObjectByTag("TagToTeleport"); location lLoc = Location(Vector(1.0, 2.3, 0.0), 0.0); AssignCommand(oWarper, ClearAllActions()); AssignCommand(oWarper, JumpToLocation(lLoc)); } Link to comment Share on other sites More sharing options...
The Source Posted July 12, 2007 Author Share Posted July 12, 2007 Thanks Stoffe. Where do I put this script? Link to comment Share on other sites More sharing options...
Master Zionosis Posted July 13, 2007 Share Posted July 13, 2007 Thanks Stoffe. Where do I put this script? You can attach the name of the script to a dialogue node. Link to comment Share on other sites More sharing options...
EnderWiggin Posted July 13, 2007 Share Posted July 13, 2007 Thanks Stoffe. Where do I put this script? I think you should be able to set it up as an armband. _EW_ Link to comment Share on other sites More sharing options...
The Source Posted July 13, 2007 Author Share Posted July 13, 2007 Cool, thanks to both of you. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.