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.

*
Zankai99 is Offline
Contact Zankai99:

Zankai99

User

Messages by Zankai99

    

Re: How to turn varadd off?

 January 25, 2014, 06:35:09 pm View in topic context
 Posted by Zankai99  in How to turn varadd off? (Started by Zankai99 January 25, 2014, 06:24:03 pm
 Board: M.U.G.E.N Development Help

Well you can't exactly "turn it off", you can however have it stop adding. I'm not sure how your move works, or what it's supposed to do but you can change the trigger to "time = 0". Maybe that'll help?

I was trying to learn vars and all and the moves pretty simple like when i press "x" sasuke turns to his sharingan form and when i press "x" again he goes back to normal
but i pretty much screwed it up.
    

How to turn varadd off?

 January 25, 2014, 06:24:03 pm View in topic context
 Posted by Zankai99  in How to turn varadd off? (Started by Zankai99 January 25, 2014, 06:24:03 pm
 Board: M.U.G.E.N Development Help

So basically my var add on code for a sharingan mode is :
[State 0, VarAdd] ;Sharingan on
type = VarAdd
trigger1 = !var(10)
v = 10    ;fv =
value = 1
so how do i turn it off now?
    

MOVED: It's for those who has this problem but 90% don't have them so check it out

 January 12, 2014, 12:36:52 pm View in topic context

This topic has been moved to Recycle Bin.

[iurl]http://mugenguild.com/forum/topics/its-those-who-has-this-problem-90-dont-have-them-so-check-it-156529.0[/iurl].html
    

Re: Mugen code help

 December 30, 2013, 08:14:58 am View in topic context
 Posted by Zankai99  in Mugen code help (Started by Zankai99 December 29, 2013, 03:43:02 pm
 Board: M.U.G.E.N Development Help

Something like this should go into development help.

Code:
[state 1234, sound]
type = playsnd
trigger1 = Anim = 1
trigger1 = AnimElem = 1
value = 1, 2
channel = 0
loop = 1

And to stop the sound from looping

Code:
[state 1234, stop-sound]
type = stopsnd
triggerall = Time > 0
trigger1 = command != "hold_start"
channel = 0

nope that didn't work :) anyways thnx found it on my own :D
    

Mugen code help

 December 29, 2013, 03:43:02 pm View in topic context
 Posted by Zankai99  in Mugen code help (Started by Zankai99 December 29, 2013, 03:43:02 pm
 Board: M.U.G.E.N Development Help

As you can see i'm a new user and i'm new in coding as well,so here is the problem
i want to make a specific sound to keep repeating when i continue to hold the "start" button.
For example goku charging up so i wont the charge wave sound and goku screaming "ahhhhhhhhhh" to continue as long as i hold "start" and i did figure out how to stop it when i release the "start" button i just got stuck in the repeating part,so mind helping me anyone?