YesNoOk
avatar

Pal FX of Specials in PotS Style (Read 2600 times)

Started by TheDragon, December 02, 2021, 02:10:39 am
Share this topic:
Pal FX of Specials in PotS Style
#1  December 02, 2021, 02:10:39 am
  • **
Hello MUGEN colleagues, this time I bring a new question, and it is ... How can I put the Pal FX of the specials in POTS style? You know when the character turns yellow, can anyone tell me the code? And yes, I tried to copy it and look in some char in POTS style, but the code did not work for me, it only turned white.
 
Can someone help me please?
Last Edit: December 03, 2021, 03:21:11 am by TheDragon
Re: BGPal FX Special PotS
#2  December 02, 2021, 06:50:16 pm
  • **
Someone?
Re: Pal FX of Specials in PotS Style
#3  December 03, 2021, 09:10:23 pm
  • ******
  • Hedgehog Whisperer
  • Red Bull addict
    • Spain
    • xgargoyle.mgbr.net
Don't bump your posts
XGargoyle: Battle posing since 1979
http://xgargoyle.mgbr.net
http://www.pandorabots.com/pandora/talk?botid=e71c0d43fe35093a  <-- Please click that link
http://paypal.me/XGargoyle  <-- Donations welcome!
Re: Pal FX of Specials in PotS Style
#4  December 03, 2021, 10:47:33 pm
  • **
Bump?
Re: Pal FX of Specials in PotS Style
#5  December 04, 2021, 12:48:43 am
  • ***
  • I swear I've been working on Geese all this time.
  • Kind of POTS style editor, except not really.
Hello MUGEN colleagues, this time I bring a new question, and it is ... How can I put the Pal FX of the specials in POTS style? You know when the character turns yellow, can anyone tell me the code? And yes, I tried to copy it and look in some char in POTS style, but the code did not work for me, it only turned white.
 
Can someone help me please?


Are you referring to when the character flashes yellow during an EX move?
Re: Pal FX of Specials in PotS Style
#6  December 04, 2021, 01:42:48 am
  • **
Hello MUGEN colleagues, this time I bring a new question, and it is ... How can I put the Pal FX of the specials in POTS style? You know when the character turns yellow, can anyone tell me the code? And yes, I tried to copy it and look in some char in POTS style, but the code did not work for me, it only turned white.
 
Can someone help me please?


Are you referring to when the character flashes yellow during an EX move?

Exactly, that's what I mean, try to copy some codes from other chars, such as the add and the sinadd but none gave that color, look all over the char but I did not find the code do you know what code it will be so that the character flashes yellow?
Re: Pal FX of Specials in PotS Style
#7  December 04, 2021, 02:31:42 am
  • ***
  • I swear I've been working on Geese all this time.
  • Kind of POTS style editor, except not really.
Exactly, that's what I mean, try to copy some codes from other chars, such as the add and the sinadd but none gave that color, look all over the char but I did not find the code do you know what code it will be so that the character flashes yellow?

I believe what your looking for is something like this:

[State -3, ExFX]
type = varadd
trigger1 = var(25) > 0
var(25) = -1
[State -3, ExFX]
type = varset
trigger1 = (stateno != [1000, 2999]) || movetype = H
var(25) = 0

[State -3, Ex Flash]
type = palfx
trigger1 = !(gametime % 2) && var(25)
time = 1
color = 0
mul = 256, 224, 0
add = 128, 128, 128
ignorehitpause = 1

Namely the state on the bottom.
Re: Pal FX of Specials in PotS Style
#8  December 04, 2021, 04:18:30 am
  • **
Oh, I didn't check in the -3 states I'll try, I'll see if it works, I'll tell you what happens, thanks