- Joined
- Jul 18, 2014
- Messages
- 222
- Reaction score
- 13
- First Language
- English
- Primarily Uses
- RMMV
I can utilise...
within a for loop like...
to find a specific event within a map. However, added events (such as spawned events via Galv's plugin) aren't part of $dataMap and this method cannot work.
I've tried various ways for $gameMap...
but I'm unsuccessful. Is it possible? I don't fully understand the difference between dataMap and gameMap. I assume dataMap is static data created when the game is loaded, while gameMap is dynamic and changes during gameplay. Is it that gameMap doesn't possess the note box property?
Code:
if (~$dataMap.events[id].note.indexOf("")) { }
Code:
(var id = 0; id < $dataMap.events.length; id++)
I've tried various ways for $gameMap...
Code:
$gameMap.events()[id].note.indexOf("")
$gameMap.event(id).note.indexOf("")
$gameMap._events[id].note.indexOf("")

