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
Help with a script.
Khyrpa Offline
Senior Member

Posts: 638
Threads: 10
Joined: Apr 2011
Reputation: 24
#2
RE: Help with a script.

AddEntityCollideCallback("Player" , "*nameofyourarea*" , "flashspawnsomething" , true , 1);
that into OnStart

then do smthing like this

void flashspawnsomething(string &in asParent, string &in asChild, int alState)
{StartEffectFlash(1.0f, 1.0f, 1.0f);
AddTimer("blehblabh", 1.0f, "timedteleport");
}
void timedteleport(string &in asTimer)
{TeleportPlayer(string& asStartPosName);
}

that will actually do everything in just 1second, but with tweaking the start effect flash functions numbers and the timer, you can slow it down...
Or do you mean whole another level/map? if so then use:
ChangeMap(string& asMapName, string& asStartPos, string& asStartSound, string& asEndSound);
instead of teleport
(This post was last modified: 06-18-2011, 11:24 AM by Khyrpa.)
06-18-2011, 11:22 AM
Find


Messages In This Thread
Help with a script. - by Doctorcheese - 06-18-2011, 11:18 AM
RE: Help with a script. - by Khyrpa - 06-18-2011, 11:22 AM
RE: Help with a script. - by Doctorcheese - 06-18-2011, 11:32 AM



Users browsing this thread: 1 Guest(s)