Make your skills MORE INTERESTING and dynamic with this tip 😲

  Рет қаралды 34,561

RunTheMC

RunTheMC

Жыл бұрын

Showing how to add variables into your damage formulas! #rpgmakermz #rpgmakermv #games #development #rpg #rpgmakerunite

Пікірлер: 47
@reapertsaku989
@reapertsaku989 3 ай бұрын
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 7 ай бұрын
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 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 4 ай бұрын
@@marcdzik over for you
@RashidMBey
@RashidMBey 3 ай бұрын
​@@marcdzikDid you know? Did you know that people TEST games? lmfao
@josephjoshuamadine1293
@josephjoshuamadine1293 Ай бұрын
Jesus loves you. He is your savior. Repent for the kingdom of God is at hand!耶穌愛你,請相信衪。天國近了,你們應當悔改。
@tk_mitternacht963
@tk_mitternacht963 5 ай бұрын
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. 3 ай бұрын
I had some of those in my game and another separate skill that instakills
@PewPew_McPewster
@PewPew_McPewster 9 ай бұрын
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 9 ай бұрын
I gotta play FFXII again soon 🥺
@aoki_ch
@aoki_ch Жыл бұрын
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.
@marcdzik
@marcdzik 4 ай бұрын
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
@leoretro64studio18
@leoretro64studio18 10 ай бұрын
I want a script, just like a Kamikazee kind of attack from Dragon Quest like your lose HP while your attack
@blindedjourneyman
@blindedjourneyman Жыл бұрын
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 Жыл бұрын
Really glad I could help! Time is a precious resource, especially if you're a solo dev lol happy I could save you some 😁
@b.heaven9234
@b.heaven9234 9 ай бұрын
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 9 ай бұрын
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 9 ай бұрын
@@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?
@Cuprite1024
@Cuprite1024 6 ай бұрын
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.
@Ssparda-dmc
@Ssparda-dmc 9 ай бұрын
Late to the party, but very informative video, many thanks ! Creative thinking is i think one of the most fun aspect of Rpgmaker. :)
@agingbach4351
@agingbach4351 5 ай бұрын
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 5 ай бұрын
Damn I felt this
@jayjasespud
@jayjasespud 7 ай бұрын
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 7 ай бұрын
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 7 ай бұрын
@@runthemc I misremebered its Ipsen's Castle that has that mechanic. Good idea about using an element.
@papipepino.
@papipepino. 3 ай бұрын
Need one where it leaves every target with 1 hp
@PinkDeavill
@PinkDeavill 2 ай бұрын
Use a skill that uses a common eveant
@user-go1oz2bp8z
@user-go1oz2bp8z Ай бұрын
Damage = b.hp-1 with 0% variance.
@Meiqyu
@Meiqyu 10 ай бұрын
Is this usable on MV too?
@runthemc
@runthemc 10 ай бұрын
The differences between MV and MZ are hard to remember sometimes but I do believe that functionality is the same so yes!
@Whosaneca
@Whosaneca 9 ай бұрын
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.
@johnjuiz5755
@johnjuiz5755 7 ай бұрын
Could you send the formula for that example skill? Thanks in advance!
@jayjasespud
@jayjasespud 7 ай бұрын
I believe it's in another video.
@OkkotsuJujutsu
@OkkotsuJujutsu 23 күн бұрын
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
@bang1054
@bang1054 10 ай бұрын
0:00
@jayjasespud
@jayjasespud 7 ай бұрын
Lol
@daniel1756z
@daniel1756z Ай бұрын
What rpg maker version is this?
@runthemc
@runthemc Ай бұрын
MZ
@yunobogoron223
@yunobogoron223 2 ай бұрын
I have a very op skill that gets stronger as you keep using it (+100 damage each time)
@coolio822
@coolio822 6 ай бұрын
RPG MAKER?!?!??!
@ShidoLionheart
@ShidoLionheart 29 күн бұрын
Wow I didn’t know that you can use damage formulas for your skills 😮 Ps I’m sarcastic
@blake8145
@blake8145 Ай бұрын
eat enemies
@Aidan-ku6tz
@Aidan-ku6tz 9 ай бұрын
is this in mv?
@runthemc
@runthemc 9 ай бұрын
This is MZ but it should still work in MV!
@somerandom7672
@somerandom7672 5 ай бұрын
"Make your skills more interesting and dynamic with this tip." Tip: Use your imagination.
@blamfrancis5728
@blamfrancis5728 5 ай бұрын
do you have discord?
@runthemc
@runthemc 5 ай бұрын
discord.com/invite/pqyfuqgQj7
The JRPG that does everything wrong | - Arcane Raise - Review
20:31
How Much Money my Mobile Game Made (After 1 month)
5:24
Pixel Tribe Game
Рет қаралды 872 М.
I CAN’T BELIEVE I LOST 😱
00:46
Topper Guild
Рет қаралды 54 МЛН
Дибала против вратаря Легенды
00:33
Mr. Oleynik
Рет қаралды 3,6 МЛН
Вечный ДВИГАТЕЛЬ!⚙️ #shorts
00:27
Гараж 54
Рет қаралды 7 МЛН
I Made the Same Game in 8 Engines
12:34
Emeral
Рет қаралды 3,9 МЛН
How Do You Improve Turn Based Combat?
17:43
Design Doc
Рет қаралды 750 М.
RPG Maker MV Tutorial: 20 Epic Tips and Tricks!
11:01
Echo607
Рет қаралды 308 М.
What’s the Difference Between RPG Maker MV and MZ?
7:15
Cazwolf
Рет қаралды 117 М.
How to ACTUALLY get into Gamedev
14:01
DaFluffyPotato
Рет қаралды 690 М.
Parallax Mapping in RPG Maker MZ
14:25
LvL Up Design
Рет қаралды 99 М.
RPG Maker MV: How to add Player Housing you can upgrade
13:54
LvL Up Design
Рет қаралды 35 М.
Реальнее чем в жизни ( Bodycam )
14:10
JOHAN
Рет қаралды 1 МЛН
FUN&SUN | Update 0.29.0 Trailer | Standoff 2
2:32
Standoff 2
Рет қаралды 1,5 МЛН