YesNoOk

Show content

This section allows you to browse the content for this member. Note that you can only see content for which you have sufficient viewing permissions.


nekomaster1000 is Offline
Contact nekomaster1000:

nekomaster1000

User

Messages by nekomaster1000

    

Re: AI Gets stuck in the air/ground after performing some moves

 January 30, 2020, 12:40:52 am View in topic context
avatar  Posted by nekomaster1000  in AI Gets stuck in the air/ground after performing some moves (Started by nekomaster1000 January 29, 2020, 10:15:39 pm
 Board: M.U.G.E.N Development Help

Only with the AI, to my knowledge? I haven't been able to replicate it myself, at least - I assume it happens because the AI are executing commands so quickly something breaks.
    

AI Gets stuck in the air/ground after performing some moves

 January 29, 2020, 10:15:39 pm View in topic context
avatar  Posted by nekomaster1000  in AI Gets stuck in the air/ground after performing some moves (Started by nekomaster1000 January 29, 2020, 10:15:39 pm
 Board: M.U.G.E.N Development Help

Sometimes my AI will either perform a move or get hit while in the air, and will act like the air is the new "floor" until it either jumps or gets knocked out of the air by an attack, and I have no idea what causes this to happen. Similar happens with the ground occasionally (usually via the airdash attack). Am I missing any particular triggers that'd help prevent this? Should I dump all the AI code? I'll give an example of what three states looks like.

[State -1, AI, Strong Kick]
type = ChangeState
value = 250
triggerall = roundstate = 2
triggerall = AILevel
triggerall = p2statetype != L
triggerall = p2bodydist x = [0,40]
triggerall = random < 30
triggerall = p2statetype != A
trigger1 = ctrl = 1

[State -1, AI, Jump Strong Punch]
type = ChangeState
value = 620
triggerall = roundstate = 2
triggerall = statetype = A
triggerall = p2statetype != L
triggerall = p2bodydist x = [0,40]
triggerall = random < 50
trigger1 = ctrl = 1

[State -1, AI, Airdash X]
type = ChangeState
value = 270
triggerall = roundstate = 2
triggerall = AILevel
triggerall = statetype = A
triggerall = p2statetype != L
triggerall = random < 60
triggerall = p2bodydist x = [40,400]
trigger1 = ctrl = 1
    

Re: Can someone tell me how to create the stun damage health?

 January 29, 2020, 06:43:10 pm View in topic context
avatar  Posted by nekomaster1000  in Can someone tell me how to create the stun damage health? (Started by Fluttershy555 January 09, 2020, 01:47:15 pm
 Board: M.U.G.E.N Development Help

May I ask how?
    

Re: Implementing a momentary pause when landing from a ground-pound attack

 January 29, 2020, 06:39:33 pm View in topic context

ALRIGHT, had someone look at it and it was just down to me being a massive dummy as usual :P I fixed it by setting the base attack's physics to N and removing the animelem trigger on the ChangeState :P It works perfectly, thanks for sharing the code!
    

Re: Implementing a momentary pause when landing from a ground-pound attack

 January 29, 2020, 12:48:20 am View in topic context

For whatever reason, inserting this code and changing the appropriate numbers doesn't seem to crack it :/ Thank you for sharing though! I'm sure it'll come in handy for someone who can use it :>
I've tried numerous seemingly perfectly good states now, I feel like the best thing would be to just send the character to someone for diagnostics lol
Any takers~?
    

Implementing a momentary pause when landing from a ground-pound attack

 January 28, 2020, 02:04:40 am View in topic context

Hello ladies, gents and others, I've been trying to implement is so that my character's ground-pound attack isn't spammable, but everything I've been trying hasn't working. This includes changeanim/changestate sctrls in the attack's state itself, using AssertSpecial's NoWalk trigger, along with trying to alter State 52 (Jump Land.)

Specifically, I was given advice to alter the Ctrlset in State 52 to act like this since it is a hard-coded state (my ground-pound state is 650.)

[State 52, 3]
type = CtrlSet
Trigger1 = (prevstateno != 650 && time >= 3) || (prevstateno = 650 && time >= 30)
value = 1


This hasn't been working however, along with cond/ifelse and multiple trigger1/2 variants of this input. Quite frankly I'm lost. Any ideas?
(If you need a frame of reference, SF3's Hugo, when he lands, cannot move for a second upon landing. I want something like this for my character.)