YesNoOk
avatar

Noel Released - MBTL/Melty Blood: Type Lumina (2025.04.12 Updated) (Read 41136 times)

Started by Manny Lingle (曼尼琳各), February 15, 2025, 02:45:42 pm
Share this topic:
Noel Released - MBTL/Melty Blood: Type Lumina (2025.04.12 Updated)
#1  February 15, 2025, 02:45:42 pm
  • **
    • buymeacoffee.com/mannylingle
This is Noel (AKA Noel Aizome) from Melty Blood: Type Lumina
It requires MUGEN 1.1 (OpenGL) | Ikemen GO Nightly
Screenshot

Spoiler: Six Screenshots (click to see content)

Video Preview
Language: zh-TW | CC Subtitles: zh, en, ja (Google Translate)
Spoiler: Other Video Previews (Mugenized Skill) (click to see content)
Spoiler: Other Video Previews (MBTL and MUGEN Comparison) (click to see content)
Spoiler: Other Video Previews (New Intro and Win Poses) (click to see content)
Fighting Style: Similar to the Original Game (MBTL).
For a detailed explanation, please refer to the character folder description file (text file).

Download:
https://1drv.ms/f/c/5b3f61ea4138a29d/En0nc3zlkypMgOBkMPXt4goBuPDnq3Mo69OH_dejN-tb2A?e=nE4J7B
Welcome to support Linglebuymeacoffee.com/mannylingle
Last Edit: April 12, 2025, 02:07:15 pm by Manny Lingle (曼尼琳各)
Re: Noel Released - MBTL/Melty Blood: Type Lumina
#2  February 15, 2025, 02:49:10 pm
  • **
    • buymeacoffee.com/mannylingle
All Characters DL (Including Noel):
https://1drv.ms/f/c/5b3f61ea4138a29d/Ep2iOEHqYT8ggFvrAAAAAAAB67WCqnuzZTZPg_ioK5oQzg?e=6aW7Eh
Spoiler: 2 VS 2 UI (User Interface) (click to see content)
Spoiler: Noel's Stage (click to see content)
BTW, I'm sorry if this translation is poorly written, I use Google Translate.
Welcome to support Linglebuymeacoffee.com/mannylingle
Last Edit: March 15, 2025, 12:29:08 pm by Manny Lingle (曼尼琳各)
Re: Noel Released - MBTL/Melty Blood: Type Lumina
#3  February 16, 2025, 05:15:03 pm
  • ***
  • Passing Through
Not sure if it's an Ikemen issue only but during last arc opponent can recover instantly in the middle of the cutscene
Re: Noel Released - MBTL/Melty Blood: Type Lumina
#4  February 17, 2025, 11:36:07 am
  • ****
Not sure if it's an Ikemen issue only but during last arc opponent can recover instantly in the middle of the cutscene

I tested on my MUGEN and IKEMEN (nightly)
didn't see target is dropped.

but if to maintain for both MUGEN and IKEMEN for singel version of character is bit challenging.
Last Edit: February 17, 2025, 11:42:19 am by beterhans
Re: Noel Released - MBTL/Melty Blood: Type Lumina
#5  February 17, 2025, 02:11:39 pm
  • **
    • buymeacoffee.com/mannylingle
Not sure if it's an Ikemen issue only but during last arc opponent can recover instantly in the middle of the cutscene
The moves Last Arc is set to not be able to recover (fall.recover = 0).
And the ctrl parameter of the opponent's Statedef is also set to 0 (ctrl = 0).
Unless you use...Cheap method, the opponent basically cannot recover.
By the way, if you are using Ikemen GO, please use the "Nightly" version.
Welcome to support Linglebuymeacoffee.com/mannylingle
Last Edit: February 17, 2025, 02:15:01 pm by Manny Lingle (曼尼琳各)
Re: Noel Released - MBTL/Melty Blood: Type Lumina
#6  February 17, 2025, 03:37:20 pm
  • ***
  • Passing Through
most recent nightly as of 2/15, on basic KFM
Re: Noel Released - MBTL/Melty Blood: Type Lumina
#7  February 17, 2025, 03:56:41 pm
  • ****
Not sure if it's an Ikemen issue only but during last arc opponent can recover instantly in the middle of the cutscene
The moves Last Arc is set to not be able to recover (fall.recover = 0).
And the ctrl parameter of the opponent's Statedef is also set to 0 (ctrl = 0).
Unless you use...Cheap method, the opponent basically cannot recover.
By the way, if you are using Ikemen GO, please use the "Nightly" version.

i tested vs some char
found the super only work for 720p character
any 240p character didn't work.

