collapse

Author Topic: Wizzy tries characters and coding  (Read 1056 times)

0 Members and 1 Guest are viewing this topic.

Offline WizzyWhipitWonderful

  • Contributor
  • ****
  • Posts: 246
  • Last Login:October 29, 2023, 03:28:16 PM
    • Email
Wizzy tries characters and coding
« on: January 16, 2017, 07:40:02 PM »
I'm trying to code 2 new hypers for Pyron

One where he does a multi-hit air fireballs like cyber akuma, and another where he summons bison to crush them between the enemy.

Any tips on how to start my process?



Offline Cyanide

  • MUGEN Content Architect
  • *****
  • Posts: 813
  • Last Login:March 29, 2019, 06:52:34 AM
    • Mugen Obscurity
Re: Wizzy tries characters and coding
« Reply #1 on: January 17, 2017, 12:52:11 AM »
Look at how something else did it, find the simplest one, copy paste the states in, then try and make it work for you. The important bits are making sure you don't reuse states, variables, or animations that are already in use in your character.

You should be able to create the animations easily enough with fighter factory. Mugen is mostly plugging in values, very little real smarts are required for 95% of it. After you copy in the states from the other character, read through them, and make sure you have everything that is required by that state.

Offline NX-MEN

  • Infinite Loyalist
  • *****
  • Posts: 2765
  • Country: Cyprus cy
  • Last Login:January 06, 2019, 11:31:38 AM
    • Email
Re: Wizzy tries characters and coding
« Reply #2 on: January 17, 2017, 12:42:44 PM »
Good luck on it Wizzy!!  :thumbsup:
 

Offline O Ilusionista

  • Since 1999 and kicking :)
  • IMT Content Architect
  • *
  • Posts: 12458
  • Country: Brazil br
  • Last Login:March 21, 2024, 10:58:34 AM
  • OpenBOR & Mugen addicted
    • BMT - Brazil Mugen Team
    • Email
Re: Wizzy tries characters and coding
« Reply #3 on: January 17, 2017, 03:24:40 PM »
Quote
Mugen is mostly plugging in values, very little real smarts are required for 95% of it.
This.

Quote
One where he does a multi-hit air fireballs like cyber akuma,
Depends oh how you make it. If its a PROJECTILE, you just set PROJHITS to be multiple hits. Then you set PROJMISSTIME to control the delay between the hits.

Quote
projhits = num_hits (int)
Specifies the number of hits that the projectile can impart on an opponent before it is removed. Defaults to 1.

projmisstime = miss_time (int)
If the projectile is configured for multiple hits, miss_time specifies the number of ticks after each hit before the projectile can hit again. Defaults to 0.

Read more here: http://www.elecbyte.com/mugendocs/sctrls.html#projectile

Quote
and another where he summons bison to crush them between the enemy.
You can use a HELPER for that http://www.elecbyte.com/mugendocs/sctrls.html#helper

Good to see you are learning how to code. My best advice is: READ THE MANUAL. There are a lot of info there.

Offline WizzyWhipitWonderful

  • Contributor
  • ****
  • Posts: 246
  • Last Login:October 29, 2023, 03:28:16 PM
    • Email
Re: Wizzy tries characters and coding
« Reply #4 on: January 17, 2017, 03:46:52 PM »
Look at how something else did it, find the simplest one, copy paste the states in, then try and make it work for you. The important bits are making sure you don't reuse states, variables, or animations that are already in use in your character.

You should be able to create the animations easily enough with fighter factory. Mugen is mostly plugging in values, very little real smarts are required for 95% of it. After you copy in the states from the other character, read through them, and make sure you have everything that is required by that state.

Cyanide, thank you for your expertise. I will surely try this.

This.
Depends oh how you make it. If its a PROJECTILE, you just set PROJHITS to be multiple hits. Then you set PROJMISSTIME to control the delay between the hits.

Read more here: http://www.elecbyte.com/mugendocs/sctrls.html#projectile
You can use a HELPER for that http://www.elecbyte.com/mugendocs/sctrls.html#helper

Good to see you are learning how to code. My best advice is: READ THE MANUAL. There are a lot of info there.

