mg126
Posts : 1 Join date : 2017-03-23
| Subject: Swap WinIcons March 23rd 2017, 9:55 am | |
| When player 2 gets defeated, the winicons appear next to player 1's Lifebar. In my MUGEN, the left icon appears after p1 wins round 1, the right one after p1 wins round 2, . I want to change that, how can I do that? | |
|
Werewood
Posts : 5691 Join date : 2014-08-11
| Subject: Re: Swap WinIcons March 24th 2017, 8:24 am | |
| I am not sure about MUGEN screenpacks/motifs making and/or editing, but I think this is the place for you to try to edit your MUGEN win icons : * in your MUGEN screenpacks/motifs MUGEN file, "fight.def", search for the line "[WinIcon]" : - Code:
-
;----------------------------------------------------------- [WinIcon] p1.pos = 584,30 p2.pos = 696,30 ; Background icon p1.bg0.spr = 120,0 p2.bg0.spr = 120,0 ; Offset for next icon (x,y) p1.iconoffset = -24,0 p2.iconoffset = 24,0 ; Counter text font and offset for representing wins p1.counter.offset = 0,5 p1.counter.font = 4,0,0, 230,255,242 p2.counter.offset = 0,5 p2.counter.font = 4,0,0, 255,242,242 ; Win by normal p1.n.spr = 100,0 p2.n.spr = 100,0 ; Win by special p1.s.spr = 101,0 p2.s.spr = 101,0 ; Win by hyper (super) p1.h.spr = 102,0 p2.h.spr = 102,0 ; Win by normal throw p1.throw.spr = 103,0 p2.throw.spr = 103,0 ; Win by cheese p1.c.spr = 104,0 p2.c.spr = 104,0 ; Win by time over p1.t.spr = 105,0 p2.t.spr = 105,0 ; Win by suicide p1.suicide.spr = 106,0 p2.suicide.spr = 106,0 ; Opponent beaten by his own teammate p1.teammate.spr = 107,0 p2.teammate.spr = 107,0 ; Win by perfect (overlay icon) p1.perfect.spr = 110,0 p2.perfect.spr = 110,0 ; Use icons up until this number of wins useiconupto = 4 where ".pos" may mean "positions", ".spr" may mean "sprites", ".offset" may mean "shifts",...etc... | |
|