RMRK is retiring.
Registration is disabled. The site will remain online, but eventually become a read-only archive. More information.

RMRK.net has nothing to do with Blockchains, Cryptocurrency or NFTs. We have been around since the early 2000s, but there is a new group using the RMRK name that deals with those things. We have nothing to do with them.
NFTs are a scam, and if somebody is trying to persuade you to buy or invest in crypto/blockchain/NFT content, please turn them down and save your money. See this video for more information.
menu and battle menu

0 Members and 1 Guest are viewing this topic.

**
Rep: +0/-0Level 75
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 :)





*
Rep:
Level 97
2014 Most Unsung Member2014 Best RPG Maker User - Engine2013 Best RPG Maker User (Scripting)2012 Most Mature Member2012 Favorite Staff Member2012 Best RPG Maker User (Scripting)2012 Best MemberSecret Santa 2012 ParticipantProject of the Month winner for July 20092011 Best Use of Avatar and Signature Space2011 Best RPG Maker User (Scripting)2011 Most Mature Member2011 Favourite Staff Member2011 Best Veteran2010 Most Mature Member2010 Favourite Staff Member
Try Tons of Addons at Chaos Project. I am under the impression that Blizzard made a script for it.

**
Rep: +0/-0Level 75
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>


*
Rep:
Level 97
2014 Most Unsung Member2014 Best RPG Maker User - Engine2013 Best RPG Maker User (Scripting)2012 Most Mature Member2012 Favorite Staff Member2012 Best RPG Maker User (Scripting)2012 Best MemberSecret Santa 2012 ParticipantProject of the Month winner for July 20092011 Best Use of Avatar and Signature Space2011 Best RPG Maker User (Scripting)2011 Most Mature Member2011 Favourite Staff Member2011 Best Veteran2010 Most Mature Member2010 Favourite Staff Member
OK, hrm... well go into TOns of Addons 02 and look for this section of the script:

Code: [Select]
#::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
# 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:

Code: [Select]
  attr_accessor :MONSTER_AREAS

IE. it should look like this:

Code: [Select]
#::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
# 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
« Last Edit: December 03, 2010, 12:54:35 AM by modern algebra »

**
Rep: +0/-0Level 75
awesome, it works now, thanks alot