collapse

Author Topic: Neo Rose help  (Read 541 times)

0 Members and 1 Guest are viewing this topic.

Offline Kev The Galaxybender

  • Infinity Faithful
  • ****
  • Posts: 973
  • Country: United States us
  • Last Login:November 29, 2022, 03:38:40 PM
    • Email
Neo Rose help
« on: January 19, 2008, 02:38:42 PM »
Her Aura Soul Throw super. She's able to do it in the air and she's not supposed to, how do I make it to where this move can only be done on the ground? Here is some of the code......


;Aura Soul Throw
[state -1, go]
type = changestate
value = 3100
triggerall = command = "qcf_xy"
triggerall = power >= 1000
triggerall = statetype !=a
trigger1 = ctrl
trigger2 = stateno = [200,1399]
trigger2 = stateno != [800,899]

help please



Offline shootYr.

  • [Magnum]
  • Contributor
  • ****
  • Posts: 1112
  • Last Login:September 11, 2012, 07:27:16 PM
  • What're you gonna do to me?...
Re: Neo Rose help
« Reply #1 on: January 19, 2008, 03:34:55 PM »
Her Aura Soul Throw super. She's able to do it in the air and she's not supposed to, how do I make it to where this move can only be done on the ground? Here is some of the code......


;Aura Soul Throw
[state -1, go]
type = changestate
value = 3100
triggerall = command = "qcf_xy"
triggerall = power >= 1000
triggerall = statetype !=a
trigger1 = ctrl
trigger2 = stateno = [200,1399]
trigger2 = stateno != [800,899]

help please
try
[state -1, go]
type = changestate
value = 3100
triggerall = command = "qcf_xy"
triggerall = power >= 1000
triggerall = statetype !=a
triggerall = statetype = s
trigger1 = ctrl
trigger2 = stateno = [200,1399]
trigger2 = stateno != [800,899]


Offline Kev The Galaxybender

  • Infinity Faithful
  • ****
  • Posts: 973
  • Country: United States us
  • Last Login:November 29, 2022, 03:38:40 PM
    • Email
Re: Neo Rose help
« Reply #2 on: January 19, 2008, 05:47:55 PM »
adding the trigger for statetype = s didn't work, any other suggestions?

Offline Warcueid

  • Forum Member
  • ***
  • Posts: 469
  • Last Login:August 25, 2024, 12:27:39 PM
Re: Neo Rose help
« Reply #3 on: January 19, 2008, 06:50:08 PM »
triggerall = statetype !=a <-----put S instead of a, if that doesn't work, make sure it matches in the cns too.

edit: cns, lol, I need to stop munching on candy. also delete the line you just added.
« Last Edit: January 19, 2008, 06:57:03 PM by Warcueid »

Offline shootYr.

  • [Magnum]
  • Contributor
  • ****
  • Posts: 1112
  • Last Login:September 11, 2012, 07:27:16 PM
  • What're you gonna do to me?...
Re: Neo Rose help
« Reply #4 on: January 19, 2008, 09:06:03 PM »
triggerall = statetype !=a <-----put S instead of a, if that doesn't work, make sure it matches in the cns too.

edit: cns, lol, I need to stop munching on candy. also delete the line you just added.

You Put An "S" Instead Of "A" Then MUGEN Translates It To:
Triggerall = Statetype Not Equal  Standing.

Offline Kev The Galaxybender

  • Infinity Faithful
  • ****
  • Posts: 973
  • Country: United States us
  • Last Login:November 29, 2022, 03:38:40 PM
    • Email
Re: Neo Rose help
« Reply #5 on: January 19, 2008, 10:42:50 PM »
well what to do?

Offline Fallen_Angel

  • Global Moderator (out of the office)
  • *****
  • Posts: 1358
  • Last Login:July 04, 2012, 03:11:05 PM
    • Email
Re: Neo Rose help
« Reply #6 on: January 19, 2008, 10:57:55 PM »
using a triggerall = statetype != a && statetype = s   should do the job...but if that doesnt work, you coud use a triggerall = prevstateno != 50 ; means that these cant be activated if the previous statedef is the jumping statedef


sig made by shullbocka

Offline Kev The Galaxybender

  • Infinity Faithful
  • ****
  • Posts: 973
  • Country: United States us
  • Last Login:November 29, 2022, 03:38:40 PM
    • Email
Re: Neo Rose help
« Reply #7 on: January 19, 2008, 11:15:36 PM »
neither worked

