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!!!!");
}