Indie Dev

Hello Guest!. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, sell your games, upload content, as well as connect with other members through your own private inbox!

Search results

  1. Zarsla

    Trouble giving Weapon/Armor/Item[<Variable X>]

    For Wespons: $gameParty.gainItem($dataWeapons[$gameVariables.value(101)], 1); For Armors: $gameParty.gainItem($dataArmors[$gameVariables.value(101)], 1); You can learn the javascript commands for alot of the RPG Maker MV here.
  2. Zarsla

    Starting RPG Maker MV Videos

    First Video, Short but god the fan...
  3. Zarsla

    Updating RPG Maker MV Character Generator Files for 1.3.4

    Here's a video that shows how to update RPG Maker MV Character Generator Files for 1.3.4:
  4. Zarsla

    Starting RPG Maker MV Videos

    Waaaait...I haven't posted yet, I'm still editting the videos (seriously one is still rendering >. <).But...thank you.
  5. Zarsla

    Starting RPG Maker MV Videos

    Eventing, Plugin Usage and Database things I can do. I consider them all together so if you want some on damage formulas then sure. Just no mapping (some one suggested it on the fourm I have on rpg maker webs and I'm like I suck at mapping. _._ )
  6. Zarsla

    Starting RPG Maker MV Videos

    Hey everyone, I'm starting two rpg maker video tutorial series. One is based on my game(s), that I'm making and the stuff featured in it. And the other I wish to be based on topics that you asked. I'm not good at scripting (so no how to make a plugin tutorials) but I know my way around...
  7. Zarsla

    Damage Formulas 101 (MV Edition)

    It seems okay, I just remove the parnthesis: if (a.isStateAffected(1)&&a.isStateAffected(2)){100+a.atk*2-b.def*2;} else {o;}
  8. Zarsla

    Damage Formulas 101 (MV Edition)

    This should work: if(b.hp < (b.mhp*0.1)){200+a.atk*2-b.def*2;} else {0;}
  9. Zarsla

    Damage Formulas 101 (MV Edition)

    Yeah, it is. It's on three different fourms so I make sure when I'm working on skills or plugins that can use this short hand, I have an window open with this on it.
  10. Zarsla

    Damage Formulas 101 (MV Edition)

    I'm so glad it helped!:D. To enable skill learning assume no plugins are affecting skill learning: Under Classes, Select the class you want to learn these skills. Go to skills to learn, then in the empty space under it. A new window should pop up, for skill A, set the level to 56, and make sure...
  11. Zarsla

    Damage Formulas 101 (MV Edition)

    To Refresh: if (a.isStateAffected(44)){b.gainHp (-1*(a.mat*2-b.mdf*2)); a.resetStateCounts(44);} else {0;} Assuming you want HP damage, If you want MP damage, rename Hp to Mp. What do you mean you want a skill gained from level ups? like do you want it to be more powerful with each level? or...
  12. Zarsla

    Damage Formulas 101 (MV Edition)

    Two forumulas for you to try: 1. a.atk * 4 + 100 + a.mat * 2 - b.def * 2 - b.mdf * 2 What this fourmula means is Users atk times 4 plus 100 plus user's magic attack times two minus target's defense times 2 minus targets magic defense times 2. or this : 2. if (b.def > b.mdf) { a.mat *...
  13. Zarsla

    Damage Formulas 101 (MV Edition)

    Mashing two formulas together won't do anything. Think of the fourmula you're trying to make as a math problem. If we replace x = a.atk and y =a.mat and z = b.def and w = b.mdf you'll end up having this : x*4 + 100 y * 2 - z * 2 - w * This fourmula makes no sense what so ever. So my question...
  14. Zarsla

    What scripts would you like made?

    @Luninareph you can do that already. In the Armors/Weapons section, in that box where you can add effects and such, just click through the tabs and go to the section where you can add skills to it. In the pictures below (There from VX ACE but in this case it's the same thing as in MV): In...
  15. Zarsla

    What scripts would you like made?

    Button Mashing Mini Game is already here: https://atelierrgss.wordpress.com/rmv-theatrhythm/
  16. Zarsla

    Hello

    @DarcHiro well a word count limiter (like with twitter how you can have only 140 charaters) could help, like around a 15-30 character limit or maybe user titles as an alternative.
  17. Zarsla

    Is there any program to record MV games well?

    I'm on Win 10 and I use BB Flashback Express (It's Windows only.) However it's nice and I recommend just watch this video for a quick tutorial :
  18. Zarsla

    Hello

    @Xyphien Why not just have an other box that someone can fill out and have it show up as their RM Skill. @Macro I'm just happy to help and share my knowledge, well that and I like pushing the engine as far as I can with using as little scripting/plugins as possible. (The modest part of me wants...
  19. Zarsla

    Hello

    @MinisterJay Hi and thanks. @DarcHiro First off I love your map, and I love mapping and charater design (I can spend hours in the charater generator), and I love critiques,(more of the gameplay kind, though, I'd like mapping critiques.)
  20. Zarsla

    Hello

    Hey, I'm Zarsla. You can find me on youtube, rpgmaker.net and rpg maker fourms as Zarsla, and on twitter as @zzarsla. Pretty much I'm Zarsla on everywhere. Also quick question under the RM skills it lists designer, programmer, and scripter. I see myself as being really good with eventing and...
Top