YesNoOk
avatar

Chris by MDK problem in IKEMEN (Read 4198 times)

Started by terrence, June 06, 2024, 06:45:20 pm
Share this topic:
Chris by MDK problem in IKEMEN
#1  June 06, 2024, 06:45:20 pm
  • **
  • ¡Good!
Hi!:
     I want know ¿what happens with Chris MDK in IKEMEN?, the error show something than im not familiar, many codes,and number. Is clear than exist a problem with "&&", but the error message is not clear to me, ¿any ideas to know how interpret this type of errors?. Thanks

.\external\script\start.lua:1403: chars\Chris/Cns/MC'Chris_O.CNS:2179:
Invalid data: &&
stack traceback:
   [G]: in function 'game'
   .\external\script\start.lua:1403: in function 'f_game'
   .\external\script\start.lua:1839: in function 'launchFight'
   external/script/default.lua:20: in function <external/script/default.lua:0>
   .\external\script\start.lua:1457: in function 'f'
   external/script/main.lua:3105: in function 'loop'
   external/script/main.lua:3189: in function 'loop'
   external/script/main.lua:4156: in main chunk
   [G]: ? 
Re: Chris by MDK problem in IKEMEN
#2  June 06, 2024, 07:09:18 pm
  • ******
    • Portugal
    • network.mugenguild.com/pots/
The crash message means the error is in file MC'Chris_O.CNS at or around line 2179.

In the version I got it's actually line 2157, which is this block of code:

Code:
[State 3001,1]
type = varset
trigger1 = ( && Var(50) = 4time = 0 || animelem = 7)
var(15) = 0

Which is completely broken. I'm suprised Mugen doesn't crash. The trigger1 line is probably meant to be:

Code:
trigger1 = Var(50) = 4 && (time = 0 || animelem = 7)
You can help with Ikemen GO's development by trying out the latest development build and reporting any bugs on GitHub.
My Mugen and Ikemen content can also be found here.
Re: Chris by MDK problem in IKEMEN
#3  June 06, 2024, 07:20:37 pm
  • **
  • ¡Good!
¡Many thanks, POTS!. But ¿how i see the "lines/number lines"?, ¿is with Fighter Factory and see the CNS file with it?.
Re: Chris by MDK problem in IKEMEN
#4  June 06, 2024, 07:25:30 pm
  • ******
    • Portugal
    • network.mugenguild.com/pots/
A lot of text editors do that. Even the basic Notepad. I use Notepad++.
You can help with Ikemen GO's development by trying out the latest development build and reporting any bugs on GitHub.
My Mugen and Ikemen content can also be found here.
Re: Chris by MDK problem in IKEMEN
#5  June 07, 2024, 02:49:10 am
  • **
  • ¡Good!
¡Many thanks!.