The Mugen Multiverse
Would you like to react to this message? Create an account in a few clicks or log in to continue.


Welcome!!! - Bienvenidos!!! - ( We hope you will get involved in the MMV Community which is dedicated to having fun with Mugen ) - Bienvenidos!!! - Welcome!!!
 
PortalHomeFAQMemberlistLatest imagesUsergroupsSearchRegisterComic WIP TrackerDownloadsLog inChat
Website Navigation Help
Translate the Website
Log in
Username:
Password:
Log in automatically: 
:: I forgot my password
Latest topics
» Crossover Battles in MUGEN
The helper is a barrier that the opponent can't go through Emptyby Doom Today at 5:58 pm

» DC Vs Marvel dimensional war
The helper is a barrier that the opponent can't go through Emptyby Doom Today at 5:56 pm

» Classic VS : Athena
The helper is a barrier that the opponent can't go through Emptyby Doom Today at 5:50 pm

» Soul Calibur Edits
The helper is a barrier that the opponent can't go through Emptyby Doom Today at 5:49 pm

Special Features at MMV




Chat on MMV w/ Discord

Video Content Creation Reference
Search
 
 

Display results as :
 
Rechercher Advanced Search

 

 The helper is a barrier that the opponent can't go through

Go down 
2 posters
AuthorMessage
Mega_Man

Mega_Man


Posts : 148
Join date : 2016-01-23

The helper is a barrier that the opponent can't go through Empty
PostSubject: The helper is a barrier that the opponent can't go through   The helper is a barrier that the opponent can't go through EmptyDecember 27th 2016, 7:56 pm

Any ideas on making this?

So I gave it a fake health meter that the opponent can do to destroy it using variables and it also attacks on its own. However, I want it to be a barrior that the opponent can't pass. Any ideas?
Back to top Go down
Werewood

Werewood


Posts : 5691
Join date : 2014-08-11

The helper is a barrier that the opponent can't go through Empty
PostSubject: Re: The helper is a barrier that the opponent can't go through   The helper is a barrier that the opponent can't go through EmptyDecember 28th 2016, 3:25 pm

The best available MUGEN way to make it possible to happen is by using two (2) MUGEN Helpers, like a MUGEN Inner Helper inside a MUGEN Outter Helper.  The MUGEN main player calls the MUGEN Outter Helper and the MUGEN Outter Helper calls the MUGEN Inner Helper and have the MUGEN Inner Helper bind to the MUGEN Outter Helper.  I don't know who came up with this MUGEN way and I must say he/she/it must be a MUGEN Genius!  Idea

The first time I saw and tried to study this "unmovable MUGEN Helper" MUGEN way was with MFFA Ryon Persaud's MUGEN characters (yes, Ryon was inspiring me for a long time already).  So here I gave the MUGEN credit to Ryon Persaud. The helper is a barrier that the opponent can't go through 705151839

Now, let us start with a little MUGEN in-game scene with Kung Fu Man and Juggernaut cyclops :

The helper is a barrier that the opponent can't go through 3o7TKO2h6n1oVwflAc
in case giphy not working for you...:

One day, Kung Fu Man bought a new TV set, when he tried to begin to try it out, Juggernaut appeared and he was so angry that Kung Fu Man's new TV set was blocking his way, then Juggernaut tried to do many things to try to move Kung Fu Man's new TV set out of his sight.  Yet, no matter how hard Juggernaut tried, he was still not able to move Kung Fu Man's new TV set.......it was because the "unmovable MUGEN Helper" MUGEN way is installed in the TV set MUGEN Helper.......Juggernaut was so frustrated for the time being..... bomb

OK, now the actual MUGEN code for the said "unmovable MUGEN Helper" MUGEN way Arrow :
=> the demo above shows that when Kung Fu Man was doing his normal taunt, his new TV set came out of nowhere, which was a result of calling a MUGEN Outter Helper in his Statedef 195:
Code:
[State 195, Helper] ; credit: Ryon Persaud
type = Helper
triggerall = !IsHelper
trigger1 = NumHelper(4140) = 0
helpertype = normal
name = "Outter Helper"
ID = 4140
pos = 80,0
postype = p1
facing = 1
stateno = 4140
keyctrl = 0
ownpal = 1
supermovetime = 0
pausemovetime = 0
size.xscale = 1
size.yscale = 1
size.ground.back = 45   ;;; the back width of the TV Set sprite
size.ground.front = 45  ;;; the front width of the TV Set sprite
size.air.back = 45        ;;; the back width of the TV Set sprite
size.air.front = 45        ;;; the front width of the TV Set sprite
size.height = 100         ;;; the height of the TV Set sprite
size.proj.doscale = 0
size.head.pos = 0, 0
size.mid.pos = 0, 0
size.shadowoffset = 0
ignorehitpause = 1
persistent = 1

The MUGEN Outter Helper Statedef 4140 is made like this:
Code:
[Statedef 4140] ; credit: Ryon Persaud
type = S
movetype = I
physics = N
anim = 4140
velset = 0,0
ctrl = 0
sprpriority = -9

[State 4140, AssertSpecial]
type = AssertSpecial
triggerall = IsHelper
trigger1 = 1
flag = invisible
flag2 = noshadow
flag3 = nowalk
ignorehitpause = 1
persistent = 1

[State 4140, NotHitBy]
type = NotHitBy
triggerall = IsHelper
trigger1 = 1
value = SCA
time = 1
ignorehitpause = 1
persistent = 1

