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
ingedoom Offline
Member

Posts: 120
Threads: 12
Joined: Feb 2012
Reputation: 0
#10
RE: Unexpected end of file help

(03-15-2013, 08:57 PM)killerblade Wrote: that didnt fix and the article didnt help....

Ohhh my bad you did correct with the " " and the names af the timers are 1 2 and 3.
The problem is something totally different.

You need to have the if statement within a function like

PHP Code: (Select All)
void OnStart() //function
{
    if(
condition)
        {
             
Things to if the condition is met
        
}


Another thing is that you use the if statement completely wrong. Just detete it and add new timers and functions like you allready did:

Spoiler below!

PHP Code: (Select All)
AddTimer("1"5"flashingreturn");
AddTimer("2"2"Playerdisablemove");
AddTimer("3"15"Flashingkeh");
}
void Playerdisablemove(string &in asTimer//This function executes
{
SetPlayerActive(false);
}
void Flashingreturn(string &in asTimer//This function executes
{
SetPlayerActive(true);
}
void Flashingkeh(string &in asTimer//This function executes
{
ChangeMap("Mohammadsmap.map""flashingreturn""""");
StartPlayerLookAt("LookatReturn"12.0f"");



Eventually add the new timers withing the functions you made =) Delete the if statements. Read the article, it will help you understand how you can use the if statement

[Image: 23778.png]
03-15-2013, 11:16 PM
Website 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)