Made for Wrigty12's 1.1.1 Event Indicators
Instructions
Essentially plug and play. Folder that goes in plugins has a file called EventIndicatorEnhancer - Graphics.txt that can be renamed to a .rb but that will overwrite the
If you'd like to change the default settings, find the code below and adjust from
I also noticed some people were having issues with some events updating, including myself. This will work for the Base Plugin as well but set up a parallel event on the same map as the events that aren't updating and add
Also included is code that sets up options for the indicators, which Wrighty12 helped a lot with.
I will add more icons in the future if I think of any, and feel free to comment some icons you'd like to have made, they're a smaller size so it shouldn't be too hard to draw a requested one.
Instructions
Essentially plug and play. Folder that goes in plugins has a file called EventIndicatorEnhancer - Graphics.txt that can be renamed to a .rb but that will overwrite the
EVENT_INDICATORS
in Wrigty's 000_Settings.rb.If you'd like to change the default settings, find the code below and adjust from
= 0
to = 1
for what you'd like to change.
Ruby:
class PokemonSystem
attr_accessor :event_icons_exist
attr_accessor :event_icons_style
attr_accessor :event_icons_move
attr_accessor :event_icons_type
alias indicator_initialize initialize
def initialize
indicator_initialize
@event_icons_exist = 0
@event_icons_style = 0
@event_icons_move = 0
@event_icons_type = 0
end
end
I also noticed some people were having issues with some events updating, including myself. This will work for the Base Plugin as well but set up a parallel event on the same map as the events that aren't updating and add
get_event(x).refresh
per event as a script command. It's also probably best to have a wait command as well so it doesn't cause issues. This solution was brought by Vendily.Each icon has 4 styles
Bubble | Animated bubble | Simple | Animated simple
The graphics folder also includes .pngs
5/3/25
Alt
5/10/25
Alt
Bubble | Animated bubble | Simple | Animated simple
The graphics folder also includes .pngs
5/3/25








Alt








5/10/25




Alt


I will add more icons in the future if I think of any, and feel free to comment some icons you'd like to have made, they're a smaller size so it shouldn't be too hard to draw a requested one.
- Credits
- Credit if Used
Ivory (Images & Code for options)
Wrigty12 (Base plugin & helped me with the code)