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.
Access Active Battler from Window_BattleStatus?

0 Members and 1 Guest are viewing this topic.

***
Rep:
Level 82
We learn by living...
I'm trying to figure out how to access attributes of the current active battler (actors only) so I can post one of their attributes in the the Window_BattleStatus. I don't want to post all four actors' stats, just the current active one.

I've tried a lot of ways, like   
Code: [Select]
@actor = $game_party.actors[actor_index]
and
Code: [Select]
@actor =@active_battler

but I keep getting nil errors.