[solved] Icon of Sin is isnide my code D: help
Posted: Wed Nov 25, 2015 5:48 pm
Hello Guy and Girls, could someone please explain me why acs_execute refuses to be called? is he shy? because that print bold is working but not the acs one '-'
acs script
I had made some decorate code that used to call some acs scripts, but for some reason, it's not working in this case :|, any tips?
Code: Select all
actor Paper : SwitchingDecoration 15132
{
Height 40
Radius 20
Activation THINGSPEC_Switch
+USESPECIAL
+SOLID
-NOGRAVITY
States
{
Spawn:
DEBR A 1
Wait
Active :
TNT1 A 1 A_PrintBold ("PLEASE WORK 1")
TNT1 A 0 ACS_Execute(16,0)
TNT1 A 1
goto Spawn
Inactive:
TNT1 A 1
TNT1 A 0 ACS_Execute(16,0)
TNT1 A 1
goto Spawn
}
}
Code: Select all
#include "zcommon.acs"
script 16(void){
print(s:" FUCK YEAH, IT WORKS!!!!");
}