collapse

Author Topic: Easy multiple Intros/Winposes  (Read 1865 times)

0 Members and 1 Guest are viewing this topic.

Offline O Ilusionista

  • Since 1999 and kicking :)
  • IMT Content Architect
  • *
  • Posts: 12459
  • Country: Brazil br
  • Last Login:April 27, 2024, 11:21:03 AM
  • OpenBOR & Mugen addicted
    • BMT - Brazil Mugen Team
    • Email
Easy multiple Intros/Winposes
« on: June 02, 2008, 12:45:13 PM »
I know that many people already knows this, but this could helps the new creators (and why not the old ones too?) to have multiple win or intro poses

for Exemple, the win poses

Quote
;---------------------------------------------------------------------------
; Win state decider
; CNS difficulty: basic
[Statedef 180]
type = S

[state 190, 5]
type = changestate
trigger1 = 1
value = 18000+(random%2)

As you can see, with this small code you can make your char goes to any state from 180 to 184. Because when the var(0) value is, for example, 2, the result of 180+(random% is equal to 182.

The same could be aplied to the intro poses...just put this code on the state 190 and change the value to 190+var(0).

A small trick

If you wann more than 4 intro poses, you have to do this trick. On mugen, you can choose the states from 191-194 to intro, because the state 195 is for taunt.

So, the trick is to make states of higher numbers. On Spec Ops, we use the formula 190 * 100, so the intro states will be 19000,19001,19002 and so on.

You just need to change this part of code:

Quote
[state 190, 5]; makes the character goes to the desided state
type = changestate
trigger1 = !time
19000+(random%2)*100

The same goes to the intro states

 ::salute::
« Last Edit: December 30, 2012, 09:02:39 AM by ومخادع »



Offline Fallen_Angel

  • Global Moderator (out of the office)
  • *****
  • Posts: 1358
  • Last Login:July 04, 2012, 03:11:05 PM
    • Email
Re: Easy multiple Intros/Winposes
« Reply #1 on: June 03, 2008, 10:08:57 AM »
Quote
So, the trick is to make states of higher numbers. On Spec Ops, we use the formula 190 + 100, so the intro states will be 19000,19001,19002 and so on.

O, change the + for a * ;)

The same can be made instead of using a varrandom, just use a random%4 (for 4 intros), the random will use values from  0 to 4


sig made by shullbocka

Offline O Ilusionista

  • Since 1999 and kicking :)
  • IMT Content Architect
  • *
  • Posts: 12459
  • Country: Brazil br
  • Last Login:April 27, 2024, 11:21:03 AM
  • OpenBOR & Mugen addicted
    • BMT - Brazil Mugen Team
    • Email
Re: Easy multiple Intros/Winposes
« Reply #2 on: June 03, 2008, 10:46:05 AM »
Quote
So, the trick is to make states of higher numbers. On Spec Ops, we use the formula 190 + 100, so the intro states will be 19000,19001,19002 and so on.

O, change the + for a * ;)

The same can be made instead of using a varrandom, just use a random%4 (for 4 intros), the random will use values from  0 to 4

Its already a "*", check the code :) I've made wrong just on explanation :)

About the random%4: I know it, we use this code to randomize the explods. But you're stuck on 4 states, unless you make this:

Quote
[state 190, 5]; makes the character goes to the desided state
type = changestate
trigger1 = 1
value = 19000+(random%2)*100

Now that works :)
« Last Edit: June 03, 2008, 10:51:36 AM by O Ilusionista »

Offline Yuri Jacobs

  • Kyokugen Innovator & Master
  • Global Moderator
  • *
  • Posts: 1532
  • Country: United States us
  • Last Login:May 29, 2019, 10:24:40 PM
  • I'm ready to fight!
    • BitChute
Re: Easy multiple Intros/Winposes
« Reply #3 on: June 06, 2008, 06:59:07 PM »
So, which characters can use this code without messing that certain character's files up?

Offline MirageAtoli

  • Infinity Faithful
  • ****
  • Posts: 584
  • Last Login:May 13, 2011, 03:25:23 AM
  • Oh, my Paws and Whiskers!
Re: Easy multiple Intros/Winposes
« Reply #4 on: June 21, 2008, 02:07:23 AM »
The same can be made instead of using a varrandom, just use a random%4 (for 4 intros), the random will use values from  0 to 4

Modulo 4 would actually return 0-3 and is not inclusive of 4.

Offline O Ilusionista

  • Since 1999 and kicking :)
  • IMT Content Architect
  • *
  • Posts: 12459
  • Country: Brazil br
  • Last Login:April 27, 2024, 11:21:03 AM
  • OpenBOR & Mugen addicted
    • BMT - Brazil Mugen Team
    • Email
Re: Easy multiple Intros/Winposes
« Reply #5 on: June 21, 2008, 02:21:07 AM »
0-3 means 4 intros.

Offline DARKTALBAIN

  • " STAR "
  • Global Moderator (out of the office)
  • *****
  • Posts: 7518
  • Last Login:March 15, 2011, 07:49:36 PM
  • Anyone have some pound cake?
    • Infinitywiki DARKTALBAIN'S page
Re: Easy multiple Intros/Winposes
« Reply #6 on: June 22, 2008, 07:48:52 PM »
This is very usefull info seeing that Mu next character is going to have a bunch of intros & winposes .

 ^^(PM)^


Quote from: Scar
Mugen, some choose to create and some choose to criticize.^-^


(click to show/hide)

Offline O Ilusionista

  • Since 1999 and kicking :)
  • IMT Content Architect
  • *
  • Posts: 12459
  • Country: Brazil br
  • Last Login:April 27, 2024, 11:21:03 AM
  • OpenBOR & Mugen addicted
    • BMT - Brazil Mugen Team
    • Email
Re: Easy multiple Intros/Winposes
« Reply #7 on: June 22, 2008, 07:59:04 PM »
heheheh for me its even better, since Anita have more than 20 intro and winposes :)

Offline The Great Matsutzu

  • Global Moderator (out of the office)
  • *****
  • Posts: 559
  • Last Login:April 17, 2009, 10:03:33 AM
Re: Easy multiple Intros/Winposes
« Reply #8 on: June 22, 2008, 09:37:08 PM »
heheheh for me its even better, since Anita have more than 20 intro and winposes :)

Wow, that's a lot of winposes and intro's. That wlll certainly be impressive to see. :)


Offline alcoholical

  • Initiate
  • **
  • Posts: 37
  • Last Login:July 11, 2008, 05:12:43 PM
    • Email
Re: Easy multiple Intros/Winposes
« Reply #9 on: July 06, 2008, 10:18:01 PM »
i cant even do my second intro iz animation 191 when i inserted it comesz asza a 190 def but anim 191 but it wont work @#$% frustrating

Offline pmc1416

  • Initiate
  • **
  • Posts: 139
  • Last Login:August 14, 2013, 10:05:12 PM
  • Kyo is the crap
    • www.youtube.com/pmc1416
    • Email
Re: Easy multiple Intros/Winposes
« Reply #10 on: July 06, 2008, 10:23:03 PM »
need 2 know lol  \-/o
Shinrahunter GOOD looks on my Custom sig and Av
PMC Team Adolescentz. Leader KYO.. members. Hayato . Rock . Sakura. Guy . Yun & yang.[/url

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

* IMT Calendar

April 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

SimplePortal 2.3.5 © 2008-2012, SimplePortal