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 ME
flamez3 Offline
Posting Freak

Posts: 1,281
Threads: 48
Joined: Apr 2011
Reputation: 57
#6
RE: Unexpected End Of File? HELP ME

(10-23-2011, 02:51 PM)Lemorz56 Wrote: This is how the part looks, Still same error



void PianoScare(string &in asParent, string &in asChild, int alState)
{

if(alState == 1)
{
PlaySoundAtEntity("PianoScareMusic", "general_piano03.ogg", "piano_1", 0, false);
}
if(alState == -1)
{ <-----------1
StopSound("general_piano03.ogg", 5);
}
} <-----------2
Two things,

1: What is this doing here? your opening something when it's uneeded
2: I'm assuming that closing is for the number 1.


void PianoScare(string &in asParent, string &in asChild, int alState)
{
if(alState == 1)
{
PlaySoundAtEntity("PianoScareMusic", "general_piano03.ogg", "piano_1", 0, false);
if(alState == -1)
StopSound("general_piano03.ogg", 5);
}


Im not sure what your doing with the if statement.... explain that aswell if this doesn't work

10-23-2011, 02:56 PM
Find


Messages In This Thread
Unexpected End Of File? HELP ME - by Lemorz56 - 10-23-2011, 02:27 PM
RE: Unexpected End Of File? HELP ME - by flamez3 - 10-23-2011, 02:34 PM
RE: Unexpected End Of File? HELP ME - by Lemorz56 - 10-23-2011, 02:38 PM
RE: Unexpected End Of File? HELP ME - by flamez3 - 10-23-2011, 02:48 PM
RE: Unexpected End Of File? HELP ME - by Lemorz56 - 10-23-2011, 02:51 PM
RE: Unexpected End Of File? HELP ME - by flamez3 - 10-23-2011, 02:56 PM
RE: Unexpected End Of File? HELP ME - by Lemorz56 - 10-23-2011, 03:00 PM
RE: Unexpected End Of File? HELP ME - by flamez3 - 10-23-2011, 03:07 PM
RE: Unexpected End Of File? HELP ME - by Lemorz56 - 10-23-2011, 03:13 PM
RE: Unexpected End Of File? HELP ME - by Elven - 10-23-2011, 03:10 PM
RE: Unexpected End Of File? HELP ME - by flamez3 - 10-23-2011, 03:14 PM
RE: Unexpected End Of File? HELP ME - by Lemorz56 - 10-23-2011, 03:20 PM
RE: Unexpected End Of File? HELP ME - by flamez3 - 10-23-2011, 03:26 PM
RE: Unexpected End Of File? HELP ME - by Lemorz56 - 10-23-2011, 03:30 PM
RE: Unexpected End Of File? HELP ME - by Elven - 10-23-2011, 03:40 PM



Users browsing this thread: 1 Guest(s)