Jump to content
  • 0

Does anyone know how to get these characters to work without getting an error?


Question

Posted

So I have these characters that I was thinking about putting onto my game, but noticed that there are some syntax errors from them that still confuse me to this day, and therefore I think I would most likely want to ask some of you for help with what the actual problems are: Chloe's Evil Ryu SvC and Sissy, and another one that I can recall here is a particular version of Powered Ciel from Melty Blood (not sure which author made her atm, though honestly, she seemed to look promising at first). I've been planning to add these characters for my next update of my character roster, and I'm currently using Fighter Factory 3 to fix their errors.

 

About Evil Ryu, well, when I was reviewing him for a bit, I can confirm that almost all of the syntax issues that I found in his coding are quite easy to fix, except for the one that's located in [State 2, Taunt], which is taken from his .cns file (yes, that's the actual error FF3 pointed out, accordingly):

Quote

;Enemy Taunts
[State -2, Taunt]
type = PowerAdd
trigger1 = (p2stateno = 195) && (enemy, statetime < 20)
trigger1 = var(12) != 1
value = 11

When looking at this weird issue right here, I think that seeing the word "statetime" in a character's .cns file is not very common, well, at least from my perspective, since I've been seeing it in many chars' .cmd files. This same issue also applies to the author's Violent Ken, considering that they share almost the same exact coding. He also appears to have "layerno" in almost all of his other coding, and that piece of coding is mostly used for stages, not for characters like him. Would I need to adjust those issues a bit by renaming "layerno" to "sprpriority"? Because I know that the latter part is technically used for chars in general. And would I also have to change "statetime" to "time" in the first issue I spotted too, or is it the other way around? What do you think?

 

As for Sissy, I noticed that according to Electrocaid's Perfect Select, it said that she was "updated" to 1.0 by Dark Saviour, so I'm pretty sure that means that she won't be able to boot upon the first time putting her into the game. Perhaps there's an invalid state mentioned everywhere in her .cns files, considering that some of the lines say "StateType = M". I didn't test her out yet, but I'm guessing that might be the case. I assume that those culprits that I mentioned are most likely fixable, but now there's one piece of coding that still left me stumped:

Quote

[State 1002, 3]
type = Envshake
trigger1 = timemod = 4,1
time = 4
freq = 90
ampl = 21 - time

As you can see above, the word "time" was next to the ampl part for some weird reason. Does it look odd or is it basically common anywhere else? I honestly haven't figured this issue out yet.

 

And now for Ciel, I know this version of her is supposed to be for WinMUGEN, although most of her coding appears to look fine to me. Well, she pretty much shares the same problem as Evil Ryu, but now in this specific part below:

Quote

[State 2004, Palfx]
type = Palfx
trigger1 = time > 40
add = ceil(-statetime*1.5),ceil(-statetime*1.5),ceil(-statetime*1.5)
time = 1
IgnoreHitPause = 1
Persistent = 1

This might also sound like a confusing question, but would it be better for me to rename those words underlined/highlighted in red to "time", "var" like the previous state, or neither? Apologies if I wasn't too skilled at coding a character correctly, even though I haven't made one yet, but still.

 

As always, any help will be appreciated. 🙂

 

Edit: Sorry that I got carried away with this topic, but it was TENE who made that Ciel I mentioned above.

4 answers to this question

Recommended Posts

  • 0
Posted

It's valid, but I doubt it's correct. 01 is the same as 1. 01 = p2life = 1 && movecontact will return either 0 or 1.

 

In short, the value can only be interpreted as the following:

  • 1 = 0 && 0 (returns 0)
  • 1 = 1 && 0 (returns 0)
  • 1 = 0 && !0 (returns 0)
  • 1 = 1 && !0 (returns 1)

FXhJiHL.png XslF5vn.png malcsRF.png

Project LG said:

God knows you shit out characters like a friggin' gumball machine.

  • 0
Posted

Okay, so a slight update on this post: I tried to make some of these corrections I suggested above for the characters that I was going to test out earlier. These caused them to load successfully. Well, it seems that I just solved these problems on my own.

 

Sorry if I didn’t know why I decided to make this post. I legitimately thought that it wasn’t going to be an easy task while running these characters in my game without any issues in the first place.

 

I might want to keep this post open if I still had some problems with getting any other characters that I haven’t tested yet to work in my game later during the future.

  • 0
Posted

I apologize if I feel like I would have to go back and revive this topic right here, but there's another character with a piece of coding that actually got me stuck, and is something that I really need help with.

 

So I was able to get most of the new characters working in my latest update of my game, apart from this weird and obscure joke char that is seemingly based upon a real life Brazilian Internet celebrity, well, at least from what I could guess. This is Jeremias, and I have just gotten him not too long ago. Don't know why, but perhaps because I was watching a random video that featured him, and thought I would give him a try.

 

Before that I can put him into my game, and while that I was correcting a few minor errors he had on FF3, there's this one part of his coding that somehow managed to confuse me a bit. Apparently, this appears to be coming from a move where he uses his motorbike to attack his opponent. It's located at the beginning of his "helpers.cns" file. This is what it used to look like before that I decided to modify it a little:

Quote

[State 192, 2]
type = ChangeState
trigger1 = AnimTime = -10
value = 01 = p2life = 1   && movecontact
value = S555,0
channel = 1
volume = 255

According to FF3, these last three lines don't appear to be valid for the ChangeState controller, but rather for the PlaySnd and StopSnd ones respectively. So I felt like I had to just eliminate them for the sake of it, and now here's really what the tricky part that I am facing. Here is what it currently looks like:

Quote

[State 192, 2]
type = ChangeState
trigger1 = AnimTime = -10
value = 01 = p2life = 1 && movecontact

Honestly, I can't seem to figure out if the current last line of his coding is valid or not. I tried to adjust it by renaming the "value" part to another "trigger1" or "trigger2", but I haven't even figured out what's the best solution yet. This is something that I have not seen in any other char's CNS files before, but most likely just for him.

 

But does anyone know if this last line that I highlighted is still correct by any chance? If it isn't, do you think I might just have to rewrite it to any of the two solutions I mentioned above? Just to let you guys know. I'm curious to see what are some other good solutions I could use. 🤔

 

By the way, here's a download link to the char, in case if one of you can do any further help for me:

https://www.mediafire.com/file/4xvg4fpglpauwp5/jeremias.rar/file

  • 0
Posted

Okay. Thank you. I didn't know that it was still valid until what I just saw from those methods. Had to keep the last line that I just highlighted as the way it was written, and he works now.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...