Jump to content

Алексей

Legendary Savior
  • Posts

    1,427
  • Joined

  • Last visited

Everything posted by Алексей

  1. Hello everyone, It's been brought to my attention and suggested that MFFA have a thread like this that allows people to be screened for Author, Evaluator or Creator status. This is something that Ryon used to handle exclusively, but we'll review each case and see if the claims are true. There's really only one thing that matters most about this: The user in question must have released quality work. (Quantity isn't a factor here as much and for Evaluators it would apply to more how often they provide excellent feedback) If the this doesn't apply to you, you're unlikely to receive your desired group. Now as far as the meaning behind these. They're somewhat ambiguous, so allow me to explain: Creator - A user who creates content for mugen. It could be stages, characters, and/or screenpacks. Author - A user who creates edits and lower tiers of content for mugen. Palettes, sound packs, character edits, and/or stage edits. Evaluator - A user who provides constructive criticism and feedback to creators and authors. Please try to provide some examples of the user's work – ideally the work(s) that you believe they deserve the rank for. Let the suggesting begin! P.S. I shouldn't have to say this, but... don't suggest yourself. It's about suggesting others who you feel deserve the rank on these forums.
  2. Nah, it really doesn't. Because the system has changed, so has Quilava. No worries. I'll figure something out.
  3. Well Flamethrower has 90 hits in it, for 1 damage per particle.
  4. I have attack=100 and defense=100 (mugen values) standard and Lifeadd has absolute=1 so it should be ignoring defense (mugen value). Yep, that's exactly how it is. Each particle does a part of the final base damage, but then each hit will have its own calculation, including type-effectiveness. That's probably why it's able to OHKO Venusaur.
  5. I think it's because each particle of fire is being calculated as it's own attack. Basically, each time you do damage the result is seen as base damage (with STAB applied if applicable). I'm also not sure how to remedy that without just converting it to a single-hit move.
  6. I'm only changing things if I see they're not balanced with the new system. I was doing some testing yesterday and Quilava's Flamethrower is able to destroy Venusaur and even Flame Wheel if it crits. The idea is to get as close to the way real pokemon games work as possible, while still fitting the unique parts of PCEA into the mix.
  7. Well the devs of the game are the ones editing the system. There's different ranks if you will and you're in the middle rank. Under that is tester/streamer and under that is user. So, not too bad, right?
  8. I think Quick Attack is a very useful attack – more so here than in the real pokemon games. It can be used a nice interrupt when timed properly and as a result, just adds another level of tactics to a character. If every character has super powerful moves – that are coded properly and fairly – then they loose a bit of tact and/or could be considered unfair. It's about balance and soon we'll be balancing the real damage formulas of pokemon with the unique elements of PCEA such as ATB. Remember, Speed isn't a real stat in PCEA. It's adapted to ATB recovery rate. The quicker your ATB recovers, the quicker you attack, therefore the quicker you are.
  9. Exactly. I know I messed up the original system in terms of accuracy, and there was much criticism of it, but that's exactly why it needs to change and without tears too lol.
  10. It wouldn't be any different than critiques in other works really. Hope that the criticism is constructive and ignore it if it's not. Really it's the best thing you can do.
  11. Ugh, quotes are ugly too apparently in the editor. IPS really needs to stop f*cking with my theme. >:( Sample spoiler:
  12. I think it's a bit misleading, the title that is. Ryon's involvement with the forum would be the same as it is now: Popping in to say "Hi" every now and again. I think it's just the financial responsibilities that he's looking to pass on, and therefore, ownership of the forum.
  13. We do have rules against necro-bumping. They're more strictly applied in the News and Releases sections though. Here I see no harm. To be honest, I thought I did explain it like that. Since it's something that requires you to know or be familiar with CNS, I'm not sure how I could explain it any better. Your best bet is to delve right in and see what you can do without any help, using the documentation of course to help you along. If you can't wrap your head around something, feel free to post a new thread explaining your hardships and showing your attempts.
  14. Posting things like this that don't contribute to the thread and/or are intended for flame-bait are not tolerated. Knock it off. Rice, I leave it to you to handle this.
  15. I'd like to point out that having a site like mine, MugenCoder, isn't going to decrease costs by much unless you're paying for that chat plugin here on IPS Board. If that's the case, maybe finding a free chat alternative would be better? Something 3rd party or even off-site if need be.
  16. They'd be used as triggers somewhere in the CNS. I'm assuming you didn't make the character, so look for triggers in the CMD and CNS that look like this: trigger1 = "AI_1" trigger2 = "AI_2" trigger3 = "AI_3" trigger4 = "AI_4" And so on...
  17. Yes, how many AI commands are there? You only need like 25~50 or so if you're going down that route. Remove all the others, starting from the bottom going up until you have only a max of 50 (assuming those are the bulk of your commands). You'll also have to find and remove the places they're used.
  18. That happens when there is no limitation to the activation of AI. Good AI activation methods will make sure that roundstate=2 before allowing it to activate. Roundstate is the state of your round. When it's equal to 0, it's in the pre-intro, 1 is the intro, 2 is the fight after it's started, and 3 is the end of the round. So assuming that an AI Activation method looks something like this in 1.0: ; Turn on the AI when ailevel>=0 (AI is active) and the fight as started (past intro) [State , AI Activation] type = VarSet trigger1 = ailevel && roundstate=2 var(59) = 1 ; Turn off the AI if ailevel=0 (Player has control) or the fight hasn't started yet [State , AI Deactivation] type = VarSet trigger1 = !ailevel || roundstate!=2 var(59) = 0 That's for your reference. I'd not blindly copy and paste that, but the idea is you use roundstate=2 to limit the activation until after the round actually starts.
  19. Your error assumes you have more than 128 though. My guess is that you have extra commands and those stupid AI# commands for winmugen AI Activation, prior to ailevel being a thing.
  20. While I've never run into that issue before, it's pretty obvious that you have too many commands. Reduce the amount. That's the only way to fix this. File extensions don't really matter that much in mugen. All your CNS files could be called .txt if you wanted and it wouldn't matter. They're all just text files in the end anyways.
  21. It's a part of the animation, not CNS. Open your character in FF3, go to the Animations tab, look for your Win Pose animation and set the time of the last frame to -1.
  22. The main problem here is that your State 191 doesn't actually have a ChangeState in it. Nothing is sending it to State 0 (standing state) from what I can see and all the rest of that code (the other states) have no relevance because there's nothing going to those states either. I'd add a simple ChangeState to State 191 and see where that takes you. This should suffice: [State ] type = ChangeState trigger1 = !animtime ; When you animation has reached the end value = 0 ; Go to state 0, ie. Stand ctrl = 1 ; Give control of the character
×
×
  • Create New...