collapse

Author Topic: Super Jumps?  (Read 747 times)

0 Members and 1 Guest are viewing this topic.

animugen

  • Guest
Super Jumps?
« on: March 16, 2008, 01:14:45 AM »
How do you enable stages to have super jumping?And how do you enable non MVC style characters super jumping like Youkai's Naruto and Sasuke?I hope someone could tell me.



Offline davismaximus

  • Initiate
  • **
  • Posts: 113
  • Last Login:January 02, 2015, 12:49:27 AM
Re: Super Jumps?
« Reply #1 on: March 16, 2008, 04:29:11 AM »

animugen

  • Guest
Re: Super Jumps?
« Reply #2 on: March 16, 2008, 12:31:42 PM »
Hey thanks loads man.I owe you. :)

Offline davismaximus

  • Initiate
  • **
  • Posts: 113
  • Last Login:January 02, 2015, 12:49:27 AM
Re: Super Jumps?
« Reply #3 on: March 16, 2008, 01:10:09 PM »
No problem  :thumbsup:

Offline Tenspeed

  • Infinity Faithful
  • ****
  • Posts: 2459
  • Last Login:February 23, 2014, 07:33:54 PM
  • I f**k*** <3 Capcom!
    • Email
Re: Super Jumps?
« Reply #4 on: March 16, 2008, 07:14:28 PM »
tell me if that stage one actualyl works, and then tell me what you did, because I tried it  and was having a hell of a time.

Offline malisiousjoe

  • Infinity Faithful
  • ****
  • Posts: 1128
  • Last Login:November 27, 2011, 10:33:23 PM
  • Stop your crying!!!
Re: Super Jumps?
« Reply #5 on: March 16, 2008, 08:30:50 PM »
Sometime just changing the boundhigh does the trick ;).

Thanks DG!

animugen

  • Guest
Re: Super Jumps?
« Reply #6 on: March 16, 2008, 08:50:12 PM »
I'm having issues too.It worked for the stages but the problem was that when the character is in the air He or She would start having afterimages until he or she lands.And I tried enabling a super jump for big the cat.But it didn't work.I suck BADLY at coding I mean REAL badly.I look at the coding and I'm like WTF?

Offline Fallen_Angel

  • Global Moderator (out of the office)
  • *****
  • Posts: 1358
  • Last Login:July 04, 2012, 03:11:05 PM
    • Email
Re: Super Jumps?
« Reply #7 on: March 16, 2008, 10:35:08 PM »
You shouldn't get afterimages unless the char has that code on the statedef 50.

To make sure the code work, check that the stadef  and the comand that you are using doesn't exist


sig made by shullbocka

animugen

  • Guest
Re: Super Jumps?
« Reply #8 on: March 16, 2008, 11:00:36 PM »
Really?Well how do I enable the coding for the super jumping because I saw the tutorial you put up.But I have no idea where in the CNS and CMD files to put it.Do you know where?And do I paste it or do I have to type it?

Offline Fallen_Angel

  • Global Moderator (out of the office)
  • *****
  • Posts: 1358
  • Last Login:July 04, 2012, 03:11:05 PM
    • Email
Re: Super Jumps?
« Reply #9 on: March 17, 2008, 12:20:43 AM »
change the xxx for numbers and add it wherever you want on the cns and cmd, just make sure to put everything on the proper place....but fisrt check if the numer you want to use doesn't exist already


sig made by shullbocka

animugen

  • Guest
Re: Super Jumps?
« Reply #10 on: March 17, 2008, 02:20:36 AM »
How will I know if it's in the proper place?Can you tell me where the proper place is?Or what it is.Or show me an example char's CNS and CMD file and place it so I'd know what your talking about.

Offline Fallen_Angel

  • Global Moderator (out of the office)
  • *****
  • Posts: 1358
  • Last Login:July 04, 2012, 03:11:05 PM
    • Email
Re: Super Jumps?
« Reply #11 on: March 17, 2008, 10:41:26 AM »
How will I know if it's in the proper place?Can you tell me where the proper place is?Or what it is.Or show me an example char's CNS and CMD file and place it so I'd know what your talking about.

Its easier to edit a char using Fighter Factory, because you open it and you can see wich parts are the cns, and wich are the cmd.

The cns, its where all the constants are coded

The cmd, is the command section, where you create the combinations of buttons, and relate them with the cns, by picking the number of the statedef


sig made by shullbocka

Offline ClubSyN-X-TReME

  • Character and Interactive Stage Specialist
  • Club Syndicate Admin
  • *
  • Posts: 1641
  • Last Login:July 28, 2014, 06:54:54 AM
    • Club SyN -X-treme
Re: Super Jumps?
« Reply #12 on: March 17, 2008, 11:10:26 AM »
If needed I can do a universal code using required character frames to make all characters super jump possible.

animugen

  • Guest
Re: Super Jumps?
« Reply #13 on: March 17, 2008, 02:34:39 PM »
So this below goes to CMD?

[Command]
name = "DU"
command = D, U
time = 10

and the other one below goes to CNS?

[State -1, super jump ]
type = ChangeState
value = xxx
trigger1 = command = "DU"
trigger1 = ctrl ; these means that you can make the move when you control the char
trigger1 = statetype != A ; these is to make that you cant use the superjump while you are in the air
; If you want to make a launcher you can use these
trigger2 = (stateno = yyy) && (movehit) && (command = "holdup") ;yyy

Or do both of them go to both the CNS and CMD?

