Jump to content

Ryon

Administrator
  • Posts

    6,420
  • Joined

  • Last visited

Reputation Activity

  1. Haha
    Ryon got a reaction from DEACTIVATED in Apply for Global Moderator   
    HA.
    You guys still deal with this guy?
    Ahahahahahahaaha
  2. Like
    Ryon got a reaction from RobotMonkeyHead in *Throws Chairs across the room*   
    Boys and girls!
    Gentlemen and Lasses!
     
    Its still amazing to see Mugen Free For All still up and running after having made this website way back in the year 2007.
    Its amazing how its been alive for more than 10 years!!
     
    Never would I ever imagine creating something so successful!
     
    and I got to say.... This place is a mess! RoboMonkeyMan, hit me up!
    (I know I left it messy)
     
    whats going on these days? whats new? whats old? what wars are waged?
    has anyone heard of Ikemen Go?
    (If you havent... ohhh my GOD. its amazing!)
  3. Like
    Ryon reacted to Noside in *Throws Chairs across the room*   
    Omg! my brother Ryon aka The Boss! welcome back!
  4. Haha
    Ryon got a reaction from PeeJay Bonobo in *Throws Chairs across the room*   
    Boys and girls!
    Gentlemen and Lasses!
     
    Its still amazing to see Mugen Free For All still up and running after having made this website way back in the year 2007.
    Its amazing how its been alive for more than 10 years!!
     
    Never would I ever imagine creating something so successful!
     
    and I got to say.... This place is a mess! RoboMonkeyMan, hit me up!
    (I know I left it messy)
     
    whats going on these days? whats new? whats old? what wars are waged?
    has anyone heard of Ikemen Go?
    (If you havent... ohhh my GOD. its amazing!)
  5. Upvote
    Ryon got a reaction from Allyallea in How to make Sprites   
    Personally I would like to add.
     
    SAVE AS PNG.
     
    DO NOT SAVE AS BMP.
     
    1. the filesize is alot bigger with BMP.
    2. Compression is better with PNG.
    3. FF can read PNG's with Palletes, and it gives you a messed up pallete with a 24bit BMP.
    4. PNG all the way. its the new standard, I feel.
  6. Like
    Ryon got a reaction from Stunner19 in Funky Wilderness(3 versions)   
    the fire could exist in the rain, even heavy rain.
     
    personally I LOVE This idea!
     
    the day time version looks beautiful! the amount of backdrop that you can see is amazing!
    the night version is good, but it lacks the mountains as day time.
    the rain version looks good as well.needs more mountains.
  7. Like
    Ryon got a reaction from Gorrinnard in Seravy's A.I. Guide   
    THERE IS NONE!
     
    Either read it or GTFO.
  8. Upvote
    Ryon got a reaction from lexxluey in How To Make A Character (Complete!)   
    Part 1 - Getting Sprites


    Part 2 - Building SFF (Ripping)


    Part 3 - Building SFF (SFF)


    Part 4 - Basic Attacks (CNS, CMD, AIR)


    Part 5 - Projectiles


    Part 6 - Helpers & Custom States


    Part 7 - Super Creation


    Part 8 - Elemental Bullet System (1)


    Part 9 - Elemental Bullet System (2)


    Part 10 - Finalizing The Character

  9. Like
    Ryon got a reaction from kinglord1112 in I'm gonna make a Sailormoon Character... which one should I make?!   
    I'm gonna make a Sailormoon Character... which one should I make?!
    Poll it baby!
     
    and ... would you believe I HAD NO IDEA, that these sprites existed!
    I've been a long time fan of Sailormoon since there original dubbing here in the USA (I know its butchered by anime standards, and that the dub was horrible, but I was freaking 6 on a school morning watching Sailormoon, It felt like a 80's sitcom but cartoony!)
     
    I've always wanted to make 1 character from the show, I love all of them its hard to pick.
    so please pick for me!
     
    Moon
    http://spritedatabase.net/file/11976
     
    Mercury
    http://spritedatabase.net/file/11975
     
    Mars
    http://spritedatabase.net/file/11974
     
    Jupiter
    http://spritedatabase.net/file/11973
     
    Venus
    http://spritedatabase.net/file/11977
     
    and NO I'm not making Sailor V.
  10. Upvote
    Ryon got a reaction from EchoCell in How To Make A Character (Complete!)   
    Part 1 - Getting Sprites


    Part 2 - Building SFF (Ripping)


    Part 3 - Building SFF (SFF)


    Part 4 - Basic Attacks (CNS, CMD, AIR)


    Part 5 - Projectiles


    Part 6 - Helpers & Custom States


    Part 7 - Super Creation


    Part 8 - Elemental Bullet System (1)


    Part 9 - Elemental Bullet System (2)


    Part 10 - Finalizing The Character

  11. Upvote
    Ryon got a reaction from EchoCell in Screenpack Tutorial   
  12. Like
    Ryon got a reaction from ramon garcia in Seravy's A.I. Guide   
    Seravy's A.I. guide from the Mugen Wiki

    Contents

    1 General Information 2 AI activation 2.1 AI activation for winmugen/beta mugen 2.2 AI activation for mugen 1.0 3 Coding AI moves 4 Common/System behavior 4.1 Guarding 4.2 Jumping 4.3 Walking
    General Information
    This guide is about coding custom AI for mugen. Custom AI means the character acts the way you program it to, and ignores the default "AI" of the engine completely. This is a very important part in characters because this is the way to make characters more intelligent, making the fight more challenging and interesting. The default "AI" doesn't know what each move is for, and just executes them randomly, more often at higher difficulty and less often on low. This however, makes the character look very dumb, because they don't know such basic things as the range and area of their attacks, so pretty often, they are punching the air, or even worse, use suicide attacks when they aren't supposed to. Creating a custom AI can prevent this kind of behavior, by telling exact rules about when and how to use the attacks. An AI consists of three parts: Activation, Commands, and common/system behavior.

    AI activation
    AI activation is the part where we decide when to turn the AI on or off.

    AI activation for winmugen/beta mugen
    Pre 1.0 mugen versions don't support custom AI directly, so activating an AI is only possible using workarounds. There were several workarounds for this, each having their own strengths and weaknesses. A quick list of the possible methods were

    Human Impossible commands Helper method XOR method Ishometeam method Winane's AI activation code combined all four together for optimal performance, however, it is pretty complicated and hard to understand. Improper, simplified implementation of the XOR or Helper methods can have false positives, so these methods are not recommended for beginners.
    Detecting the difficulty level in older mugen is impossible, so the AI will always fight on a pre-set level instead of what the player selected. Most character make it possible to select this level by directly editing a configuration file of the character, but considering how many characters you usually have in your mugen, changing difficulty level this way, one-by-one for every character is completely unreasonable. This is the main reason why winmugen is outdated, and not recommended: Being able to play on the desired difficulty level is a very basic feature, and the lack of it hurts gaming experience a lot.

    AI activation for mugen 1.0
    Mugen 1.0 and above has a new trigger: AILevel that supports custom made AI properly. By using this trigger in your AI code parts directly, you can create an AI without an activation part or variables. However, doing so is not recommended, as it reduces flexibility a lot, and makes it much harder to scale your difficulty levels, or turn the AI on/off on special conditions when necessary.
    Generally, you'll need two variables for your AI activation. The first variable is the AI variable itself. If it is set to 0, your AI is off, and if it is 1, it is on. Other values can be used if you want multiple AI modes, like a special boss mode for example. The second variable is the difficulty variable. This variable is responsible in determining the chance for attacking: higher values would attack more often, while lower values attack less often, making the AI's reaction time slower, and closer to a human player's. The two can be stored in one variable (0= AI off, 1-1000 =AI on with difficulty chance stored) if you want to save variable space.
    Example code below, it needs to be placed into one of your minus states:





    Numbers here correspond to the chance for attacking from 1 to 1000. Higher number means less reaction time. Lower number means more. Linear distribution of difficulty (using AILevel*10 for example) is not recommended. Numbers below 10-15 will make the character attack rarely, making the AI play weaker than a human. These values are recommended for the first two (easy) difficulty levels. Numbers around 20-50 are causing the AI to fight more like a human player, attacks will usually have a bit of a reaction time, but generally, the AI will not stay idle for too long and will fight actively. Numbers over 50-100 will reduce the reaction time of the AI significantly, and 1000 completely eliminates it. 1000 will also make the AI perform the first matching attack in each situation unless coded otherwise. These values are recommended for hard (6-8) difficulty levels only, as the reaction time is way faster than what a human player has. Using numbers above 300 is not recommended, as it doesn't make the AI any harder, but it does make it more determined/easier to predict.
    Average reaction time in ticks for various var(50) values, assuming a situation when only one attack is matching the triggers and is available to use (the current tick not included):

    1000 - 0, always attack immediately with the first matching attack 900 - 0.11 tick 800 - 0.25 tick 700 - 0.42 tick 600 - 0.66 tick 500 - 1 tick 400 - 1.5 ticks 300 - 2.33 ticks 200 - 4 ticks 100 - 9 ticks If we consider the human reaction time to be 1/6th of a second which is 10 ticks, then it is clearly visible that any values over 100 are way too fast against a human player for normal levels. Especially as in normal cases, multiple attacks are available for the AI, further reducing the reaction time: 2 available attacks mean half reaction time on average, three means a third, and 10 means a tenth of it only, so the zone over 100 is really meant for hard to impossible difficulty levels. As visible from this, there is basically no difference between values over 500 at all, so linear scaling fails the most in that area: the attacks get 0-1 tick of delay most of the time.
    Below 100, the reaction time increases non-linearly:

    90 - 10.1 ticks 80 - 11.5 ticks 70 - 13.2 ticks 60 - 15.6 ticks 50 - 19 ticks 40 - 24 ticks 30 - 32 ticks 20 - 49 ticks 15 - 65 ticks 10 - 99 ticks 9 - 110 ticks 8 - 124 ticks 7 - 141 ticks 6 - 166 ticks 5 - 199 ticks 4 - 249 ticks 3 - 332 ticks 2 - 499 ticks 1 - 999 ticks making it an ideal range for easy and normal difficulty levels: values below 10 have a reaction time of an entire second to many seconds, while values over 15 have 1 second or less, making it ideal for normal difficulty. Note that characters having more attacks available per situation need slightly lower var(50) values than characters with fewer ones, so in most cases, only the half/third/fourth of this reaction time applies in reality for those situations.
    Overall, for easy levels, take numbers from the 1-15 interval, for normal, take ones from 10-50, and for hard, take from 50-200 as a general advice. Characters with more moves or better/more versatile moves will generally need lower values like 1-10 for easy, 10-30 for normal and 30-100 for hard.
    Do note that "reaction time" here means time spent doing nothing before deciding what attack to use, not time spent idle after deciding to use an attack. Also note that all of these are average values: since random is used, there is always a chance for any amount of reaction time from zero to infinite, but during a whole match duration, these even themselves out. To implement an AI that has a real, human like reaction time (delay between deciding on an attack and using it), a more complicated and advanced system is necessary, where you use a timer variable and buffer the attacks that need to be executed, although I don't see much of a reason to go that far: if you want your AI to mess up and use attacks at the wrong timing, you can do that in an easier way by adding low level specific triggers to your attacks, instead of simulating a reaction time.

    Coding AI moves
    This is the part where you tell the AI when and how they are supposed to use the moves available. It works pretty much the same way as for the player, except for the conditions themselves. They are changestates that need to activate when the AI wants to use the move, and are placed in state -1. They can be placed in state -3 as well, but placing them into -1 makes more sense. These are pretty much the AI equivalent of a human player's command input.
    First of all, while the AI is on, we must disable all human player commands from working. The engine spams player commands (this is how the built in AI of the engine works: it simulates commands coming from the keyboard), and we don't want these to have any effect on our character. To do this, add

    Triggerall=var(59)>0 to all of your regular command changestates. Then, to make the AI able to use the commands, you must make a copy of that changestate, remove the conditions limited to human players (this almost always only means the command="xxx" lines), and add new ones for the AI. An example:





    This is a command block for a human player, it describes a super move that can be used when at 3000 or more power, and below half of maximum life while standing and having control, or as a combo after an attack coded in state 1000. The AI equivalent would be





    You can also merge the player and the AI command activation into a single command block, like this:





    If you code your AI using the same merged block for human and AI commands, updating conditions on the attack is easier. For example if you want to reduce the cost from 3000 to 2000, or update the attack so that is also works when used in the air, or want to add it as a combo after different attacks, you only need to change it in one place instead of two. This not just reduced your future work, but also eliminates a possible inconsistency: if you update one of them and forget about the other, you might end up with an attack that works under different conditions for the player than the AI unintentionally.

    Common/System behavior
    There are a few things a character do without using a move defined in the cmd, and these are:

    -Jumping -Guarding -Walking If we want to have control over these the way we have over normal attacks, we have to code for it.

    Guarding
    To make the AI guard properly, two steps are necessary. The first is a changestate in state -1 to enter the guard states when we want to. This one works well:





    Adding Trigger=!Inguarddist to AI attacks greatly helps against taking unnecessary hits, and increases chance of guarding the attack some ticks later if the guarding chance didn't trigger yet (but still fast enough against slower attacks).. Without that, the character will start to execute an attack, and end up getting hit too often, making the AI to dumb. This makes the AI behave like a player, the slower an attack is, the higher the chance that it will be guarded. Generally, you will want to have this line on all of your AI attacks except light punches or other very fast moves, or moves with invincibility.
    The other part of an AI guarding is keeping the AI in the guarding states long enough, and making it go to the appropriate one for each situation. You need to override all the guard states for that. If you don't want to change the conditions on which the AI changes from crouch to stand guarding or back, you can use the code below:





    The reverse, making the character not jump when the up button is pressed, or at least limiting how ofter that happens (default AI likes to jump way too often, which makes fights annoying) can be done by overriding state 40:





    Note, that if you do not want your standing animation to get restarted from frame 0, you need to change your anim=40 line into a changeanim placed below the changestate to state 0

    Walking
    Usually, there is no need to code for walking for two reasons. If you want your AI to move closer/further, you'll use the running moves instead, as most characters have those. Walking is less optimal than running. The walking done by the default AI doesn't hurt character performance either, so there is no need to disable it usually. At least the character does something when idle for a long time at low difficulty levels instead of just standing.

    This guide was created by Seravy.
  13. Haha
    Ryon got a reaction from fenwick in Video Game Series You Want To See Revived   
    I never got into Def Jam, Thrill Kill was such a bad game for what it is.
    Its funny how it was built based off the wu tang shaolin style game.
  14. Like
    Ryon got a reaction from Superkingkong65 in Android 18   
    Android 18
     
    Shes getting close to perfect, but I have several bugs to fix and the level 3 to do.

    Since I've released several characters in this style, Are there any opinions on this gameplay style?
    Should I remove the super ports ?
    Should I make more in this style?
    Why do I hate Gohan?
    Why do I hate Buu's?
  15. Upvote
    Ryon got a reaction from CoolAnimeHustler in [STAGE] Puma Mountain by CoolAnimeHustler   
    Yo, I could always count on you to find good music for a stage!
     
    Thats what I love about you!
     

  16. Upvote
    Ryon got a reaction from Emaserranista in Death Adder MVC Style   
    Death Adder MVC Style
    // Preview \\

     
    // Download \\
    https://www.mediafire.com/file/pcqmcmr3j1hv8sw/MVC_Death_Adder.rar
    https://1drv.ms/f/s!AuXptN8AdWGVgyu_q5U0GUc-Ioa-
     
    // Comment \\
    This is a strange conversion, But it plays Soooooooo well!
    Anyone who is interested in a decently playing MVC Death Adder character this is your one stop shop!
     
    6 Buttons
    3 Specials
    2 Hypers
    MVC graphics and gameplay style.
     
    I feel like I have more work to do on him but he is as of now complete.
    Feedback is greatly appreciated as always!
  17. Upvote
    Ryon got a reaction from TheRedBeast in RWBY from BlazBlue Cross Tag   
  18. Like
    Ryon got a reaction from WlanmaniaX in Android 18   
    Android 18
     
    Shes getting close to perfect, but I have several bugs to fix and the level 3 to do.

    Since I've released several characters in this style, Are there any opinions on this gameplay style?
    Should I remove the super ports ?
    Should I make more in this style?
    Why do I hate Gohan?
    Why do I hate Buu's?
  19. Upvote
    Ryon got a reaction from CoolAnimeHustler in Android 18   
    Android 18
     
    Shes getting close to perfect, but I have several bugs to fix and the level 3 to do.

    Since I've released several characters in this style, Are there any opinions on this gameplay style?
    Should I remove the super ports ?
    Should I make more in this style?
    Why do I hate Gohan?
    Why do I hate Buu's?
  20. Haha
    Ryon got a reaction from kater15 in [STAGE] Isabeau's Home by kater15   
    This house needs a bed and kitchen!
  21. Upvote
    Ryon got a reaction from CoolAnimeHustler in [STAGE] Training On Mt. Terror by CoolAnimeHustler   
    Hey bro, I was wondering did you watch my stage tutorial video?
  22. Upvote
    Ryon got a reaction from CoolAnimeHustler in [STAGE] Nice Afternoon In The City by CoolAnimeHustler   
    This is a good attempt at a stage sir, But you can do this alot better. I'll PM you.
  23. Upvote
    Ryon got a reaction from kater15 in [STAGE] Nice Afternoon In The City by CoolAnimeHustler   
    This is a good attempt at a stage sir, But you can do this alot better. I'll PM you.
  24. Upvote
    Ryon got a reaction from CoolAnimeHustler in Dragon Ball FighterZ Style Freiza   
    Dragon Ball FighterZ Style Freiza
    [Preview]
     
    [Download]
    http://www.mediafire.com/file/cn1xusdj0itadro/DBFZ_Freiza.rar
     
    [Read Me]
    Dragon Ball FighterZ Freiza (Inspired)
    Made by Ryon
    Release Date : March 21st 2018
    - Preface -
    Unlike Krillin, This version of a character is more loyal to the gameplay mechanics of FighterZ. Krillin will get a update sooner or later. I enjoy playing with Freiza in FighterZ, but I feel he is lacking in the physical attacks department, sure you can ki blast and stuff all day but Im a fighter. So for this version the sprites were so plentiful that I was able to make a Freiza who can fight you hands on AND shoot you with ki blasts all day. Cheap? Yes. Freiza? Yes.
    - Commands -
    A = Special Attacks
    X = Light Attacks
    Y = Medium Attacks
    Z = Heavy Attacks
    START = ????
    POWER CHARGE = A+X
    VANISH = Y+Z
    SUPER DASH = A+Z
    - Basic Combos -
    (Ground)
    X, X, X, X, X, X, X
    Y, Y, Y, Y
    X, X, X, Y, Y, down + Z
    (Air)
    X, X, X
    Y, Y
    X, X, X, Y, Y, Y, Z
    (Crouch)
    X, Y, Z
    - Special Moves -
    Freiza Combo = Down, Foward, X
    Death Beam = Down, Down, Attack
    - Super Moves -
    1G Next Time You'll Die = Down, Foward, A
    1G Death Saucer = Down, Back, A
    1G You Fool = Down, Down, A
    1G Death Ball (Air) = Down, Foward, A
    3G Nova Strike (Air) = Down, Back, A
    - Hyper Moves -
    7G Golden Freiza - START
    - Known Issues -
    Damage Dampener Code has issues in Mugen 1.1.
    Missing a few Sounds? Shaking?
  25. Upvote
    Ryon got a reaction from CoolAnimeHustler in Dragon Ball Fighterz Style Krillin   
    [Preview]
     
    [Download]
    http://www.mediafire.com/file/d4bbotnw334vt5a/SB_Krillin.rar
     
    [Comment]
    Krillin is a 3 button character, inspired by gameplay from the latest Dragon Ball fighting game; Dragon Ball FighterZ.
    A - Ki Blasts
    X - Light
    Y - Medium
    Z - Heavy
    A+X - Power Charge
    Y+Z - Vanish
    A+Z - Super Dash
    Combos can be done by pressing the X Y or Z buttons multiple times. This will trigger Auto Combos.
    Mix and match for best preformance!
    Supers are preformed by
    Down, Foward, Ki button
    Down, Back, Kit Button
    Using the Uno Type K tag version of Krillin
    Press Start for Assist
    Z + C for tagging in and out when standing near each other.
    Down, Foward, Z + C for tag super.
    If you enjoyed this Krillin then I have good news for you!
    Tien will be joining him soon!
     
×
×
  • Create New...