YesNoOk
avatar

X-COSTUME Palette Selector v(2.0) 12/7/2013 (Read 100525 times)

Started by PlayerOne, June 23, 2013, 05:29:54 am
Share this topic:
Re: X-COSTUME Palette Selector v(2.0) 12/7/2013
#41  September 20, 2017, 10:45:22 am
  • ***
hello, is there a way to change the code to obtain something like this:

- holdfwd, go forward and switch one by one
- holdback, go backward and switch 10 by 10

i don't know if i made myself clear.. :/ :/

thanks
Re: X-COSTUME Palette Selector v(2.0) 12/7/2013
#42  March 22, 2020, 09:55:49 pm
  • avatar
    • Japan
Library error message: Died parsing root,command="a"||root,command="b"||root,command="c"||root,command="x"||root,command="y"||root,command="z"||root,command="start"||roundstate=2

Error detected.

Undefined command label: "command".
If not misspelling in CNS, check CMD
Error parsing trigger1, 1
Error parsing [State 12345, PlaySnd]
Error in [Statedef 12345]
Error in xcostume.txt:137
Character mugenversion is older than this version of M.U.G.E.N.
Error loading chars/ff3_0/ff3_0.def
Error loading p1

Clipboard tail:
Gameflow 6
Reset persist vars team 0
Reset persist vars team 1
Gameflow 8
Gameflow 9
Gameflow 10
Gameflow 11
Loading match assets...
Loading stage...
  Loading BG...OK
Stage loaded OK
  Allocating helpers...OK
Match RNG seed: 198372329
Reset persist vars team 0
Reset persist vars team 1
Loading character chars/ff3_0/ff3_0.def...
  Loading info...OK
  Loading cmd command set VAkiha_K.cmd...OK
  Loading cns VAkiha_K.cns...OK
  Loading cns xcostume.txt...Character ff3_0.def failed to load
Can anyone help me with this?
Re: X-COSTUME Palette Selector v(2.0) 12/7/2013
#43  July 18, 2022, 03:03:33 pm
  • **
  • "Some People Are Born To Be Extraordinary"
    • Italy
    • fab.marchetti86@gmail.com
hello, is there a way to change the code to obtain something like this:

- holdfwd, go forward and switch one by one
- holdback, go backward and switch 10 by 10

i don't know if i made myself clear.. :/ :/

thanks

Sorry for necroposting, but I felt it could be useful to post a solution for M206. I've done this way:

Code:
[State 8140]
type = VarAdd
triggerall = time > 1
trigger1 = !fvar(39)
trigger1 = root, command = "holdback" || root, command = "holdfwd" ;<- removed holdup and holddown
fvar(36) = 1-(root, command = "holdback" && facing = 1 || root, command = "holdfwd" && facing = -1)*2 ;<- removed holdup and holddown

[State 8140]
type = VarAdd
triggerall = time > 1
trigger1 = !fvar(39)
trigger1 = root, command = "holdup"
fvar(36) = 10

[State 8140]
type = VarAdd
triggerall = time > 1
trigger1 = !fvar(39)
trigger1 = root, command = "holddown"
fvar(36) = ifelse(fvar(36) >= 10,-10,??)  ;??: subtract -10 from your last palette

Bye!
Re: X-COSTUME Palette Selector v(2.0) 12/7/2013
#44  November 18, 2022, 06:19:25 pm
  • ***
hello, is there a way to change the code to obtain something like this:

- holdfwd, go forward and switch one by one
- holdback, go backward and switch 10 by 10

i don't know if i made myself clear.. :/ :/

thanks

Sorry for necroposting, but I felt it could be useful to post a solution for M206. I've done this way:

Code:
[State 8140]
type = VarAdd
triggerall = time > 1
trigger1 = !fvar(39)
trigger1 = root, command = "holdback" || root, command = "holdfwd" ;<- removed holdup and holddown
fvar(36) = 1-(root, command = "holdback" && facing = 1 || root, command = "holdfwd" && facing = -1)*2 ;<- removed holdup and holddown

[State 8140]
type = VarAdd
triggerall = time > 1
trigger1 = !fvar(39)
trigger1 = root, command = "holdup"
fvar(36) = 10

[State 8140]
type = VarAdd
triggerall = time > 1
trigger1 = !fvar(39)
trigger1 = root, command = "holddown"
fvar(36) = ifelse(fvar(36) >= 10,-10,??)  ;??: subtract -10 from your last palette

Bye!

Sorry @F0b1aZ:, i didn't notice this post since now! Many thanks, i've solved my issue, now it's easier and faster to choose between more than 380 palettes! :D :D