How do you remove Skills, Weapons, Troops, Enemy, and Actor Class?

Status
Not open for further replies.

colorfulpoet

Villager
Member
Joined
Nov 1, 2013
Messages
20
Reaction score
0
First Language
English
Primarily Uses
I want to make a game that is a mystery. I want no combat, no weapons, armors, skills and that kind of thing.  I want to keep the item portion for key items, and basic items. Also I don't want my characters to have a class. What scripts do I need to change or remove in order to acheive this.  Also I don't want the level or experience to show up either. 
 
Last edited by a moderator:

Zoltor

Veteran
Veteran
Joined
Jan 18, 2014
Messages
1,550
Reaction score
211
First Language
English
Primarily Uses
I want to make a game that is a mystery. I want no combat, no weapons, armors, skills and that kind of thing.  I want to keep the item portion for key items, and basic items. Also I don't want my characters to have a class. What scripts do I need to change or remove in order to acheive this.  Also I don't want the level or experience to show up either. 
Well if you don't lay regions down, there won't be encounters, so no need to worry about that. Also if you don't assign a class to a Actor, they wont have a class.

As for equipment, and such, if you go to the menu default script, you can delete the listings for all those commands.  You could make it so you only have the item, and save command in the menu, if you wanted.

I personally removed the save command from the menu that way, as I don't want to allow saving "everywhere"(I'm gonna use priests in towns, and save points in non towns for saving) in my game.
 
Last edited by a moderator:

colorfulpoet

Villager
Member
Joined
Nov 1, 2013
Messages
20
Reaction score
0
First Language
English
Primarily Uses
What about weapons and armor from the item menu? I just want items and key items. 
 

SoulPour777

Crownless King
Veteran
Joined
Aug 15, 2012
Messages
1,093
Reaction score
104
First Language
English
Primarily Uses
N/A
Here you go:

Code:
class Window_ItemCategory < Window_HorzCommand  def make_command_list    add_command(Vocab::item,     :item)    add_command(Vocab::key_item, :key_item)  endendclass Window_MenuCommand < Window_Command  def self.init_command_position    @@last_command_symbol = nil  end  def initialize    super(0, 0)    select_last  end  def window_width    return 160  end  def visible_line_number    item_max  end  def make_command_list    add_main_commands    add_save_command    add_game_end_command  end  def add_main_commands    add_command(Vocab::item,   :item,   main_commands_enabled)  end  def add_original_commands  end  def add_save_command    add_command(Vocab::save, :save, save_enabled)  end  def add_game_end_command    add_command(Vocab::game_end, :game_end)  end  def main_commands_enabled    $game_party.exists  end  def formation_enabled    $game_party.members.size >= 2 && !$game_system.formation_disabled  end  def save_enabled    !$game_system.save_disabled  end  def process_ok    @@last_command_symbol = current_symbol    super  end  def select_last    select_symbol(@@last_command_symbol)  endendclass Scene_Menu < Scene_MenuBase  def start    super    create_command_window    create_gold_window    create_status_window  end  def create_command_window    @command_window = Window_MenuCommand.new    @command_window.set_handler(:item,      method(:command_item))    @command_window.set_handler(:save,      method(:command_save))    @command_window.set_handler(:game_end,  method(:command_game_end))    @command_window.set_handler(:cancel,    method(:return_scene))  endendclass Window_MenuStatus < Window_Selectable  def draw_actor_simple_status(actor, x, y)    draw_actor_name(actor, x, y)    draw_actor_level(actor, x, y + line_height * 1)  end  def draw_item(index)    actor = $game_party.members[index]    enabled = $game_party.battle_members.include?(actor)    rect = item_rect(index)    draw_item_background(index)    draw_actor_face(actor, rect.x + 1, rect.y + 1, enabled)    draw_actor_simple_status(actor, rect.x + 108, rect.y + line_height / 2)  endend
 
Last edited by a moderator:

colorfulpoet

Villager
Member
Joined
Nov 1, 2013
Messages
20
Reaction score
0
First Language
English
Primarily Uses
Thanks, but I still have weapons and armor showing up when I click on the item in the menu.
 

SoulPour777

Crownless King
Veteran
Joined
Aug 15, 2012
Messages
1,093
Reaction score
104
First Language
English
Primarily Uses
N/A
I edited my post. You can't see them now.
 

colorfulpoet

Villager
Member
Joined
Nov 1, 2013
Messages
20
Reaction score
0
First Language
English
Primarily Uses
Thanks.... That solves my problem. 
 

Shaz

Veteran
Veteran
Joined
Mar 2, 2012
Messages
40,098
Reaction score
13,704
First Language
English
Primarily Uses
RMMV
This thread is being closed, due to being solved. If for some reason you would like this thread re-opened, please report this post and leave a message why. Thank you.
 
Status
Not open for further replies.

Users Who Are Viewing This Thread (Users: 0, Guests: 1)

Latest Threads

Latest Profile Posts

so hopefully tomorrow i get to go home from the hospital i've been here for 5 days already and it's driving me mad. I miss my family like crazy but at least I get to use my own toiletries and my own clothes. My mom is coming to visit soon i can't wait to see her cause i miss her the most. :kaojoy:
Couple hours of work. Might use in my game as a secret find or something. Not sure. Fancy though no? :D
Holy stink, where have I been? Well, I started my temporary job this week. So less time to spend on game design... :(
Cartoonier cloud cover that better fits the art style, as well as (slightly) improved blending/fading... fading clouds when there are larger patterns is still somewhat abrupt for some reason.
Do you Find Tilesetting or Looking for Tilesets/Plugins more fun? Personally I like making my tileset for my Game (Cretaceous Park TM) xD

Forum statistics

Threads
105,868
Messages
1,017,078
Members
137,580
Latest member
Snavi
Top