CHRONO TRIGGER SKILL LEARNING

RPG Maker XP

Skills like in Chrono Trigger.

Chrono Trigger Skill Learning
Authors: game_guy
Version: 1.0
Type: Custom Skill Learning
Key Term: Actor Add-on


Introduction

Remember the good old game Chrono Trigger? You already knew skills but you couldn't just use them yet. Each skill needed a certain amount of "AP" to use. You got AP from enemies. Well this script is pretty much the same. If that doesn't make sense then pretty much all it does is make it so you learn skills the same way you did in Chrono Trigger.

If thats not explanatory enough let me make it simpler. You learn skills. You can't use them until you get enough AP for them. Once you have enough AP for them, you can then use them. You get AP from enemies. Simple?

Features

  • Easily setup AP for Enemies
    Easily setup AP for Skills
    Display amount AP the skill needs


Screenshots



Demo

MediaFire

Script

Add this patch below this script if you are using Blizz-ABS.
module BlizzABS
  class Processor
    alias gg_add_ap_ct_abs_lat remove_enemy
    def remove_enemy(enemy)
      gg_add_ap_ct_abs_lat(enemy)
      ap = GameGuy.enemyptz(enemy.enemy.id)
      for i in $game_party.actors
        arrayt = $game_system.pointsa[i.id]
        for j in i.skills
          $game_actors[i.id].add_points(j, ap)
        end
      end
    end
  end
end
$BlizzABS = BlizzABS::Processor.new


Instructions

Instructions are in the script.
If you're using the Blizz-ABS version place it below Blizz-ABS.

Compatibility

Not tested with SDK.
Seperate version made for Blizz-ABS.

Credits and Thanks

  • game_guy ~ for making it
    Chrono Trigger ~ for inspiring me to make this


Author's Notes

Please post any bugs or questions! Enjoy!