Offline ClubSyN-X-TReME

  • Character and Interactive Stage Specialist
  • Club Syndicate Admin
  • *
  • Posts: 1641
  • Last Login:July 28, 2014, 06:54:54 AM
    • Club SyN -X-treme
Re: Super Jumps?
« Reply #14 on: March 17, 2008, 02:43:35 PM »
So this below goes to CMD?

[Command]
name = "DU"
command = D, U
time = 10

and the other one below goes to CNS?

[State -1, super jump ]
type = ChangeState
value = xxx
trigger1 = command = "DU"
trigger1 = ctrl ; these means that you can make the move when you control the char
trigger1 = statetype != A ; these is to make that you cant use the superjump while you are in the air
; If you want to make a launcher you can use these
trigger2 = (stateno = yyy) && (movehit) && (command = "holdup") ;yyy

Or do both of them go to both the CNS and CMD?

the first part goes in the top of the commands in the directional triggers are normally at and the bottom one goes into the cns portion of the commands under statedef -1

animugen

  • Guest
Re: Super Jumps?
« Reply #15 on: March 17, 2008, 03:12:30 PM »
I'm still having trouble catching on.Can someone show me an example character's CNS and CMD of where they go.I'm still at a loss.I have to see it rather than read it or hear it.

Offline Fallen_Angel

  • Global Moderator (out of the office)
  • *****
  • Posts: 1358
  • Last Login:July 04, 2012, 03:11:05 PM
    • Email
Re: Super Jumps?
« Reply #16 on: March 17, 2008, 08:51:17 PM »
I'm still having trouble catching on.Can someone show me an example character's CNS and CMD of where they go.I'm still at a loss.I have to see it rather than read it or hear it.

open the kfm...it has it all....I cannot show it in another way


sig made by shullbocka

Offline Tenspeed

  • Infinity Faithful
  • ****
  • Posts: 2459
  • Last Login:February 23, 2014, 07:33:54 PM
  • I f**k*** <3 Capcom!
    • Email
Re: Super Jumps?
« Reply #17 on: March 17, 2008, 09:19:34 PM »
I'm having issues too.It worked for the stages but the problem was that when the character is in the air He or She would start having afterimages until he or she lands.And I tried enabling a super jump for big the cat.But it didn't work.I suck BADLY at coding I mean REAL badly.I look at the coding and I'm like WTF?

this is the EXACT problem I was having. the afterimages are also restricted to ONLY the part of the stage that I edited.

Offline Fallen_Angel

  • Global Moderator (out of the office)
  • *****
  • Posts: 1358
  • Last Login:July 04, 2012, 03:11:05 PM
    • Email
Re: Super Jumps?
« Reply #18 on: March 17, 2008, 10:01:20 PM »
I'm having issues too.It worked for the stages but the problem was that when the character is in the air He or She would start having afterimages until he or she lands.And I tried enabling a super jump for big the cat.But it didn't work.I suck BADLY at coding I mean REAL badly.I look at the coding and I'm like WTF?

this is the EXACT problem I was having. the afterimages are also restricted to ONLY the part of the stage that I edited.

The problem is that the stage doesn't have anything on it, so it copies the first image that you put on that blank space


sig made by shullbocka

animugen

  • Guest
Re: Super Jumps?
« Reply #19 on: March 17, 2008, 10:29:21 PM »
Alright.Thanks.I'll look up KFM's Files.

Offline Tenspeed

  • Infinity Faithful
  • ****
  • Posts: 2459
  • Last Login:February 23, 2014, 07:33:54 PM
  • I f**k*** <3 Capcom!
    • Email
Re: Super Jumps?
« Reply #20 on: March 20, 2008, 08:03:13 PM »
I'm having issues too.It worked for the stages but the problem was that when the character is in the air He or She would start having afterimages until he or she lands.And I tried enabling a super jump for big the cat.But it didn't work.I suck BADLY at coding I mean REAL badly.I look at the coding and I'm like WTF?

this is the EXACT problem I was having. the afterimages are also restricted to ONLY the part of the stage that I edited.

The problem is that the stage doesn't have anything on it, so it copies the first image that you put on that blank space

I could have sworn that I filled it in with the paint bucket tool when I did it, but I will go have another look. thanks.

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

Classic VS : Athena by ELECTRO
[May 10, 2024, 02:44:09 PM]


Ballroom Hallway (1.1 Only/AIGS) by Vegaz by LightFlare
[May 09, 2024, 11:53:48 AM]


Neon Light Force Demo by kyoman
[May 08, 2024, 12:50:05 PM]


D2TD VS Showcase Thread by D2TD
[May 05, 2024, 10:08:50 AM]


Lasombra's IKEMEN Go Interactive Stages' WIP Topic and Releases by Lasombra Demon
[April 21, 2024, 12:09:20 PM]


Ultimate E. Honda + stage by ELECTRO
[April 18, 2024, 09:47:24 PM]


Sunset Beach (1.1 Only/AIGS) by Vegaz by LightFlare
[April 16, 2024, 06:55:00 PM]


Wonder Twins 2.0 by brucewayne74, Shining and Skhsato123 by brucewayne74
[April 05, 2024, 06:07:48 PM]


X-Men Training Room (Bright & Dark) Stage 1.1 & 1.0 by MatreroG
[April 05, 2024, 10:55:29 AM]


[WIP] Pocket Dimensional Clash 2 by O Ilusionista
[April 01, 2024, 11:03:03 PM]

* IMT Calendar

May 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 31

SimplePortal 2.3.5 © 2008-2012, SimplePortal