So I am having errors with line 9 which says invalid declarator so here it is.
#include "zcommon.acs"
script 1 (void)
{
print (s:"Welcome to Flem labs inc, where our flem is your flem" );
delay (50);
}
Translucentline(0, 6);
SetLineSpecial(0,49);
ACS error
Forum rules
Before asking on how to use a ZDoom feature, read the ZDoom wiki first. This forum is archived - please use this set of forums to ask new questions.
Before asking on how to use a ZDoom feature, read the ZDoom wiki first. This forum is archived - please use this set of forums to ask new questions.
Re: ACS error
You have two functions sitting in no script block at all. Line 9 is "Translucentline", yet ACC is expecting a new script block or function.
Is this what you wanted?
Is this what you wanted?
Code: Select all
#include "zcommon.acs"
script 1 (void)
{
print (s:"Welcome to Flem labs inc, where our flem is your flem" );
delay (50);
Translucentline(0, 6);
SetLineSpecial(0,49);
}