You can't. Even unused variables are still there too.However, you can limit the number of times the move is activated if that's what you mean.
type = changestatetrigger1 = Var(#) < 3trigger1 = command = "this_move"Every time you activate this move, or the character goes into this state, add 1 to this variable #.
Give us more information. We don't know what you tried Give us the code you tried so we can see what you're doing. You have to help us help you.
This is what I've done so far - a CB has Variables Set;[Statedef 262, Combo Breaker]type = Smovetype= Aphysics = Sjuggle = 3poweradd= 80ctrl = 0anim = 198sprpriority = 2hitcountpersist = 1[State 262, VarSet]type = VarSettrigger1 = time = 0var (5) = 1[State 262, reversalDef]type = ReversalDeftrigger1 = hitcount > 3reversal.attr = S,NA[....]those variables turn on an After image in specific moves, so they become a shadow moves;[....][State 260, AfterImage]type = AfterImagetriggerall = var(5) = 1 <--------------trigger1 = stateno = 0trigger2 = time = 0time = 30length = 7palcolor = 0palpostbright = 10,10,10paladd = 0,0,0palmul = 1,1,1timegap = 2framegap = 3[....]and this works great. Now what i try to do is make those variables set back to 0 (turn off After image) after been used for the third time, so you have to perform CB again to turn them on again, like in original KI. N-Mario had an idea how to do it, but I did not try it yet. Posted: March 25, 2013, 06:02:42 pmDone!!!!The code is;Inside Combo Breaker;[State 0, VarSet]type = VarSettrigger1 = time = 0var (5) = 1000Within each movement, that has to be in the shadow version;[State 0, AfterImage]type = AfterImagetriggerall = (var(5) = [1000,1002])trigger1 = stateno = 0trigger2 = time = 0time = 30length = 7palcolor = 0palpostbright = 10,10,10paladd = 0,0,0palmul = 1,1,1timegap = 2framegap = 3[State 0, VarAdd]type = VarAddtrigger1 = time = 1var (5) = 1And i think everyone already know how this work? For those who don't know: After Combo Breaker the variable #5 is set to 1000, and that will turn on AfterImage. Now every time when a move with AfterImage state is used the VarAdd state in this move will add +1 to variable #5 (BTW; from 0, and even without Combo Breaker! that is why var(5) = 1000! because "all variables' values default to 0, so if you never defined a variable before you used a varadd, it'll just be adding the value specified to 0" - Variable Tutorial by Rajaa") so it become = 1001, used again become = 1002, again = 1003, then = 1004 etc. The range is from 1000 to 1002 "triggerall = (var(5) = [1000,1002])" so AfterImage will trigger three times:)