Is it possible to delineate monster names?

eegee

Member
When making the Custom Combat Script, is possible to put multiple location names or multiple monster names? If so, what should I use to delineate them?

p.s. I couldn't find the answer here or here.
 

roippi

Developer
Er.. the wiki link explains that pretty thoroughly. You put each monster's name in brackets, as shown.
 

eegee

Member
I understand that, but I would like to merge the same command for multiple monsters/locations.

For example:
Code:
[monster A <delineation> monster B]
attack with weapon
vs
Code:
[monster A]
attack with weapon

[monster B]
attack with weapon
 

slyz

Developer
You can't. What you can do is:
Code:
[ monster A ]
section monstersAB

[ monster B ]
section monstersAB

[ monstersAB ]
attack with weapon
 
Last edited:

eegee

Member
Thank you slyz, I see I missed that in both links. I didn’t realize that there was a “goto” in CSS. That will work just as well.

Thanks as well heeheehee, I’ll look into calling an ASH if my scenarios become too complex.
 
Top