Preserved forum archive. This topic stores the original first post and locally mirrored RPG Maker Web attachments when available. It is posted by the BMMPlay archive account, not by the original creator.
Original Source
- Original title: Stat distribution
- Original author: TDS
- Original date: August 22, 2012
- Source thread: https://forums.rpgmakerweb.com/threads/stat-distribution.4309/
- Source forum path: Game Development Engines > Ruby Game System (RGSS) Scripts > RGSS3 Scripts (RMVX Ace)
Summary
Instant Event Commands 1.0 by TDS
Archived First Post
Instant Event Commands 1.0
by TDS
Introduction
This script allows you to set and change an actor stats.
Features
- Change character stats(Parameters).
- Changing only specific stats per character.
- Setting unique stat boosting caps for characters.
- Setting unique stat increases for characters.
Screenshots
[IMG]http://i.imgur.com/RxFzG.png[/IMG]
How to Use
Instructions are on the script. And editing can be done in the settings module.
Script
Script
Credit and Thanks
- TDS
- Archeia for requesting and testing.
Author's Notes
None.
Restrictions
Only for use in non-commercial games.
Add-on for menu use:
Code:
#==============================================================================
# ** Window_MenuCommand
#------------------------------------------------------------------------------
# This command window appears on the menu screen.
#==============================================================================
class Window_MenuCommand < Window_Command
#--------------------------------------------------------------------------
# * Alias Listing
#--------------------------------------------------------------------------
alias tds_status_distribution_window_menucommand_add_original_commands add_original_commands
#--------------------------------------------------------------------------
# * For Adding Original Commands
#--------------------------------------------------------------------------
def add_original_commands(*args, &block)
# Run Original Method
tds_status_distribution_window_menucommand_add_original_commands(*args, &block)
# Add Stat Distribution Command
add_command("Stat Change", :stat_change)
end
end
#==============================================================================
# ** Scene_Menu
#------------------------------------------------------------------------------
# This class performs the menu screen processing.
#==============================================================================
class Scene_Menu < Scene_MenuBase
#--------------------------------------------------------------------------
# * Alias Listing
#--------------------------------------------------------------------------
alias tds_status_distribution_scene_menu_create_command_window create_command_window
alias tds_status_distribution_scene_menu_on_personal_ok on_personal_ok
#--------------------------------------------------------------------------
# * Create Command Window
#--------------------------------------------------------------------------
def create_command_window(*args, &block)
# Run Original Method
tds_status_distribution_scene_menu_create_command_window(*args, &block)
# Set Command Window Handlers
@command_window.set_handler(:stat_change, method(:command_personal))
end
#--------------------------------------------------------------------------
# * [OK] Personal Command
#--------------------------------------------------------------------------
def on_personal_ok(*args, &block)
# Run Original Method
tds_status_distribution_scene_menu_on_personal_ok(*args, &block)
# Command Window Current Symbol Case
case @command_window.current_symbol
when :stat_change ; SceneManager.call(Scene_Status_Distribution)
end
end
end
Features Mentioned
- Change character stats(Parameters).
- Changing only specific stats per character.
- Setting unique stat boosting caps for characters.
- Setting unique stat increases for characters.
Downloads / Referenced Files
Log in to download
Log in, then follow the RPG Maker Developers Group to see these download links.
Log in to downloadLicense / Terms Note
Credit and Thanks - TDS - Archeia for requesting and testing. Author's Notes
Creator Claims / Removal
If you are the original creator and want this listing reassigned, edited, or removed, join BMMPlay and contact the moderators with proof that matches the original RPG Maker Web profile, linked GitHub, itch.io page, or another public creator identity.
Replies (0)
No replies yet.
0
replies
1
view
Topic Summary
Loading summary...