Save-Point
SkillRobber VX + ACE - Printable Version

+- Save-Point (https://www.save-point.org)
+-- Forum: Material Development (https://www.save-point.org/forum-8.html)
+--- Forum: Scripts Database (https://www.save-point.org/forum-39.html)
+---- Forum: RPGMaker VX/VXAce (RGSS2/3) Engines (https://www.save-point.org/forum-117.html)
+---- Thread: SkillRobber VX + ACE (/thread-9899.html)



SkillRobber VX + ACE - kyonides - 10-04-2024

SkillRobber VX + ACE

by Kyonides

Introduction

No, it's not a Blue Mage skill script! Tongue sticking out
Your heroes don't need to ever Skull die to learn the skill for one reason only...
They will Thief steal it themselves! Shocked

For VX
Code:
# Create the same number of Skill & State ID's in the DB.
# The new skills should include the following note tag:

# <steal skill lvl 1>

# The level increases the more useful the given skill is.
# The stealable skills may only add 1 single State depending on the mininmum
# skill level required to steal them.

module SkillRobber
  SKILL_ANIME = 49

For VX ACE
Code:
# Create the same number of Skill & State ID's in the DB.
# The new skills should include the following note tags:

# Skill Robber's Note Tag
# <steal skill lvl 1 anime 3 6>

# Stealable Skill's Note Tag
# <stealable skill lvl 1>

# The level indicates how powerful Skill Robber should be in order to learn it.
# The animations will be used for the success and failure cases. Here a fail
# actually means that your hero already knows the skill.

module SkillRobber
  MESSAGE_LEARNED = "%s already learned %s!"
  MESSAGE_SUCCESS = "%s has stolen %s from %s!"
  ROB_SKILL_NOTE_TAG = /<steal skill lvl (\d+) anime (\d+) (\d+)>/i
  STEALABLE_NOTE_TAG = /<stealable skill lvl (\d+)>/i


Terms & Conditions

Free for use in any Gamer game!
Remind a certain Dog Wulfo that Lina Inverse is paying him a visit one of these days!
Remember that stealing is bad! Thief Wizard
That's it! Tongue sticking out