Skill Charges
MARCH 15, 2012
By Fomar0153Last Updated: 15 March 2012 (Version 1.0)
Download Link: http://pastebin.com/raw.php?i=ukLFX1Zh
This script can implement two new features. The first is skill charges, each time you learn a skill you gain a charge in it and you’re allowed to use that skill only as many times as you have charges per battle. The second feature is that each time you learn a skill after initially learning it the skill gets more powerful. Using both features together allows for your skills to get weaker each time you use a charge.
Also here endeth the daily scripts. RPG Maker VX Ace is out and I want to get on with RPG Making, I will still be releasing scripts, just not daily.
2
Specific Actor Items
MARCH 14, 2012
By Fomar0153Last Updated: 14 March 2012 (Version 1.0)
Download Link: http://pastebin.com/raw.php?i=qpJ96CK0
This script allows you to specify some items to only be used on certain actors, my use for this is skill tomes but I’m sure there are others.
2
Equipment Skills by Level
MARCH 13, 2012
By Fomar0153Last Updated: 25 July 2012 (Version 1.1)
Requires: Individual Equipment
Requires: Equipment Levels Up
Requires: AP System (Only if learning skills permanently)Requires: Equipment Skills
Download Link: http://pastebin.com/raw.php?i=RJWwwLy4 (Version 1.1)
This is an add-on which provides compatibility between my Individual Equipment Script, Equipment Levels Up and my Equipment Skills script and also provides a new feature – the ability for skills to unlock on the weapon as you level the weapon up.
1
Infinite Levels
MARCH 12, 2012
By Fomar0153Last Updated: 12 March 2012 (Version 1.0)
Download Link: http://pastebin.com/raw.php?i=p2Dv3EjR
Lets you set a max level higher than 99 and provides stat formulas for all levels.If you truly want infinite levels set max_level to return @level + 1
Also I’ve had enough of daily scripting, I’m going to stop it on the 15th.
0
Elementalist Class
MARCH 11, 2012
By Fomar0153Last Updated: 02 April 2012 (Version 1.1)
Requires: Unique Classes
Stand Alone Version: Learn Skills by Element use
Download Link: http://pastebin.com/raw.php?i=3xiq2WXE (Version 1.1, 02 April 2012)
Download Link: http://pastebin.com/raw.php?i=c18AKbnG (Version 1.0, 11 March 2012)
Allows you to learn new skills by using skills of the same element.
Note: Just finished Mass Effect 3, I’m joining the groups of people not happy with the ending.
1
Learn Skills by Element use
MARCH 10, 2012
By Fomar0153Last Updated: 02 April 2012 (Version 1.1
)Download Link: http://pastebin.com/raw.php?i=WBE27kJD (Version 1.1, 02 April 2012)
Download Link: http://pastebin.com/raw.php?i=KsKVuJV4 (Version 1.0, 10 March 2012)
Allows you to learn new skills by using skills of the same element.
2
Nickname Changer
MARCH 9, 2012
Who likes nicknames? I’d rather know surnames or ages. Yes this is a cop out, Mass Effect 3 happened.
=begin
Nickname Changer
by Fomar
=end
module Fomar
NICKNAME_VOCAB = "Surname: "
end
class Window_Base < Window
#--------------------------------------------------------------------------
# ● I'd rather know their surname.
#--------------------------------------------------------------------------
def draw_actor_nickname(actor, x, y, width = 180)
change_color(normal_color)
draw_text(x, y, width, line_height, Fomar::NICKNAME_VOCAB + actor.nickname)
end
end
1
Secondary Classes
MARCH 8, 2012
By Fomar0153Last Updated: 08 March 2012 (Version 1.0)
Download Link: http://pastebin.com/raw.php?i=EhB0dWer
This script allows you to give a character a second class they can learn some or all of that classes skills and optionally inherit all of the secondary classes traits and a percentage of it’s paramaters.
3
Barehand Script
MARCH 7, 2012
By Fomar0153Last Updated: 07 March 2012 (Version 1.0)
Download Link: http://pastebin.com/raw.php?i=V9guxYgE
This script allows you get a character’s atk without the weapon’s stats beingapplied. I’m likening it to a barehanded monk attack.
Shortest script of mine ever… I think. I’ve been pretty busy hopefully at the weekend I can make up for it with some more impressive scripts.
1
Skills Replace Skills
MARCH 6, 2012
By Fomar0153Last Updated: 06 March 2012 (Version 1.0)
Download Link: http://pastebin.com/raw.php?i=MmNTF5rJ
This script allows you to have skills replace each other when learnt.
21