Which command in an .ash script can I use to select a specific .css file?

Glitch

New member
Rookie question - Thanks in advance for any help you might be willing to offer!

I understand how to point to an .ash file from within the KoLmafia GUI (as outlined here)

Ex:
[ default ]
consult SauceSplash.ash
attack



But I haven't been able to figure out how to do the opposite of that. Which simple little command can I use in an .ash script to select a specific .ccs file? (EDIT: mistakenly said ".css")

Thanks!

-Glitch
 
Last edited:

ckb

Minion
Staff member
Huh? Oh... I think you mean .ccs (Custom Combat Script) not .css (Cascading Style Sheet).

In that case, set the property "customCombatScript"

Code:
set_property("customCombatScript","mycombat.ccs");
 

Glitch

New member
I did indeed mean .ccs. Thank you for catching that, and thank you for the kind reply! That's exactly what I needed! :)
 
Top