Offline shootYr.

  • [Magnum]
  • Contributor
  • ****
  • Posts: 1112
  • Last Login:September 11, 2012, 07:27:16 PM
  • What're you gonna do to me?...
Re: Neo Rose help
« Reply #8 on: January 19, 2008, 11:44:39 PM »
What  If You Change Triggerall To Trigger1 or 2?

Offline Kev The Galaxybender

  • Infinity Faithful
  • ****
  • Posts: 973
  • Country: United States us
  • Last Login:November 29, 2022, 03:38:40 PM
    • Email
Re: Neo Rose help
« Reply #9 on: January 20, 2008, 12:31:36 AM »
still no good :(

Offline Fallen_Angel

  • Global Moderator (out of the office)
  • *****
  • Posts: 1358
  • Last Login:July 04, 2012, 03:11:05 PM
    • Email
Re: Neo Rose help
« Reply #10 on: January 20, 2008, 09:35:51 AM »
What  If You Change Triggerall To Trigger1 or 2?
If you want to limit an action the triggerall works better than a trigger1... the triggerall means, that you can or can't make the move unless that restriction or action has been done

still no good :(

Thats weird it should have worked....maybe you are changing these on the wrong chnagestate


sig made by shullbocka

Offline Kev The Galaxybender

  • Infinity Faithful
  • ****
  • Posts: 973
  • Country: United States us
  • Last Login:November 29, 2022, 03:38:40 PM
    • Email
Re: Neo Rose help
« Reply #11 on: January 20, 2008, 01:52:36 PM »
I think I fixed it. For some reason when the code is normal like this....


;Aura Soul Throw
[state -1, go]
type = changestate
value = 3100
triggerall = command = "qcf_xy"
triggerall = power >= 1000
triggerall = statetype !=a
trigger1 = ctrl
trigger2 = stateno = [200,1399]
trigger2 = stateno != [800,899]

she can only do it in the air after a soul spark is done, and soul spark doesn't even have to make any contact, it just has to be done in the air. so I did this......

;Aura Soul Throw
[state -1, go]
type = changestate
value = 3100
triggerall = command = "qcf_xy"
triggerall = power >= 1000
triggerall = statetype !=a
trigger1 = ctrl
trigger2 = stateno = [200,1399]
trigger2 = stateno != [800,899]
trigger2 = movecontact

and now she can't do it in the air. You never could cancel into aura soul throw on the ground from a standing soul spark, so now when in the air, when the soul spark is done, aura soul throw is only able to be done after the soul spark hits, but aura soul throw can't be cancel from soul spark on the ground or in the air. So the move is sotra fixed, aura soul throw doesn't happen in the air, not even after an air soul spark hit or miss
« Last Edit: January 20, 2008, 01:54:54 PM by Toph The Earthbender »

Tags:
 


* IMT Facebook

Help us by Donating!

IMT Discord

Join us at our Discord! Click the image below!

* IMT Shoutbox

Sorry, this shoutbox does not exist.

* Recent Posts

Barkley Shut Up and Jam! Stages by Vegaz by LightFlare
[November 12, 2024, 11:26:21 AM]


[BOR] _Avengers United Battle Force_ by O Ilusionista
[November 11, 2024, 12:35:24 PM]


Eternal Lament Stage 1.1 & 1.0 by O Ilusionista
[November 11, 2024, 12:34:54 PM]


MatreroG's Stages W.I.P. Concepts by MatreroG
[November 11, 2024, 07:00:56 AM]


Marvel vs. Capcom: Eternity of Heroes REMAKE Game Update 1.3.0 - N.A.O.H. by ExShadow
[November 02, 2024, 04:54:41 AM]


Spooky House(1.1 Only/AIGS) by Vegaz by LightFlare
[October 31, 2024, 11:31:36 AM]


Rooftop Skyline(1.1 Only/AIGS) by Vegaz by LightFlare
[October 21, 2024, 12:13:37 PM]


Secluded Base(1.1 Only/AIGS) by Vegaz by LightFlare
[October 17, 2024, 01:21:06 PM]


Ultimate Balrog + stage by ELECTRO
[October 17, 2024, 05:40:31 AM]


Classic VS : Balrog by ELECTRO
[October 08, 2024, 04:35:53 PM]

* IMT Calendar

November 2024
Sun Mon Tue Wed Thu Fri Sat
1 2
3 4 5 6 7 8 9
10 11 12 13 [14] 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30

SimplePortal 2.3.5 © 2008-2012, SimplePortal