Code: Select all
#include "zcommon.acs"
script 1 (int line1)
{
SetLineTexture(line1, SIDE_FRONT, TEXTURE_MIDDLE, "skinface");
}

Code: Select all
#include "zcommon.acs"
script 1 (int line1)
{
SetLineTexture(line1, SIDE_FRONT, TEXTURE_MIDDLE, "skinface");
}
Code: Select all
acs_execute(1,0,1,0,0);
Code: Select all
SetLineTexture(1, SIDE_FRONT, TEXTURE_MIDDLE, "skinface");
Code: Select all
#include "zcommon.acs"
script 1 (void) //or OPEN etc if you prefer
{
SetLineTexture(1, SIDE_FRONT, TEXTURE_MIDDLE, "skinface");
}
Code: Select all
script 1 (int line1)
{
SetLineTexture(line1, SIDE_FRONT, TEXTURE_MIDDLE, "skinface");
}
Code: Select all
script 1 (void)
{
SetLineTexture(1, SIDE_FRONT, TEXTURE_MIDDLE, "skinface");
}