vs 720p kong fu man OK
normal kong fu man will lost target
Re: Noel Released - MBTL/Melty Blood: Type Lumina
#8  February 17, 2025, 04:12:22 pm
  • ****
Haha that's my fault

Code:
[State 3831, 2 (Bug - Noel is not in the Last Arc Statedef, but the opponent is in the Last Arc Statedef)];/* ※ */
type = SelfState
triggerall = !IsHelper
trigger1 = PlayerIDExist(GetHitvar(Fall.Envshake.Ampl)/2) = 0
trigger2 = PlayerIDExist(GetHitvar(Fall.Envshake.Ampl)/2)
trigger2 = PlayerID(GetHitvar(Fall.Envshake.Ampl)/2),StateNo < 200 || PlayerID(GetHitvar(Fall.Envshake.Ampl)/2),MoveType = H
value = cond(pos y >= 0,5110,5020)
ctrl = 0


using GetHitvar(Fall.Envshake.Ampl)/2 to pass attacker's ID can work in MUGEN but not IKEMEN
Fall.Envshake.Ampl will auto adapte when target and self  localcoord mismatch.

Check this post
https://github.com/ikemen-engine/Ikemen-GO/issues/2176#issuecomment-2538223075
POTS suggest use another parameter other than the Fall.Envshake.ampl since it auto adapte to different localcoord.

My Ikemen saber updated to use Fall.Envshake.Time to pass attacker ID
since time is equal for all localcoord size character no need to auto adapte.

Code:
[State 3211, Return]
type = SelfState
trigger1 = PlayerIDExist(GetHitvar(Fall.Envshake.Time) / 2) = 0
trigger2 = PlayerIDExist(GetHitvar(Fall.Envshake.Time) / 2) = 1
trigger2 = !(PlayerID(GetHitvar(Fall.Envshake.Time) / 2),StateNo = [3200,3209])
trigger3 = PlayerIDExist(GetHitvar(Fall.Envshake.Time) / 2) = 1
trigger3 = PlayerID(GetHitvar(Fall.Envshake.Time) / 2), Time > 400
value = 5050





Re: Noel Released - MBTL/Melty Blood: Type Lumina
#9  February 17, 2025, 05:37:41 pm
  • **
    • buymeacoffee.com/mannylingle
Haha that's my fault

Code:
[State 3831, 2 (Bug - Noel is not in the Last Arc Statedef, but the opponent is in the Last Arc Statedef)];/* ※ */
type = SelfState
triggerall = !IsHelper
trigger1 = PlayerIDExist(GetHitvar(Fall.Envshake.Ampl)/2) = 0
trigger2 = PlayerIDExist(GetHitvar(Fall.Envshake.Ampl)/2)
trigger2 = PlayerID(GetHitvar(Fall.Envshake.Ampl)/2),StateNo < 200 || PlayerID(GetHitvar(Fall.Envshake.Ampl)/2),MoveType = H
value = cond(pos y >= 0,5110,5020)
ctrl = 0
To be honest, I'm not too familiar
with the new features added to Ikemen GO.
I'm not sure if it can be solved.

But I'll take the time to check it out.
But only if it doesn't affect the
settings that can be used on MUGEN.
Welcome to support Linglebuymeacoffee.com/mannylingle
Last Edit: February 18, 2025, 04:59:26 pm by Manny Lingle (曼尼琳各)
Re: Noel Released - MBTL/Melty Blood: Type Lumina (2025.02.18 Updated)
#10  February 18, 2025, 05:14:16 pm
  • **
    • buymeacoffee.com/mannylingle
most recent nightly as of 2/15, on basic KFM

