YesNoOk
avatar

Simple problem Driving me bananas (Read 200 times)

Started by smiley, January 14, 2013, 04:37:43 pm
Share this topic:
Simple problem Driving me bananas
#1  January 14, 2013, 04:37:43 pm
  • avatar
  • *
For some reason I cannot get this command to work.

[Command]
Name = "Uppercut"
command = DF, x
Time = 1

;Uppercut
[State -1, Uppercut]
type = ChangeState
value = 210
triggerall = command = "Uppercut"
trigger1   = statetype = S
trigger1   = ctrl

Bascially want him to do an attack when the DF and button is pressed.
Thanks in advance
Last Edit: January 14, 2013, 04:55:23 pm by smiley
Re: Simple problem Driving me bananas
#2  January 14, 2013, 04:54:55 pm
  • ****
  • Target Acquired.
    • Ukraine
    • mugencoder.com
Try making the command more of a "Fireball" motion like D,DF,F,x or something. Also, try changing the time paramater on your [Command]. Doing that command 1 tick seems impossible to do, unless you're a computer.

-[Все слова это только слова.]-
Re: Simple problem Driving me bananas
#3  January 14, 2013, 04:57:42 pm
  • avatar
  • *
Have tried changing time to 15 and still no luck, can't change to fireball because I am using that also.
Re: Simple problem Driving me bananas
#4  January 14, 2013, 05:06:45 pm
  • ****
  • Target Acquired.
    • Ukraine
    • mugencoder.com
Have tried changing time to 15 and still no luck, can't change to fireball because I am using that also.
I usually add "~" to the beginning of the command (before the first "D"). But, besides that, if you're already using a "Fireball Forward X" or QCF+x motion, then how could you expect this to work. Remap it to something else, since you're using it already. Are you trying to have one command for two different moves? If so, you're going to need some conditional logic in place that's more in depth than a command change.

-[Все слова это только слова.]-
Re: Simple problem Driving me bananas
#5  January 14, 2013, 05:09:16 pm
  • avatar
  • *
I am hoping to have DF, X as an uppercut, and have D, F, x and hadoken.

Hope this makes more sense. Can this be done also ?
Re: Simple problem Driving me bananas
#6  January 14, 2013, 05:16:00 pm
  • ****
  • Target Acquired.
    • Ukraine
    • mugencoder.com
I see. So you want to keep you Hadouken in tact and on QCF+x, but also want your uppercut to happen when you press Down+Forward and then X? Since this seems like a "hold" motion, it you might have more success prepending a "/" (indicating that you hold the command) to the "DF." So, your final execution would be "Hold DF and press x" for your uppercut. Without the slash, you'd have to press them in order pretty quickly, like "DF then X".

-[Все слова это только слова.]-
Re: Simple problem Driving me bananas
#7  January 14, 2013, 05:19:20 pm
  • avatar
  • *
I can't get any movement and button combinations to work, I am not sure why ? My code above is pretty much what I have seen working already ?
Re: Simple problem Driving me bananas
#8  January 14, 2013, 05:21:35 pm
  • *****
  • Most dangerous person in Mugen
    • USA
    • caddie.smeenet.org

  • Online
When you start a match with your character, hold ctrl and press d and see what the white text says when you try to do the move.
Re: Simple problem Driving me bananas
#9  January 14, 2013, 05:24:14 pm
  • ****
  • play more SNK games
    • South Africa
    • www.trinitymugen.net/

  • Online

If you are pressing DF. That should be putting your character in a crouch state right? So doing this might fix the problem.

;Uppercut
[State -1, Uppercut]
type = ChangeState
value = 210
triggerall = command = "Uppercut"
trigger1   = statetype = C
trigger1   = ctrl

Or even this

;Uppercut
[State -1, Uppercut]
type = ChangeState
value = 210
triggerall = command = "Uppercut"
trigger1   = statetype = S || statetype = C
trigger1   = ctrl

Re: Simple problem Driving me bananas
#10  January 14, 2013, 05:30:46 pm
  • avatar
  • *
I changed to ~D, F, X. I also changed to crouch, but I have to mash down and forward and only works sometimes.

Is there something stupid I am doing wrong. Rest of the punches and kicks worked fine, Just F,   or anything like that won't work properly ?
Re: Simple problem Driving me bananas
#11  January 14, 2013, 05:48:19 pm
  • ***
  • You.. ..you're still alive?!
    • Philippines
    • www.dailymotion.com/SeraphsAres2013
Code:
[Command]
Name = "Uppercut"
command = ~D, F, x
Time = 30

;Uppercut
[State -1, Uppercut]
type = ChangeState
value = 210
triggerall = command = "Uppercut"
trigger1 = statetype != A
trigger1 = ctrl

Try extending the time input. If you have a small number in time, the faster you have to press that command. Unless you specifically want to have your uppercut in your crouching state, I recommend the statetype != A trigger. See if that works.

Hope this helps.
Sound Pack Completion: CT=40%, CSE=75%
Working on decoding BBCP files and progressing on other characters (CSE EN).
BlazBlue - Complete Resource Thread
Re: Simple problem Driving me bananas
#12  January 14, 2013, 06:00:46 pm
  • avatar
    • Ireland
    • legend01@gmail.com
Thank you, it works now a lot better, I take it that a Keyboard has Problems doing DF , X motion. But works a lot more then it used to.

"Don't know how to change topic to solved, there is no Box to tick or anything ?"
Re: Simple problem Driving me bananas
#13  January 14, 2013, 06:12:31 pm
  • ****
  • Target Acquired.
    • Ukraine
    • mugencoder.com
There should be some buttons at the very bottom of your topic (not the first post.) One for "Lock" and the other for "Solve."

-[Все слова это только слова.]-