Oh, I've been reading and some of it is a little complicated.

Offline O Ilusionista

  • Since 1999 and kicking :)
  • IMT Content Architect
  • *
  • Posts: 12458
  • Country: Brazil br
  • Last Login:March 21, 2024, 10:58:34 AM
  • OpenBOR & Mugen addicted
    • BMT - Brazil Mugen Team
    • Email
Re: Wizzy tries characters and coding
« Reply #5 on: January 18, 2017, 08:05:29 AM »
Quote
Oh, I've been reading and some of it is a little complicated.
Its easier than it looks, I promise you :)

Offline Cyanide

  • MUGEN Content Architect
  • *****
  • Posts: 813
  • Last Login:March 29, 2019, 06:52:34 AM
    • Mugen Obscurity
Re: Wizzy tries characters and coding
« Reply #6 on: January 19, 2017, 01:59:49 AM »
These are a little outdated now in that they're for 1.0 and winmugen but if you go to my site the Narutorials have been surprisingly well received by many people. There is SFF, some AIR, coding punches and a projectile/helper projectile tutorial there.

Offline O Ilusionista

  • Since 1999 and kicking :)
  • IMT Content Architect
  • *
  • Posts: 12458
  • Country: Brazil br
  • Last Login:March 21, 2024, 10:58:34 AM
  • OpenBOR & Mugen addicted
    • BMT - Brazil Mugen Team
    • Email
Re: Wizzy tries characters and coding
« Reply #7 on: January 19, 2017, 07:11:25 AM »
Quote
These are a little outdated now in that they're for 1.0 and winmugen
Projhit and projmiss are outdated? And if a code works for 1.0, its not outdated, since 1.0 its the official stable build.
And you mean these ones? http://network.mugenguild.com/cyanide/

Offline Cyanide

  • MUGEN Content Architect
  • *****
  • Posts: 813
  • Last Login:March 29, 2019, 06:52:34 AM
    • Mugen Obscurity
Re: Wizzy tries characters and coding
« Reply #8 on: January 20, 2017, 12:14:50 AM »
Well, i wrote them, so yes, they are outdated. Mostly from the point of view that i am using FFC which isn't as good as FF3 and looks different and 1.1 and 1.0 both make use of SFFv2 which none of them touch on at all.

Offline WizzyWhipitWonderful

  • Contributor
  • ****
  • Posts: 246
  • Last Login:October 29, 2023, 03:28:16 PM
    • Email
Re: Wizzy tries characters and coding
« Reply #9 on: January 20, 2017, 11:35:21 AM »
Well, i wrote them, so yes, they are outdated. Mostly from the point of view that i am using FFC which isn't as good as FF3 and looks different and 1.1 and 1.0 both make use of SFFv2 which none of them touch on at all.

I'm going to try them out, Cyanide.

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

SPIDER-VERSE THE AMAZING MUGENSTORY©EPISODE 10 "THE OTHERVERSE" 1080P BY REB3LTV by Rage
[March 27, 2024, 02:44:21 PM]


D2TD VS Showcase Thread by D2TD
[March 24, 2024, 11:09:37 AM]


Tree Of Erebus Stage 1.1 & 1.0 by MatreroG
[March 22, 2024, 08:13:48 AM]


.Batzarro's. Sprite Edits by MatreroG
[March 20, 2024, 07:58:08 AM]


World Heroes 2 Shura Stage by Vegaz by LightFlare
[March 19, 2024, 12:44:28 PM]


MOVED: Prepare your ****! ***** Soldier gets his **** ready in MUGEN! by Rage
[March 18, 2024, 11:08:23 AM]


[WIP] Pocket Dimensional Clash 2 by O Ilusionista
[March 14, 2024, 01:34:08 PM]


R.I.P. Akira Toriyama "Dragonball Legend" by Rage
[March 12, 2024, 03:01:39 PM]


DBFZ Rocky Field (noon) by jafar
[March 10, 2024, 11:59:23 PM]


World Heroes 2 Neo Geegus Stage by Vegaz by LightFlare
[March 09, 2024, 11:04:56 AM]

* IMT Calendar

March 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