Fixed (Bug where Last Arc moves were binding to opponents in Ikemen GO).
Just like beterhans said.
Code: (Fixed Code)
[State 3831, 2 (To Pass Attacker's ID)]
type = SelfState
triggerall = !IsHelper
trigger1 = PlayerIDExist(GetHitVar(Fall.EnvShake.Time)/2) = 0
trigger2 = PlayerIDExist(GetHitVar(Fall.EnvShake.Time)/2)
trigger2 = PlayerID(GetHitVar(Fall.EnvShake.Time)/2),StateNo < 200 || PlayerID(GetHitVar(Fall.EnvShake.Time)/2),MoveType = H
value = cond(pos y >= 0,5110,5020)
ctrl = 0
Additionally, the fall.recovertime parameters of some moves have been modify.
Welcome to support Linglebuymeacoffee.com/mannylingle
Last Edit: February 18, 2025, 06:04:52 pm by Manny Lingle (曼尼琳各)
Re: Noel Released - MBTL/Melty Blood: Type Lumina (2025.02.20 Updated)
#11  February 20, 2025, 12:33:40 pm
  • **
    • buymeacoffee.com/mannylingle
If the player controls the character,
the color of the body can be freely changed (Color Selection).
2025.02.20 mainly fixed display errors in this area.
Welcome to support Linglebuymeacoffee.com/mannylingle
Re: Noel Released - MBTL/Melty Blood: Type Lumina (2025.02.20 Updated)
#12  March 01, 2025, 06:10:09 am
  • **
    • buymeacoffee.com/mannylingle
Others Animation Showcase:

Dizzy (Also called Stun)

Spoiler: Dizzy (click to see content)
Spoiler: Next Meme (Kiryu Coco by OHMSBY) (click to see content)
Spoiler: Guillotine (Powered Ciel by OHMSBY) (click to see content)
If there are new animations in future updates, they will be added to this post.
Welcome to support Linglebuymeacoffee.com/mannylingle
Last Edit: March 01, 2025, 01:14:04 pm by Manny Lingle (曼尼琳各)
Re: Noel Released - MBTL/Melty Blood: Type Lumina (2025.02.20 Updated)
#13  March 15, 2025, 04:01:10 am
  • **
    • buymeacoffee.com/mannylingle
3C and 3B jump height comparison.

3C (5AAA > j.AAA > j.A)


3B (5AAB > j.BB > j.B)

If you do not want to use 3B,
you can set it to off in Noel-Config.st.
Spoiler: 3B Attack Description (click to see content)
Welcome to support Linglebuymeacoffee.com/mannylingle
Last Edit: March 15, 2025, 04:28:32 am by Manny Lingle (曼尼琳各)
Re: Noel Released - MBTL/Melty Blood: Type Lumina (2025.02.20 Updated)
#14  March 19, 2025, 03:50:55 pm
  • **
  • Old-School
    • Morocco
    • ikemenfc.free.fr/index.htm
Excellent work on character, very very hard to beat it, thanks for release!
Re: Noel Released - MBTL/Melty Blood: Type Lumina (2025.04.12 Updated)
#15  April 12, 2025, 02:06:28 pm
  • **
    • buymeacoffee.com/mannylingle
2025.04.12 Update
- Code Optimization.
- Adjust some action Hurtbox.
- Slight adjustment to AI Recovery/Ukemi triggering probability.

- When there is only one player on our team, the Common Powerbar
will increase or decrease in sync with the Magic Circuit.
Common Powerbar sync Magic Circuit


- The Moon Icon can be moved to the top of the screen (only for one player).


Change the following code (0) to (1) in the Noel-Config.st file.
The Moon Icon will move to the top of the screen.

Code: (Noel-Config.st)
[State -3, Config 4 := Moon Icon Position];// 配置4 := 月亮圖示位置
type = VarSet
trigger1 = NumPartner = 0
v = 39
; Does the Moon Icon position use the MBTL (Original Game) Style?
; 月亮圖示位置是否採用月姬格鬥(原遊戲)風格?
;----------------------------------------------------------------------
value = (0) ;⮜ 否No = 0, 是Yes >= 1 (預設Default Value is 0)
;----------------------------------------------------------------------
; The Moon Icon will appear at the top of the screen.
; 月亮圖示會顯示在畫面上方。
;
; Limited to one person.
; 僅限於一個人。
;
; If there is a partner,
; that is more than two people, this setting will be invalid.
; 如果有同伴,也就是二人以上本設定將無效。
ignorehitpause = 1
Spoiler: When value = (0) (click to see content)
Spoiler: When value = (1) (click to see content)
Spoiler: When value = (1), but with partner. (click to see content)
Spoiler: But… moving the Moon Icon
to the top of the screen has its drawbacks…
(click to see content)

Download:
https://1drv.ms/f/c/5b3f61ea4138a29d/En0nc3zlkypMgOBkMPXt4goBuPDnq3Mo69OH_dejN-tb2A?e=nE4J7B
Welcome to support Linglebuymeacoffee.com/mannylingle
Last Edit: April 13, 2025, 03:15:12 am by Manny Lingle (曼尼琳各)
Re: Noel Released - MBTL/Melty Blood: Type Lumina (2025.04.12 Updated)
#16  April 14, 2025, 12:05:42 am
  • **
  • Basic User
  • Harry 7 Mason From Silent Hill
    • Chile
The stage looks pretty cool.
One drive link is not working for me.
I don't know if is my account or if other people can download the stage?
Fortes Fortuna Juvat