枠の増やし方
「よし‼MUGENをプレイっと??、、ん?、置けるキャラ数が少ない⁉」
こんなこと思ったことありませんか?私は思いました。
そんなことはさておき、枠を増やす方法を教えたいと思います‼
Win mugen の設定を何も変更していないと14体までだっけ?、そんなんじゃあMUGENやってるいみないですよねぇ?そうだよなぁ?(そうであってくれ)
キャラ枠の増やし方
データ(deta)をクリックして、システム(system.def)をクリック。


そうしたらsystem.defのメモ帳が開かれるはずです。
そうしたら
[Select Info]をメモ帳の検索で調べてください。
;Character select definition
[Select Info]
fadein.time = 10
fadeout.time = 10
rows = 2
columns = 5
wrapping = 0 ;1 to let cursor wrap around
pos = 90,170 ;Position to draw to
showemptyboxes = 0 ;1 to show empty boxes
moveoveremptyboxes = 0 ;1 to allow cursor to move over empty boxes
cell.size = 27,27 ;x,y size of each cell (in pixels)
cell.spacing = 2 ;Space between each cell
cell.bg.spr = 150,0 ;Note: Don't use animation for cells
cell.random.spr = 151,0 ;Icon for random select (don't use animation)
cell.random.switchtime = 4;Time to wait before changing to another random portrait
↑そうしたらこんなのがあるはずです。
rows = 2
columns = 5
がありますね?それを、、
[Select Info]
fadein.time = 10
fadeout.time = 10
rows = 6
columns = 11
wrapping = 0 ;1 to let cursor wrap around
pos = 90,170 ;Position to draw to
showemptyboxes = 0 ;1 to show empty boxes
moveoveremptyboxes = 0 ;1 to allow cursor to move over empty boxes
cell.size = 27,27 ;x,y size of each cell (in pixels)
cell.spacing = 2 ;Space between each cell
cell.bg.spr = 150,0 ;Note: Don't use animation for cells
cell.random.spr = 151,0 ;Icon for random select (don't use animation)
cell.random.switchtime = 4;Time to wait before changing to another random portrait
rows = 6
columns = 11
にしてください。
そうすることで"枠"は増やせます。
そのままだとセレクト画面がおかしくなってしまうので、
[Select Info]
fadein.time = 10
fadeout.time = 10
rows = 6
columns = 11
wrapping = 0 ;1 to let cursor wrap around
pos = 90,170 ;Position to draw to
showemptyboxes = 0 ;1 to show empty boxes
moveoveremptyboxes = 0 ;1 to allow cursor to move over empty boxes
cell.size = 27,27 ;x,y size of each cell (in pixels)
cell.spacing = 2 ;Space between each cell
cell.bg.spr = 150,0 ;Note: Don't use animation for cells
cell.random.spr = 151,0 ;Icon for random select (don't use animation)
cell.random.switchtime = 4;Time to wait before changing to another random portrait
pos = 90,170
posを
;Character select definition
[Select Info]
fadein.time = 10
fadeout.time = 10
rows = 6
columns = 11
wrapping = 0 ;1 to let cursor wrap around
pos = 2,30 ;Position to draw to
showemptyboxes = 0 ;1 to show empty boxes
moveoveremptyboxes = 0 ;1 to allow cursor to move over empty boxes
cell.size = 27,27 ;x,y size of each cell (in pixels)
cell.spacing = 2 ;Space between each cell
cell.bg.spr = 150,0 ;Note: Don't use animation for cells
cell.random.spr = 151,0 ;Icon for random select (don't use animation)
cell.random.switchtime = 4;Time to wait before changing to another random portrait
pos = 2,30
にしましょう、そうすることで枠がたくさん増えたMUGENが完成しました!

お疲れ様です‼
- 最終更新:2023-03-24 03:26:29