Canceled Marvel First Alliance 2 - WIP

  • Thread starter Thread starter zvitor
  • Start date Start date
Project is halted prior to completion and will not receive further updates.
Status
Not open for further replies.
so this < 5 is around 55% ?
if i want 10% i should do >= 40?
Maybe I am wrong, but no.

The range between -50 to 50 have 101 values (including 0). When I say "<5" I mean the range between 5 and -5 = 10 values (4, 3, 2, 1, 0, -1, -2, -3, -4, -5). If I put <=5, it would be 11 values.

So, if we have 100 values and it happens just on 10 values = 10% (100/10).  if you wan, say, 20%, you should use "<10".

Got it?

 
ops, you are right, my bad. I forget that, unlike Mugen, BOR uses negative values on random.
it should be
int chance = rand()%100;
if (chance <0){
chance = -chance
}
if (myVar==0 && Life <= MaxHealth/2 && chance<10){
now I think its right.

or
if (myVar==0 && Life <= MaxHealth/2 && chance<5 && chance>-6){
 
great, will test it tonite,
btw, my wish is make jean peform a phoenix attack only when that happens, and recover some life bar... like a phoneix do.
 
zaxswdce3333.png

Juggenaut:
- A bigger knockback resistence to chars with power = 6, same goes to hulk and thor
- MVC sprites to his mini earthquake, it have a better range and knockback enemys
- His default run, knockback enemys and can combo with his run attack

Miss Marvel:
- More speed to her attacks
- Better effect to her Knockback attack
- 1 more air attack
- Her absorve energy attacks which incress her MP
- A extra walk sprite by Maru


Next one will be hard.... Moon Knight, any sugestion?
 
Moon Knight is about the be released on "Avengers Alliance" (developers promised to launch him in October); if you wait a little bit, you can take some ideas and bases from there.

Talking about progress, as I told zvitor by PM, Black Panther sprites are done. I'm working on the smart palette right now. It should not take long.

I have two suggestions, one about gameplay and one about graphics/sprites.
*About gameplay: when I'm playing with Iron Man, I think he is very vulnerable after his air attack (while landing). How about a cancel option, something that would made him goes down immediatelly if the player wants to?
*About sprites: I think that Thor's hammer is a little bit small. There is a good base for a bigger hammer here. ps: it's not about the handle size, it's the "head" of the hammer.
 
yea, sprites and ideias is exactly what i need about moon knight, will wait for his sprites of facebook game....
...
great job on black panther sprites, was a nice surprise.
...
about ironman i tink you missed his last video, and flymode can cancel any jump attack.
...
nice sugestion about thor, will check it when i get at "T", right now im updating the "M" chars.
 
Status
Not open for further replies.
Back
Top Bottom