How can I create this kind of Attack?

● ARCHIVED · READ-ONLY
Started by Plasmatic 5 posts View original ↗
  1. How can I make my own attack which deals damage AND decreases the users Defense?

    If I want to deal damage on the enemie I have to switch the Attack to 'One Enemie'

    but If I want to decrease the defense of the user of the attack I have to switch it on 'User'

    How can I switch it, that it will deal dmg AND decrease the users defense?
  2. You'll need to add ruby commands to the damage formula. There is a topic on how to use the damage formula that shows you a lot of different commands to add other effects to a skill, search for it in the forum here.
  3. Andar said:
    You'll need to add ruby commands to the damage formula. There is a topic on how to use the damage formula that shows you a lot of different commands to add other effects to a skill, search for it in the forum here.
    Could you send me the link?

    Im new on this forum and I cant find anything :/
  4. I've moved this thread to VX Ace Support (tech support is for program-not-running type of problems, not "how to do xyz in the editor"). Please be sure to post your threads in the correct forum next time. Thank you.


    A simple search for "damage formula" in the forum search box revealed heaps of threads. The one Andar is referring to was at the bottom of the first page.


    http://forums.rpgmakerweb.com/index.php?/topic/1143-how-to-make-the-most-of-custom-formulae-part-1/
  5. a simple damage formula:

    a.add_state(state_id);damaging_damage_formula_here
    so like if my defense state is state 10, and I want it to deal 5x atk as damage

    Code:
    a.add_state(10);a.atk*5