Facebook Twitter YouTube Frictional Games | Forum | Privacy Policy | Dev Blog | Dev Wiki | Support | Gametee


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Script Help Possible to Teleport Player?
Unearthlybrutal Offline
Posting Freak

Posts: 775
Threads: 12
Joined: May 2011
Reputation: 26
#6
RE: Possible to Teleport Player?

void OnStart()
{
AddEntityCollideCallback("Player", "area name here", "Tele", true, 1);
}

void Tele(string &in asParent, string &in asChild, int alState)
{
AddTimer("T1", 5.0f, "Timer_1");
}

void Timer_1(string &in asTimer)
{
TeleportPlayer("CameraPos_2");
}


When Life No Longer Exists
Full-conversion mod
(This post was last modified: 02-25-2012, 09:28 PM by Unearthlybrutal.)
02-25-2012, 09:27 PM
Website Find


Messages In This Thread
Possible to Teleport Player? - by A.I. - 02-25-2012, 08:27 PM
RE: Possible to Teleport Player? - by A.I. - 02-25-2012, 08:34 PM
RE: Possible to Teleport Player? - by A.I. - 02-25-2012, 09:17 PM
RE: Possible to Teleport Player? - by Unearthlybrutal - 02-25-2012, 09:27 PM



Users browsing this thread: 1 Guest(s)