ACS Tool

Projects that alter game functions but do not include new maps belong here.
Forum rules
The Projects forums are only for projects. If you are asking questions about a project, either find that project's thread, or start a thread in the General section instead.

Got a cool project idea but nothing else? Put it in the project ideas thread instead!

Projects for any Doom-based engine (especially 3DGE) are perfectly acceptable here too.

Please read the full rules for more details.
Proydoha
Posts: 78
Joined: Thu Jan 21, 2016 2:25 am

ACS Tool

Post by Proydoha »

I was playing RAMP 2021 and on map 171 there is a rhythm game.
I don't know if I lack rhythm or something malfunctioned but I kept dying again and again on it.

Rhythm game was implemented using ACS so I figured: I'll just kill the script from the console. But apparently there are no console commands to kill an ACS script. So I've created a mod that is able to kill them.

Mod adds following aliases:

Code: Select all

ACS_Execute script mapnum arg1 arg2 arg3
ACS_Suspend script mapnum
ACS_Terminate script mapnum
ACS_LockedExecute script mapnum arg1 arg2 lock
ACS_LockedExecuteDoor script mapnum arg1 arg2 lock
ACS_ExecuteWithResult script arg1 arg2 arg3 arg4
ACS_ExecuteAlways script mapnum arg1 arg2 arg3

ACS_NamedExecute script mapnum arg1 arg2 arg3
ACS_NamedSuspend script mapnum
ACS_NamedTerminate script mapnum
ACS_NamedLockedExecute script mapnum arg1 arg2 lock
ACS_NamedLockedExecuteDoor script mapnum arg1 arg2 lock
ACS_NamedExecuteWithResult script arg1 arg2 arg3 arg4
ACS_NamedExecuteAlways script mapnum arg1 arg2 arg3
ACS_ScriptCall script arg1 arg2 arg3 arg4
To be honest I haven't tested them all because even if I've seen some of them in the wild I wasn't paying attention. But execute, suspend and terminate definitely work!

Download: PR ACS Tool

Return to “Gameplay Mods”