Setting the Battle Action

syrinxlui

Member
How can I set the battle action? (Labeled "Action" in the "Adventure" tab in the subtab "Custom Combat.") I know "aa" will set the combat macro for KoL proper. I know "ccs" will select the custom combat script in Mafia. When I use "ccs" I get the message "(but battle action is currently set to attack with weapon)." So how do I set that other dropdown? Trying to do this inside a script.
 

ckb

Minion
Staff member
Battle action i set with the property "battleAction". You can also specify your ccs by name with the property "customCombatScript".

In ash, this is :
Code:
set_property("battleAction","custom combat script");
set_property("customCombatScript","my_custom.ccs");
 
Top