Question: How to warp to any location within the module that you are in?
Is it possible? How?
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));
}
Thanks Stoffe. :)
Where do I put this script?
Thanks Stoffe. :)
Where do I put this script?
You can attach the name of the script to a dialogue node.
Thanks Stoffe. :)
Where do I put this script?
I think you should be able to set it up as an armband.
_EW_
Cool, thanks to both of you. :)