changing default action setting in a script

postman

New member
i havent seen this done anywhere or any notes about how to do it, - can it be done?

the reason i want to change it is for a loop like this:

loop until X = 0
script to adventure
script to change gear
script to change attack method to CLEESH <-------
script to adventure
script to change attack method to Skill: LTS <-----
script to change gear
X-1
repeat

i have all the bits done except the changing of attack type :( any help would be greatly appreciated
sorry if this was obvious but i haven't seen it anywhere

thanks
/postman
 
Last edited:

mredge73

Member
can you post what you currently have?
Are you using ASH?

All of your attacks are going to be handled with your CCS
To change your ccs you can just type in the Cli "ccs cleesh"
or in ash: cli_execute("ccs cleesh");

your cleesh ccs should look like this:

[default]
1:skill cleesh
2:attack with weapon
 

postman

New member
jaha!

thanks i get it now i forgot about the Custom Combat Scripts - i have only been using the standard default one so far - thanks for the help mredge :)
 
Top