YesNoOk
avatar

How to add dream cancels (Read 1184 times)

Started by Omegalord99, June 11, 2008, 07:56:22 pm
Share this topic:
How to add dream cancels
#1  June 11, 2008, 07:56:22 pm
  • avatar
  • **
Ive been bugging Kula trying to figure out how to add Dream Cancel for a friend and can't figure it out. I added in the sprites and animations plus the coding in the cns. But haven't figured what to do for the command(i think its also a part) So how would i fix this? His version he gave me is a fresh Iron Kula.
Re: How to add dream cancels
#2  June 11, 2008, 08:11:06 pm
  • ******
  • [E]
    • Mexico

  • Online
post your code; as in, what you have added.
Re: How to add dream cancels
#3  June 11, 2008, 08:17:40 pm
  • avatar
  • **
In Kula's CNS before State-2
Spoiler, click to toggle visibilty

Kula's move
Spoiler, click to toggle visibilty

CMD
Spoiler, click to toggle visibilty
Re: How to add dream cancels
#4  June 11, 2008, 08:28:26 pm
  • ******
  • [E]
    • Mexico

  • Online
The code looks ok, albeit I disagree a lot with it,it should work. What is exactly happening ?
Re: How to add dream cancels
#5  June 11, 2008, 08:38:06 pm
  • avatar
  • **
When i input her Freeze Pillar Super its supposed to DC into Execution yet it isnt.
Re: How to add dream cancels
#6  June 11, 2008, 08:40:50 pm
  • ******
  • [E]
    • Mexico

  • Online
No, you have to input freeze execution yourself when freeze pillar is on.
Re: How to add dream cancels
#7  June 11, 2008, 08:48:19 pm
  • avatar
  • **
i dont get it what do u mean?
Re: How to add dream cancels
#8  June 11, 2008, 08:57:34 pm
  • ******
  • [E]
    • Mexico

  • Online
modify your cmd code to this.

;Freeze Execution sdm
[State -1,]
type = ChangeState
value = 2200
triggerall = command = "freeze_execution"
triggerall = var(9) = 0
triggerall = power >= 2000
trigger1 = statetype != A
trigger1 = ctrl
trigger2 = stateno = 101
trigger3 = stateno = 200 && time = [6,9]
trigger4 = stateno = 205 && time = [6,9]
trigger5 = stateno = 210 && time = [5,9]
trigger6 = stateno = 220 && time = [13,20]
trigger7 = stateno = 225 && time = [4,6]
trigger8 = stateno = 225 && time = [16,21]
trigger9 = stateno = 235 && time = [12,15]
trigger10 = stateno = 400 && time = [6,8]
trigger11 = stateno = 410 && time = [5,7]
trigger12 = stateno = 430 && time = [9,15]
trigger13 = stateno = 300 && time = [9,13]
trigger14 = stateno = 245 && time = [13,31]
trigger15 = stateno = 2000 && animelemtime(1) > 1 && animelemtime(13) < 0
trigger15 = stateno = 2100 && animelemtime(1) > 1 && animelemtime(24) < 0



;Freeze Execution sdm
[State -1,]
type = ChangeState
value = 2200
triggerall = var(9) = 0
triggerall = power >= 2000
trigger1 = stateno = 2000 && animelemtime(1) > 1 && animelemtime(13) < 0
trigger1 = stateno = 2100 && animelemtime(1) > 1 && animelemtime(24) < 0
Re: How to add dream cancels
#9  June 11, 2008, 09:26:15 pm
  • avatar
  • **
It isnt Dream Cancelling. I think its Execution or something since i did it correctly but its not working.
Re: How to add dream cancels
#10  June 11, 2008, 11:17:09 pm
  • ******
  • [E]
    • Mexico

  • Online
I don't get your latest post... at all.
Re: How to add dream cancels
#11  June 12, 2008, 01:19:51 am
  • avatar
  • **
After the pillar i do Freeze Execution and it isnt cancelling after the pillar.
Re: How to add dream cancels
#12  June 12, 2008, 01:26:45 am
  • ******
  • [E]
    • Mexico

  • Online
delete the var9 lines, there might be something wrong with them.
Re: How to add dream cancels
#13  June 12, 2008, 01:28:31 am
  • avatar
  • **
var(9)=AI
Re: How to add dream cancels
#14  June 12, 2008, 06:29:44 am
  • ******
  • Legendary XIII
  • I am the eye of the storm to come!
    • New Zealand
    • network.mugenguild.com/cyanide/
Bleh, Silly error [E] I blames you, based on his silly error earlier.

From his post. This won't work.
Quote
trigger13 = stateno = 300 && time = [9,13]
trigger14 = stateno = 245 && time = [13,31]
trigger13 = stateno = 2000 && animelemtime(1) > 1 && animelemtime(13) < 0
trigger13 = stateno = 2100 && animelemtime(1) > 1 && animelemtime(24) < 0
You can't be in those 3 states all at once.

Then in yours
Quote
trigger15 = stateno = 2000 && animelemtime(1) > 1 && animelemtime(13) < 0
trigger15 = stateno = 2100 && animelemtime(1) > 1 && animelemtime(24) < 0
2 states.

Try trigger15 and trigger16 instead.


In M.U.G.E.N there is no magic button

They say a little knowledge is a dangerous thing, but it's not one half so bad as a lot of ignorance.
Re: How to add dream cancels
#15  June 12, 2008, 04:07:18 pm
  • avatar
  • **
Bleh, Silly error [E] I blames you, based on his silly error earlier.

From his post. This won't work.
Quote
trigger13 = stateno = 300 && time = [9,13]
trigger14 = stateno = 245 && time = [13,31]
trigger13 = stateno = 2000 && animelemtime(1) > 1 && animelemtime(13) < 0
trigger13 = stateno = 2100 && animelemtime(1) > 1 && animelemtime(24) < 0
You can't be in those 3 states all at once.

Then in yours
Quote
trigger15 = stateno = 2000 && animelemtime(1) > 1 && animelemtime(13) < 0
trigger15 = stateno = 2100 && animelemtime(1) > 1 && animelemtime(24) < 0
2 states.

Try trigger15 and trigger16 instead.

I discovered that all it takes is
trigger15 = stateno = 2000
trigger16 = stateno = 2100

The problem now is

If i delay the pillar it misses how would i make the juggle big enough?
Last Edit: June 12, 2008, 04:22:36 pm by Omegalord99
Re: How to add dream cancels
#16  June 12, 2008, 04:19:36 pm
  • avatar
  • **
Also sorry bout the D,F,D,F mnovements its just to do the super faster. Also it will open a tab/window.
Last Edit: June 12, 2008, 04:23:33 pm by Omegalord99
Re: How to add dream cancels
#17  June 12, 2008, 05:01:01 pm
  • ******
  • [E]
    • Mexico

  • Online
Edit diana's animation in fighter factory and make her red box cover 4 screens.
Re: How to add dream cancels
#18  June 13, 2008, 12:02:02 am
  • avatar
  • **
Where should the boxes be? I want to try and be as accurate as possible for a XI version for my friend.

Re: How to add dream cancels
#19  June 13, 2008, 12:38:25 am
  • ******
  • [E]
    • Mexico

  • Online
then elave it as is, it is better to use the kof2002 boxes than to guess the xi ones.
Re: How to add dream cancels
#20  June 13, 2008, 03:01:42 pm
  • avatar
  • **
Then how would i view the CLSN's on KOF?