RMRK is retiring.
Server is paid up for the rest of 2026, but the forum may go after that. See here for more information. Please archive or save anything you would like to keep before 2027.
Main Menu
  • Welcome to The RPG Maker Resource Kit.

menu and battle menu

Started by Crimson~X, December 02, 2010, 03:25:13 AM

0 Members and 1 Guest are viewing this topic.

Crimson~X

with Image23 I was wondering if anyone could tell me how to put that in the middle since there is only 1 playable char and with Image26 how to make that smaller so it doesn't looks so ugly and out of place

thanks :)





modern algebra

Try Tons of Addons at Chaos Project. I am under the impression that Blizzard made a script for it.

Crimson~X

I put all 3 parts in order and I got this message:

Script 'Tons of Add-ons 02' line 1321 NoMethodError occurred.
undefined method 'MONSTER-AREAS' for #<Game_System:0x4943620>


modern algebra

#3
OK, hrm... well go into TOns of Addons 02 and look for this section of the script:


#::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
# I suggest you don't edit anything below this line except for the
# configurations for the add-ons.
#::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

  attr_accessor :FPS_MODULATOR
  attr_accessor :SPEED_MODULATOR
  attr_accessor :DEATH_TOLL
  attr_accessor :WINDOW_BATTLERESULT
  attr_accessor :UNIQUE_SKILL_COMMANDS
  attr_accessor :HEAL_AT_LVLUP
  attr_accessor :HPSPPLUS
  attr_accessor :TARGET_EM_ALL
  attr_accessor :QUICK_PASSABILITY_TEST
  attr_accessor :MINIMAP
  attr_accessor :ENEMY_STATUS
  attr_accessor :PASSIVE_SKILLS
  attr_accessor :SKILL_SEPARATION
  attr_accessor :MULTI_HIT
  attr_accessor :EQUIPMENT_REQUIREMENT
  attr_accessor :ITEM_REQUIREMENT
  attr_accessor :HP_SP_CRUSH
  attr_accessor :ROULETTE
  attr_accessor :CHAIN_STATUS
  attr_accessor :ACTOR_ITEMS
  attr_accessor :HP_PERCENT_STATES


Add this line directly below attr_accessor :HP_PERCENT_STATES:


  attr_accessor :MONSTER_AREAS


IE. it should look like this:


#::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
# I suggest you don't edit anything below this line except for the
# configurations for the add-ons.
#::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

  attr_accessor :FPS_MODULATOR
  attr_accessor :SPEED_MODULATOR
  attr_accessor :DEATH_TOLL
  attr_accessor :WINDOW_BATTLERESULT
  attr_accessor :UNIQUE_SKILL_COMMANDS
  attr_accessor :HEAL_AT_LVLUP
  attr_accessor :HPSPPLUS
  attr_accessor :TARGET_EM_ALL
  attr_accessor :QUICK_PASSABILITY_TEST
  attr_accessor :MINIMAP
  attr_accessor :ENEMY_STATUS
  attr_accessor :PASSIVE_SKILLS
  attr_accessor :SKILL_SEPARATION
  attr_accessor :MULTI_HIT
  attr_accessor :EQUIPMENT_REQUIREMENT
  attr_accessor :ITEM_REQUIREMENT
  attr_accessor :HP_SP_CRUSH
  attr_accessor :ROULETTE
  attr_accessor :CHAIN_STATUS
  attr_accessor :ACTOR_ITEMS
  attr_accessor :HP_PERCENT_STATES
  attr_accessor :MONSTER_AREAS
end

Crimson~X

awesome, it works now, thanks alot