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
Unexpected end of file help
killerblade Offline
Junior Member

Posts: 4
Threads: 1
Joined: Mar 2013
Reputation: 0
#6
RE: Unexpected end of file help

i have a new problem i would appreciate if you guys help ,

The error is : main (62,1)Unexpected token: if
Main (66,6)Unexpected token :Else
Main (70,2)Unexpected token :Else , here's my script please help me!


void Flashingteleport(string &in asParent, string &in asChild, int alState)
{
FadeOut(0);
FadeIn(20);
ChangeMap("Mohammadsmap.map", "flashingteleport", "", "");
StartPlayerLookAt("LookatTeleport", 1, 2.0f, "");
AddTimer("1", 5, "flashingreturn");
AddTimer("2", 2, "Playerdisablemove");
AddTimer("3", 15, "Flashingkeh");
}
void Playerdisablemove(string &in asTimer)
{
SetPlayerActive(false);
}
void Flashingreturn(string &in asTimer)
{
SetPlayerActive(true);
}
void Flashingkeh(string &in asTimer)
{
ChangeMap("Mohammadsmap.map", "flashingreturn", "", "");
StartPlayerLookAt("LookatReturn", 1, 2.0f, "");
}
if(asTimer == "1")
{
SetPlayerActive(true);
}
else if(asTimer == "2")
{
SetPlayerActive(false);
}
else if(asTimer == "3")
{
ChangeMap("Mohammadsmap.map", "flashingreturn", "", "");
StartPlayerLookAt("LookatReturn", 1, 2.0f, "");

}
03-15-2013, 08:57 PM
Find


Messages In This Thread
Unexpected end of file help - by killerblade - 03-15-2013, 10:26 AM
RE: Unexpected end of file help - by Adrianis - 03-15-2013, 10:36 AM
RE: Unexpected end of file help - by killerblade - 03-15-2013, 11:31 AM
RE: Unexpected end of file help - by Adrianis - 03-15-2013, 12:25 PM
RE: Unexpected end of file help - by ingedoom - 03-15-2013, 01:54 PM
RE: Unexpected end of file help - by killerblade - 03-15-2013, 08:57 PM
RE: Unexpected end of file help - by ingedoom - 03-15-2013, 09:30 PM
RE: Unexpected end of file help - by killerblade - 03-15-2013, 10:49 PM
RE: Unexpected end of file help - by ingedoom - 03-15-2013, 11:16 PM
RE: Unexpected end of file help - by Adrianis - 03-15-2013, 11:08 PM
RE: Unexpected end of file help - by Adrianis - 03-15-2013, 11:23 PM



Users browsing this thread: 1 Guest(s)