[State 4140, Helper]
type = Helper
triggerall = IsHelper
trigger1 = NumHelper(4141) = 0
helpertype = normal
name = "Inner Helper"
ID = 4141
pos = 0,0
postype = p1
facing = 1
stateno = 4141
keyctrl = 0
ownpal = 1
supermovetime = 0
pausemovetime = 0
size.xscale = 1
size.yscale = 1
size.ground.back = 45  ;;; the back width of the TV Set sprite
size.ground.front = 45  ;;; the front width of the TV Set sprite
size.air.back = 45        ;;; the back width of the TV Set sprite
size.air.front = 45        ;;; the front width of the TV Set sprite
size.height = 100        ;;; the height of the TV Set sprite
size.proj.doscale = 0
size.head.pos = 0, 0
size.mid.pos = 0, 0
size.shadowoffset = 0
ignorehitpause = 1
persistent = 1

As you can see that the MUGEN Outter Helper is trying to call a child MUGEN Inner Helper (Statedef 4141) and it is made of this:
Code:
[Statedef 4141] ; credit: Ryon Persaud
type = S
movetype = I
physics = N
anim = 4141
velset = 0,0
ctrl = 0
sprpriority = 0

[State 4141, BindToParent]
type = BindToParent
triggerall = IsHelper
trigger1 = 1
time = 1
facing = 0
pos = 0,0
ignorehitpause = 1
persistent = 1

[State 4141, PlayerPush]
type = PlayerPush
triggerall = IsHelper
trigger1 = 1
value = 1
ignorehitpause = 1
persistent = 1

[State 4141, NotHitBy]
type = NotHitBy
triggerall = IsHelper
trigger1 = 1
value = SCA
time = 1
ignorehitpause = 1
persistent = 1

The most important MUGEN magical part is the BindToParent MUGEN State Controller in the child MUGEN Inner Helper! Exclamation  Don't use the BindToRoot MUGEN State Controller unless you are trying to make some MUGEN bonus characters like SFII car, SFII brick, Metal Slug Train, Demon's Wall...etc... Neutral

The last but not least, the Animations I used in the above MUGEN demo:

Code:
; MUGEN Outter Helper (non-existing sprite)
[Begin Action 4140]
-1,0, 0,0, -1

; MUGEN Inner Helper (TV Set sprite around 90x100 pixels)
[Begin Action 4141]
Clsn2: 1
  Clsn2[0] = -39, -98, 42, 1
4141,0, 0,0, 1000

Hope it can help you solve your MUGEN coding problem! Wink


Last edited by borewood2013 on December 29th 2016, 4:51 am; edited 1 time in total
Back to top Go down
https://onedrive.live.com/?cid=7DB65F02B0BBD12E
Mega_Man

Mega_Man


Posts : 148
Join date : 2016-01-23

The helper is a barrier that the opponent can't go through Empty
PostSubject: Re: The helper is a barrier that the opponent can't go through   The helper is a barrier that the opponent can't go through EmptyDecember 28th 2016, 5:09 pm

Sweet. Thank you so much. The move feels more useful now. It's hard to land but it now could be used as a fort once it doesn't.
Back to top Go down
Werewood

Werewood


Posts : 5691
Join date : 2014-08-11

The helper is a barrier that the opponent can't go through Empty
PostSubject: Re: The helper is a barrier that the opponent can't go through   The helper is a barrier that the opponent can't go through EmptyDecember 29th 2016, 4:54 am

>> It's hard to land...
So, how exactly did you make your MUGEN Helper start? Question
Back to top Go down
https://onedrive.live.com/?cid=7DB65F02B0BBD12E
Mega_Man

Mega_Man


Posts : 148
Join date : 2016-01-23

The helper is a barrier that the opponent can't go through Empty
PostSubject: Re: The helper is a barrier that the opponent can't go through   The helper is a barrier that the opponent can't go through EmptyDecember 29th 2016, 8:39 am

borewood2013 wrote:
>> It's hard to land...
So, how exactly did you make your MUGEN Helper start? Question

It spawns 60 dist X after 44 ticks. But it doesn't really matter to me. It hits hard and it flies the opponent away.
Back to top Go down
Werewood

Werewood


Posts : 5691
Join date : 2014-08-11

The helper is a barrier that the opponent can't go through Empty
PostSubject: Re: The helper is a barrier that the opponent can't go through   The helper is a barrier that the opponent can't go through EmptyJanuary 2nd 2017, 5:14 am

Mega_Man wrote:
borewood2013 wrote:
>> It's hard to land...
So, how exactly did you make your MUGEN Helper start? Question

It spawns 60 dist X after 44 ticks. But it doesn't really matter to me. It hits hard and it flies the opponent away.

Did you need your MUGEN Helper to move during its start time? Question
Back to top Go down
https://onedrive.live.com/?cid=7DB65F02B0BBD12E
Sponsored content





The helper is a barrier that the opponent can't go through Empty
PostSubject: Re: The helper is a barrier that the opponent can't go through   The helper is a barrier that the opponent can't go through Empty

Back to top Go down
 
The helper is a barrier that the opponent can't go through
Back to top 
Page 1 of 1
 Similar topics
-
» Language Barrier help please?
» How can I add the sound on Mugen Character when being hit by the opponent and taking a fall?
» Helper
» Coding a Helper
» Helper infinito

Permissions in this forum:You cannot reply to topics in this forum
The Mugen Multiverse :: Mugen Related :: Mugen Help-
Jump to: