Make your skills MORE INTERESTING and dynamic with this tip 😲

Поділитися
Вставка
  • Опубліковано 3 жов 2024
  • Showing how to add variables into your damage formulas! #rpgmakermz #rpgmakermv #games #development #rpg #rpgmakerunite

КОМЕНТАРІ • 57

  • @reapertsaku989
    @reapertsaku989 6 місяців тому +25

    I made a tech demo for an emotion system that not only effected skills, but also effected stats, where even the things happening in the battle can change your emotion in real time.

  • @catholicphoenix7969
    @catholicphoenix7969 10 місяців тому +46

    This is a great video. It's given me an idea. Universal Damage multiplier. On harder difficulties, everyone does more damage (Players and enemies) so that fights end quicker and are more brutal. It's a way to avoid the bullet sponge problem.
    My idea for it is that every attack has an addition at the end called (v[difficulty mod]x50).
    Easy mode = 0
    Medium mode = 1 (+50 damage)
    Hard mode = 2 (+100 damage)

    • @marcdzik
      @marcdzik 7 місяців тому +4

      instructions on how to make the game unplayable and frustrating for people who choose the tank or healer class at the start (milion of hits because you don't choose DPS playstyle). An example of a game that entertains the author and not necessarily the players

    • @ZigliY
      @ZigliY 7 місяців тому

      @@marcdzik over for you

    • @RashidMBey
      @RashidMBey 6 місяців тому

      ​@@marcdzikDid you know? Did you know that people TEST games? lmfao

    • @josephjoshuamadine1293
      @josephjoshuamadine1293 4 місяці тому

      Jesus loves you. He is your savior. Repent for the kingdom of God is at hand!耶穌愛你,請相信衪。天國近了,你們應當悔改。

    • @superizillian957
      @superizillian957 27 днів тому

      @@marcdzik Just dont make a tank class

  • @aoki_ch
    @aoki_ch Рік тому +30

    I use variables for decreasing damage.
    Damage Formula:
    v[0] = v[0] || 1; damage = 100 * v[0]; v[0] *= 0.8; damage;
    Finally, reset the variable #0 in the skill’s common event.

  • @PewPew_McPewster
    @PewPew_McPewster Рік тому +7

    FFXII had some really great examples. One did damage based on the number of steps you had taken, one always did 1.5x the multiplier of your weapon, one always crits against flying enemies, one did a flat 1000 (1000 Needles), others worked only if the target's level was a multiple of 5, 7, 9, or was Prime

    • @runthemc
      @runthemc  Рік тому +1

      I gotta play FFXII again soon 🥺

  • @ramaum
    @ramaum 2 місяці тому +2

    I created a damage multiplier called: lethality mode. This mode allows the player to multiply the damage caused and received by up to 3x. It's good for players who like quick battles.

  • @jtspgs1986
    @jtspgs1986 24 дні тому

    i think some spells that work better or worse in certain areas is a neat idea i am toying with. for example a fireball spell is stronger in an ice envierment, but weaker in the dessert (because fire melts ice but weaker in any underwater areas)

  • @tk_mitternacht963
    @tk_mitternacht963 9 місяців тому +11

    Been thinking about damages that increasing in value based on the ailments the target suffered like the more bleeding status the target has the stronger the skill affects the target

    • @papipepino.
      @papipepino. 6 місяців тому +1

      I had some of those in my game and another separate skill that instakills

  • @marcdzik
    @marcdzik 7 місяців тому +1

    I have a system from the old Might and Magic games and D&D games: body-mind-spirit. An orc is an example of a monster with a strong body and weak intellect (e.g. it will break free from physical immobilization techniques and will be susceptible to mind control). Paladin is a person with a strong (fighting) spirit. He will be more resistant to the orc's intimidating shout (debuff) and will have buff skills himself (inspiration for others). An ordinary knight does not have such a strong spirit. Examples of characters casting spells on a spirit are, for example, the seduction of a succubus, the song of a siren, a necromancer's spell directly hurting the soul

  • @Niko01_potato
    @Niko01_potato 2 місяці тому

    One of the swords at black souls 2 adds three skills that uses% of your hp (10, 15,20)

  • @blindedjourneyman
    @blindedjourneyman Рік тому +9

    thanks, even with my hands on the scriptcall list outside of logging each one individually its a pain to learn what they do and how to use em XD (but am doing that) your vids help save me a few minutes of fighting with a few seconds of watching lol

    • @runthemc
      @runthemc  Рік тому +2

      Really glad I could help! Time is a precious resource, especially if you're a solo dev lol happy I could save you some 😁

  • @leoretro64studio18
    @leoretro64studio18 Рік тому +5

    I want a script, just like a Kamikazee kind of attack from Dragon Quest like your lose HP while your attack

  • @b.heaven9234
    @b.heaven9234 Рік тому +1

    I have growing interest in using RPG Maker. As a programmer and a gamer, I have a bunch of ideas but unsure if RPG Maker can do it before I buy one.
    This short serves as proof of concept for me with regards to custom skills. Quite helpful. Thanks

    • @Whosaneca
      @Whosaneca Рік тому +2

      If you can program in javascript you can basically write in whatever functionality you want if you use MV or MZ in the form of a plugin. Older RPG Maker's you would need to know Ruby Script.

    • @b.heaven9234
      @b.heaven9234 Рік тому

      @@Whosaneca I heard RPG maker uses Ruby so I thought I had to learn a new language. I'm pretty comfy with JS so that's a plus for me.
      What is this about plugins though? Are plugins RPG Maker's idea of a custom module script?
      Is MZ a good enough tool? There won't be any new versions coming in the near future right?

  • @agingbach4351
    @agingbach4351 8 місяців тому +1

    Been thinking about how to make a game and now I realize that all the tools are already made and I should spend less time thinking and more time just making prototypes

    • @runthemc
      @runthemc  8 місяців тому

      Damn I felt this

  • @Ssparda-dmc
    @Ssparda-dmc Рік тому

    Late to the party, but very informative video, many thanks !
    Creative thinking is i think one of the most fun aspect of Rpgmaker. :)

  • @Cuprite1024
    @Cuprite1024 9 місяців тому +1

    One of my prototypes has an alignment system, so I could probably have some values and/or effects change based on that if I keep it.

  • @jayjasespud
    @jayjasespud 10 місяців тому +1

    I wonder if you could somehow rig a system like Oeilvert in FF9, where in the area weaker weapons are strongest.
    Also, that game had a skill that increased damage based on how many frogs a character had caught (and eaten).

    • @runthemc
      @runthemc  10 місяців тому +2

      Doing extra damage based on the frog count is definitely possible and would be fairly easy with a damage formula adjustment.
      The Oeilvert mechanic is interesting though, I'd love to try to tackle that. My initial thought is to have the enemies in the area weak to a certain weapon trait that those weapons have that doesn't really do anything in the rest of the game and the enemies in the area are resistant to everything else.

    • @jayjasespud
      @jayjasespud 10 місяців тому +1

      @@runthemc I misremebered its Ipsen's Castle that has that mechanic.
      Good idea about using an element.

  • @speedshadow9903
    @speedshadow9903 11 днів тому

    Nice, but I have a question, how do we integrate the variables we want? It's like v[the number of the variable] or how?

  • @johnjuiz5755
    @johnjuiz5755 11 місяців тому

    Could you send the formula for that example skill? Thanks in advance!

    • @jayjasespud
      @jayjasespud 10 місяців тому

      I believe it's in another video.

  • @LuckyLeofClove
    @LuckyLeofClove 4 місяці тому

    How does it work though?
    For example do I do : 10 + v[variableID]
    Just asking since this would be a good mastery system for my game

  • @yunobogoron223
    @yunobogoron223 5 місяців тому +1

    I have a very op skill that gets stronger as you keep using it (+100 damage each time)

  • @papipepino.
    @papipepino. 6 місяців тому +1

    Need one where it leaves every target with 1 hp

    • @PinkDeavill
      @PinkDeavill 6 місяців тому

      Use a skill that uses a common eveant

    • @user-KS-13
      @user-KS-13 4 місяці тому

      Damage = b.hp-1 with 0% variance.

  • @TschenseSense
    @TschenseSense 2 місяці тому

    How can you tie in relationship status in your attack

  • @somerandom7672
    @somerandom7672 9 місяців тому +3

    "Make your skills more interesting and dynamic with this tip."
    Tip: Use your imagination.

  • @lflintx
    @lflintx 10 днів тому

    Yet there is not a single step by step video tutorial in the internet explaining in depth how to properly set and use variables or common events tied to things like battles or parameters on the technical side. And especially the ones that are constantly changing to generate things like random weather effects or complex enemies A i. Everyone only says "you can do a lot of things with them" and call it a day.
    No one is questioning the usefulness of them. People wants to know how to use it

  • @cam-id9yx
    @cam-id9yx Місяць тому

    Hello I know this might be a stupid question but do you know how to make a pokemon like battle and capture system for rpg maker mv on the ps4 or is it even possible?

  • @Meiqyu
    @Meiqyu Рік тому +4

    Is this usable on MV too?

    • @runthemc
      @runthemc  Рік тому +2

      The differences between MV and MZ are hard to remember sometimes but I do believe that functionality is the same so yes!

    • @Whosaneca
      @Whosaneca Рік тому +1

      Can confirm functionality is the same. If your just getting into RPG Maker MZ and MV are similar, MZ just has more tools, but comparatively has less plugins since it has not been around as long, so less things you could get/buy to add more functionality. I still believe MZ to be superior at this point because of certain features it has, even though my current project of the last couple years is in MV.

  • @TschenseSense
    @TschenseSense 2 місяці тому

    How do you make pixel art

  • @TheHolyGrail1756z
    @TheHolyGrail1756z 4 місяці тому +1

    What rpg maker version is this?

  • @blake8145
    @blake8145 5 місяців тому

    eat enemies

  • @coolio822
    @coolio822 10 місяців тому

    RPG MAKER?!?!??!

  • @Aidan-ku6tz
    @Aidan-ku6tz Рік тому

    is this in mv?

    • @runthemc
      @runthemc  Рік тому

      This is MZ but it should still work in MV!

  • @ShidoLionheart
    @ShidoLionheart 4 місяці тому

    Wow I didn’t know that you can use damage formulas for your skills 😮 Ps I’m sarcastic

  • @TschenseSense
    @TschenseSense 2 місяці тому

    People really use rpg maker???

  • @blamfrancis5728
    @blamfrancis5728 8 місяців тому +1

    do you have discord?

    • @runthemc
      @runthemc  8 місяців тому

      discord.com/invite/pqyfuqgQj7

  • @bang1054
    @bang1054 Рік тому +1

    0:00