The Mugen Fighters Guild

M.U.G.E.N Central => M.U.G.E.N Discussion => Topic started by: beterhans on April 27, 2020, 11:17:30 am

Title: [Solved]Now I believe the MUGEN 1.1 crash without error is character related.
Post by: beterhans on April 27, 2020, 11:17:30 am
recently I found if I load some certain characters MUGEN 1.1 will crash easily (Already applied 4G patch)
most of them are KOF characters.

so I did a test within all my characters
I found my AWK Morrigan is a Suspect too.
compare to my other characters she can crash mugen 1.1b within 2-3 times of Shift-F4
(1st time is always OK)
and MUGEN 1.1b will NOT give out any error for that, just crash.


maybe later I'll do some more testing too find with part caused the crash....

-------- Issue found in later post and I solved it ----




a tool to help you sovle the issue

https://mugenguild.com/forum/msg.2475940 (https://mugenguild.com/forum/msg.2475940)
Title: Re: Now I believe the MUGEN 1.1 crash without error is character related.
Post by: oraora? on April 27, 2020, 12:35:29 pm
I am surprised that even with 4GB patch applied, it still crash  :S Anyway, Ikaruga's characters are one of them that cause the crash problem. I believe you have Ikaruga's characters in your roster. I remember I removed almost every codes in his characters' cns, cmd files, the problem still exists, maybe it has to do with the air file? If I remember correctly, before Ikaruga added spectators to his kof98's characters, it didn't have this problem. After Ikaruga added spectators and updated his other characters, this crash problem occurs frequently.
Title: Re: Now I believe the MUGEN 1.1 crash without error is character related.
Post by: beterhans on April 27, 2020, 01:49:12 pm
I am surprised that even with 4GB patch applied, it still crash  :S Anyway, Ikaruga's characters are one of them that cause the crash problem. I believe you have Ikaruga's characters in your roster. I remember I removed almost every codes in his characters' cns, cmd files, the problem still exists, maybe it has to do with the air file? If I remember correctly, before Ikaruga added spectators to his kof98's characters, it didn't have this problem. After Ikaruga added spectators and updated his other characters, this crash problem occurs frequently.

Yes most KOF char are from Ikaruga
I'll look into the air file of my morrigan too.
Title: Re: Now I believe the MUGEN 1.1 crash without error is character related.
Post by: Kolossoni on April 27, 2020, 04:56:35 pm
MUGEN CTD's are very rare, especially after version 1.0 and should continue that way through 1.1...

My question is: did you check the error logs?
I think checking that would be the first priority.
Title: Re: Now I believe the MUGEN 1.1 crash without error is character related.
Post by: beterhans on April 29, 2020, 06:24:51 am
My question is: did you check the error logs?
I think checking that would be the first priority.
Thanks I'll do


maybe it has to do with the air file?
You are correct!
It's because of AIR file!

Here is how I found the problem

1. Load problem character vs a different OK character
2. Shift + F4 reload 2-3 times
3. until mugen 1.1 crash without error.

open the Mugen.log file

you will find

Reloading match
Unloading match assets
Freeing players
Unloading stage...OK
Reset persist vars team 0
Reset persist vars team 1
Freeing player RC Ryu...CMD...CNS...SFF...AIR...SND...Misc...OK
Freeing player RC Morrigan_Aensland...CMD...CNS...SFF...AIR...


the OK one should looks like
Reloading match
Unloading match assets
Freeing players
Unloading stage...OK
Reset persist vars team 0
Reset persist vars team 1
Freeing player RC Ryu...CMD...CNS...SFF...AIR...SND...Misc...OK
Freeing player RC Morrigan_Aensland...CMD...CNS...SFF...AIR...SND...Misc...OK
Loading match assets...
Loading stage...
  Loading BG...OK




After study the Air file

I found here is the problem

1 there is number at start of the file remove it.
2
; Stand Turn
[Begin Action 5]
Clsn2Default: 1
  Clsn2[0] = -13, -85, 20, 0
Clsn2: 1
  Clsn2[0] = -2, -90, 34, 0
5,0, 0,0, 3
Clsn2: 1
  Clsn2[0] = -4, -90, 33, 1
5,0, 0,0, 3

5,1, 0,0, 3
5,2, 0,0, 3

TWO CLSN2[0] under same frame!

remove and correct it solved crash issue!


I believe this is caused by Fighter factory 3
since I never manually edit the AIR file.

but very hard too spot it.

Title: Re: [Solved]Now I believe the MUGEN 1.1 crash without error is character related.
Post by: Mintloid on April 29, 2020, 10:57:39 pm
Usually I just do

ctrl+H Clsn2: (MUST HAVE COLON!) and replace with Clsn2Default: (AGAIN, MUST HAVE COLON to prevent empty hitboxes or other errors.)

Not really the best way to fix it, but its the only quick and easy way to fix .AIR files for me. If this doesn't seem to work for you, then it was a good enough suggestion.
Title: Re: [Solved]Now I believe the MUGEN 1.1 crash without error is character related.
Post by: K。血 on April 30, 2020, 07:07:09 am
Try IKEMEN. Same character in IKEMEN works well. Ikaruga's character has a lot of air problem to crash M.U.G.E.N. Same example: if you use his Kyo02UM fight with iori02UM, when kyo use →↓→X skill, M.U.G.E.N will crash. The solution is use FF3 to re edit his →↓→X anim.
Title: Re: [Solved]Now I believe the MUGEN 1.1 crash without error is character related.
Post by: beterhans on May 01, 2020, 03:04:42 am
OK I made a tool to deal with this issue

https://mugenguild.com/forum/msg.2475940 (https://mugenguild.com/forum/msg.2475940)
Title: Re: [Solved]Now I believe the MUGEN 1.1 crash without error is character related.
Post by: oraora? on May 05, 2020, 07:03:54 am
I remember when I have only Muteki, GM and Warusaki3's characters in my Mugen, it don't crash. After adding Ikaruga's kof characters, it crash. The crash problem when playing Arcade mode was after a few certain stages like around after four or five fights, it crash no matter which opponent I fought throughout the fight and it often crash around the forth to fifth stage iirc. I have not check out the fix yet, I will check it out if I have free time, cool to see a fix for this, thanks  :) I suggest this topic to be stick since the crash problem is very common in Mugen nowadays.
Title: Re: [Solved]Now I believe the MUGEN 1.1 crash without error is character related.
Post by: beterhans on May 05, 2020, 01:54:17 pm
I remember when I have only Muteki, GM and Warusaki3's characters in my Mugen, it don't crash. After adding Ikaruga's kof characters, it crash. The crash problem when playing Arcade mode was after a few certain stages like around after four or five fights, it crash no matter which opponent I fought throughout the fight and it often crash around the forth to fifth stage iirc. I have not check out the fix yet, I will check it out if I have free time, cool to see a fix for this, thanks  :) I suggest this topic to be stick since the crash problem is very common in Mugen nowadays.

yeah but people may only fix their favourite character only
for example the Ikaruga's characters. it's quite a commitment of time you need to spend on it.
Title: Re: [Solved]Now I believe the MUGEN 1.1 crash without error is character related.
Post by: Dude01 on July 08, 2023, 11:18:21 am
Ik this is a long time thread but

what abt KONG's Characters don't they have any errors in them? Cuz whenever i do 4gb some of the characters crash....
Title: Re: [Solved]Now I believe the MUGEN 1.1 crash without error is character related.
Post by: oraora? on July 08, 2023, 03:34:26 pm
kong's characters are only for the old window mugen, did your mugen roster only consist of only kong's characters? or are there other mugen creators' characters?