It says
Error Line 9 Expected: (
I got this by hitting Shift , the number 9. Maybe it is not the right one?
Then, Warning line 9: Trying to convert from 'const int' to ' * struct '
Error line 9: Expected )
ESL wrote:shottimer++;
if( shottimer=10)
{CreateActor} "words", "shipShot", "(none)", "(none)", 0, 0, false};
shottimer=0;
}
if( shottimer=10)
{CreateActor} "words", "shipShot", "(none)", "(none)", 0, 0, false};
shottimer=0;
}
if(shottimer=10)
{
CreateActor("words", "shipShot", "(none)", "(none)", 0, 0, false);
shottimer=0;
}
Hblade wrote:Your code:
- Code: Select all
if( shottimer=10)
{CreateActor} "words", "shipShot", "(none)", "(none)", 0, 0, false};
shottimer=0;
}
Change to:
- Code: Select all
if(shottimer=10)
{
CreateActor("words", "shipShot", "(none)", "(none)", 0, 0, false);
shottimer=0;
}
if(shottimer==10)
{
CreateActor("words", "shipShot", "(none)", "(none)", 0, 0, false);
shottimer=0;
}
Users browsing this forum: No registered users and 1 guest