diff --git a/changelog.md b/changelog.md index f61016e..2a53ef1 100644 --- a/changelog.md +++ b/changelog.md @@ -2,7 +2,6 @@ - Launch scripts updated - Fixed the custom command manager (the @CommandChatReturn annotation was removed as unnecessary) -- Fixed NVG context closing - Minor bugs fixed - Added client side plugin example - Added `.exe` executable files for Windows, allowing launch from Steam @@ -11,7 +10,7 @@ - Added `onWidgetManagerInitialized`, `OnPreWidgetRender`, `OnPostWidgetRender` events - Added default fonts: `Arial-Regular`, `Roboto-Regular`, `Montserrat-Regular`, `FontAwesome` - Added basic - widgets: `Panel`, `Button`, `Scrollbar`, `ScrollPanel`, `Window`, `Label`, `InputText`, `Checkbox`, `Slider`, `Popup`, `Modal`, `ComboBox`, `HorizontalBox`, `VerticalBox` + widgets: `Panel`, `Button`, `Scrollbar`, `ScrollPanel`, `Window`, `Label`, `InputText`, `Checkbox`, `Slider`, `Popup`, `Modal`, `ComboBox`, `HorizontalBox`, `VerticalBox`, `RadioButton` - Added `ResourceManager` and `ImageLoader` - Event renamed: `onPostTickRenderThread` -> `onTickRenderThread` diff --git a/docs/javadoc/allclasses-index.html b/docs/javadoc/allclasses-index.html index fad8bd8..30e90da 100644 --- a/docs/javadoc/allclasses-index.html +++ b/docs/javadoc/allclasses-index.html @@ -1230,57 +1230,61 @@

All Classes and Interfaces<
The enumeration defines five priority levels.
-
ResourceManager
+
RadioButtonWidget
-
Manages resources such as images, including caching and encoding utilities.
+
A Widget that represents a set of radio buttons.
-
ScrollbarWidget
+
ResourceManager
-
The ScrollbarWidget class represents a scrollbar component that can be either horizontal or vertical.
+
Manages resources such as images, including caching and encoding utilities.
-
ScrollPanelWidget
+
ScrollbarWidget
-
The ScrollPanelWidget class represents a panel widget that supports scrolling.
+
The ScrollbarWidget class represents a scrollbar component that can be either horizontal or vertical.
-
ServiceManager
+
ScrollPanelWidget
-
The service manager allows you to register services by their interfaces and access them
+
The ScrollPanelWidget class represents a panel widget that supports scrolling.
-
SliderWidget
+
ServiceManager
-
Represents a slider widget that allows the user to select a value by dragging a thumb along a bar.
+
The service manager allows you to register services by their interfaces and access them
-
TextUtils
+
SliderWidget
-
A set of tools for manipulating text and rendering it
+
Represents a slider widget that allows the user to select a value by dragging a thumb along a bar.
-
VersionChecker
+
TextUtils
-
A set of tools for checking the compatibility of two versions.
+
A set of tools for manipulating text and rendering it
-
VerticalBoxWidget
+
VersionChecker
-
A Widget that arranges its children vertically with a specified margin between them.
+
A set of tools for checking the compatibility of two versions.
-
Widget
+
VerticalBoxWidget
-
Abstract base class for all UI Widget's.
+
A Widget that arranges its children vertically with a specified margin between them.
-
WidgetManager
+
Widget
-
Manages a collection of Widget instances, handling rendering and updates.
+
Abstract base class for all UI Widget's.
-
WindowUtils
+
WidgetManager
-
A set of tools for managing the game window
+
Manages a collection of Widget instances, handling rendering and updates.
-
WindowWidget
+
WindowUtils
+
A set of tools for managing the game window
+
+
WindowWidget
+
Represents a Widget panel that can be customized with various properties such as font, title, header color, and header height.
-
YamlFile
-
+ +
This class represents a YAML file and provides methods to read, write, and manipulate its contents.
diff --git a/docs/javadoc/com/avrix/ui/widgets/PanelWidget.html b/docs/javadoc/com/avrix/ui/widgets/PanelWidget.html index 6dc85a8..00072b4 100644 --- a/docs/javadoc/com/avrix/ui/widgets/PanelWidget.html +++ b/docs/javadoc/com/avrix/ui/widgets/PanelWidget.html @@ -78,7 +78,7 @@

Class PanelWidget

Direct Known Subclasses:
-
ButtonWidget, ComboBoxWidget, InputTextWidget, ScrollbarWidget, ScrollPanelWidget
+
ButtonWidget, ComboBoxWidget, InputTextWidget, RadioButtonWidget.RadioValue, ScrollbarWidget, ScrollPanelWidget

public class PanelWidget diff --git a/docs/javadoc/com/avrix/ui/widgets/RadioButtonWidget.RadioValue.html b/docs/javadoc/com/avrix/ui/widgets/RadioButtonWidget.RadioValue.html new file mode 100644 index 0000000..ef8722d --- /dev/null +++ b/docs/javadoc/com/avrix/ui/widgets/RadioButtonWidget.RadioValue.html @@ -0,0 +1,333 @@ + + + + +RadioButtonWidget.RadioValue (Avrix 1.4.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class RadioButtonWidget.RadioValue

+
+
java.lang.Object +
com.avrix.ui.widgets.Widget +
com.avrix.ui.widgets.PanelWidget +
com.avrix.ui.widgets.RadioButtonWidget.RadioValue
+
+
+
+
+
+
Enclosing class:
+
RadioButtonWidget
+
+
+
public class RadioButtonWidget.RadioValue +extends PanelWidget
+
Represents a single radio button within the RadioButtonWidget.
+
+
+ +
+
+
    + +
  • +
    +

    Field Details

    +
      +
    • +
      +

      value

      +
      protected String value
      +
      The text displayed on the radio button.
      +
      +
    • +
    • +
      +

      onClickAction

      +
      protected Consumer<RadioButtonWidget.RadioValue> onClickAction
      +
      The action to perform when the radio button is clicked.
      +
      +
    • +
    • +
      +

      selected

      +
      protected boolean selected
      +
      Whether the radio button is currently selected.
      +
      +
    • +
    • +
      +

      pressed

      +
      protected boolean pressed
      +
      Whether the radio button is currently pressed.
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Constructor Details

    + +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      onLeftMouseDown

      +
      public void onLeftMouseDown(int x, + int y)
      +
      Called when the left mouse button is pressed down over the Widget.
      +
      +
      Overrides:
      +
      onLeftMouseDown in class PanelWidget
      +
      Parameters:
      +
      x - relative x-coordinate of the mouse position
      +
      y - relative y-coordinate of the mouse position
      +
      +
      +
    • +
    • +
      +

      onLeftMouseUpOutside

      +
      public void onLeftMouseUpOutside(int x, + int y)
      +
      Handles the left mouse button up event outside any visible Widget
      +
      +
      Overrides:
      +
      onLeftMouseUpOutside in class PanelWidget
      +
      Parameters:
      +
      x - absolute x-coordinate of the mouse position
      +
      y - absolute y-coordinate of the mouse position
      +
      +
      +
    • +
    • +
      +

      onLeftMouseUp

      +
      public void onLeftMouseUp(int x, + int y)
      +
      Called when the left mouse button is released over the Widget.
      +
      +
      Overrides:
      +
      onLeftMouseUp in class PanelWidget
      +
      Parameters:
      +
      x - relative x-coordinate of the mouse position
      +
      y - relative y-coordinate of the mouse position
      +
      +
      +
    • +
    • +
      +

      render

      +
      public void render()
      +
      Renders the Widget
      +
      +
      Overrides:
      +
      render in class PanelWidget
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/com/avrix/ui/widgets/RadioButtonWidget.html b/docs/javadoc/com/avrix/ui/widgets/RadioButtonWidget.html new file mode 100644 index 0000000..c7e6a5d --- /dev/null +++ b/docs/javadoc/com/avrix/ui/widgets/RadioButtonWidget.html @@ -0,0 +1,773 @@ + + + + +RadioButtonWidget (Avrix 1.4.0 API) + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class RadioButtonWidget

+
+
java.lang.Object +
com.avrix.ui.widgets.Widget +
com.avrix.ui.widgets.RadioButtonWidget
+
+
+
+
+
public class RadioButtonWidget +extends Widget
+
A Widget that represents a set of radio buttons. + The radio buttons can be arranged either horizontally or vertically.
+
+
+ +
+
+
    + +
  • +
    +

    Field Details

    +
      +
    • +
      +

      fontName

      +
      protected String fontName
      +
      The font name used to render the text in the radio buttons.
      +
      +
    • +
    • +
      +

      fontSize

      +
      protected int fontSize
      +
      The font size used to render the text in the radio buttons.
      +
      +
    • +
    • +
      +

      valueIndex

      +
      protected int valueIndex
      +
      The index of the currently selected radio button.
      +
      +
    • +
    • +
      +

      offset

      +
      protected int offset
      +
      The offset between radio buttons.
      +
      +
    • +
    • +
      +

      circleRadius

      +
      protected int circleRadius
      +
      The radius of the circles representing the radio buttons.
      +
      +
    • +
    • +
      +

      radioHeight

      +
      protected int radioHeight
      +
      The height of each radio button.
      +
      +
    • +
    • +
      +

      radioWidth

      +
      protected int radioWidth
      +
      The width of each radio button.
      +
      +
    • +
    • +
      +

      horizontal

      +
      protected boolean horizontal
      +
      Whether the radio buttons are arranged horizontally.
      +
      +
    • +
    • +
      +

      values

      + +
      The list of RadioButtonWidget.RadioValue objects representing the radio button options.
      +
      +
    • +
    • +
      +

      onChangeAction

      +
      protected BiConsumer<Integer,String> onChangeAction
      +
      The action to perform when the selected radio button changes.
      +
      +
    • +
    • +
      +

      textColor

      +
      protected NVGColor textColor
      +
      The color of the text in the radio buttons.
      +
      +
    • +
    • +
      +

      accentColor

      +
      protected NVGColor accentColor
      +
      The color used to accent the selected radio button.
      +
      +
    • +
    • +
      +

      circleColor

      +
      protected NVGColor circleColor
      +
      The color of the circles representing the radio buttons.
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      RadioButtonWidget

      +
      public RadioButtonWidget(int x, + int y, + int width, + int height, + boolean horizontal, + BiConsumer<Integer,String> onChangeAction)
      +
      Constructs a RadioButtonWidget with the specified position, size, and arrangement.
      +
      +
      Parameters:
      +
      x - the x-coordinate of the Widget
      +
      y - the y-coordinate of the Widget
      +
      width - the width of the Widget
      +
      height - the height of the Widget
      +
      horizontal - whether the radio buttons are arranged horizontally
      +
      onChangeAction - the action to perform when the selected radio button changes
      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      resizeToContent

      +
      public void resizeToContent()
      +
      Resizes the RadioButtonWidget to fit its content based on the arrangement. + Adjusts the width and height according to the number of radio buttons and their dimensions.
      +
      +
    • +
    • +
      +

      addRadio

      +
      public void addRadio(String titleText)
      +
      Adds a new radio button to the RadioButtonWidget.
      +
      +
      Parameters:
      +
      titleText - the text to display on the new radio button
      +
      +
      +
    • +
    • +
      +

      getValues

      +
      public final List<RadioButtonWidget.RadioValue> getValues()
      +
      Returns the list of RadioButtonWidget.RadioValue objects representing the radio button options.
      +
      +
      Returns:
      +
      the list of RadioButtonWidget.RadioValue objects
      +
      +
      +
    • +
    • +
      +

      getValueText

      +
      public final String getValueText()
      +
      Retrieves the text of the currently selected radio button.
      +
      +
      Returns:
      +
      the text of the currently selected radio button, or null if no radio button is selected
      +
      +
      +
    • +
    • +
      +

      getValueText

      +
      public final String getValueText(int index)
      +
      Retrieves the text of the radio button at the specified index.
      +
      +
      Parameters:
      +
      index - the index of the radio button whose text is to be retrieved
      +
      Returns:
      +
      the text of the radio button at the specified index, or null if the index is out of bounds
      +
      +
      +
    • +
    • +
      +

      getValueIndex

      +
      public final int getValueIndex()
      +
      Retrieves the index of the currently selected radio button.
      +
      +
      Returns:
      +
      the index of the currently selected radio button, or -1 if no radio button is selected
      +
      +
      +
    • +
    • +
      +

      getFontName

      +
      public final String getFontName()
      +
      Returns the font name used to render the text in the radio buttons.
      +
      +
      Returns:
      +
      the font name
      +
      +
      +
    • +
    • +
      +

      setFontName

      +
      public final void setFontName(String fontName)
      +
      Sets the font name used to render the text in the radio buttons.
      +
      +
      Parameters:
      +
      fontName - the font name
      +
      +
      +
    • +
    • +
      +

      getFontSize

      +
      public final int getFontSize()
      +
      Returns the font size used to render the text in the radio buttons.
      +
      +
      Returns:
      +
      the font size
      +
      +
      +
    • +
    • +
      +

      setFontSize

      +
      public final void setFontSize(int fontSize)
      +
      Sets the font size used to render the text in the radio buttons.
      +
      +
      Parameters:
      +
      fontSize - the font size
      +
      +
      +
    • +
    • +
      +

      getOffset

      +
      public final int getOffset()
      +
      Returns the offset between radio buttons.
      +
      +
      Returns:
      +
      the offset
      +
      +
      +
    • +
    • +
      +

      setOffset

      +
      public final void setOffset(int offset)
      +
      Sets the offset between radio buttons.
      +
      +
      Parameters:
      +
      offset - the offset
      +
      +
      +
    • +
    • +
      +

      getCircleRadius

      +
      public final int getCircleRadius()
      +
      Returns the radius of the circles representing the radio buttons.
      +
      +
      Returns:
      +
      the circle radius
      +
      +
      +
    • +
    • +
      +

      setCircleRadius

      +
      public final void setCircleRadius(int circleRadius)
      +
      Sets the radius of the circles representing the radio buttons.
      +
      +
      Parameters:
      +
      circleRadius - the circle radius
      +
      +
      +
    • +
    • +
      +

      getRadioHeight

      +
      public final int getRadioHeight()
      +
      Returns the height of each radio button.
      +
      +
      Returns:
      +
      the radio button height
      +
      +
      +
    • +
    • +
      +

      setRadioHeight

      +
      public final void setRadioHeight(int radioHeight)
      +
      Sets the height of each radio button.
      +
      +
      Parameters:
      +
      radioHeight - the radio button height
      +
      +
      +
    • +
    • +
      +

      getRadioWidth

      +
      public final int getRadioWidth()
      +
      Returns the width of each radio button.
      +
      +
      Returns:
      +
      the radio button width
      +
      +
      +
    • +
    • +
      +

      setRadioWidth

      +
      public final void setRadioWidth(int radioWidth)
      +
      Sets the width of each radio button.
      +
      +
      Parameters:
      +
      radioWidth - the radio button width
      +
      +
      +
    • +
    • +
      +

      getTextColor

      +
      public final NVGColor getTextColor()
      +
      Returns the color of the text in the radio buttons.
      +
      +
      Returns:
      +
      the text color
      +
      +
      +
    • +
    • +
      +

      setTextColor

      +
      public final void setTextColor(NVGColor textColor)
      +
      Sets the color of the text in the radio buttons.
      +
      +
      Parameters:
      +
      textColor - the text color
      +
      +
      +
    • +
    • +
      +

      getAccentColor

      +
      public final NVGColor getAccentColor()
      +
      Returns the color used to accent the selected radio button.
      +
      +
      Returns:
      +
      the accent color
      +
      +
      +
    • +
    • +
      +

      setAccentColor

      +
      public final void setAccentColor(NVGColor accentColor)
      +
      Sets the color used to accent the selected radio button.
      +
      +
      Parameters:
      +
      accentColor - the accent color
      +
      +
      +
    • +
    • +
      +

      getCircleColor

      +
      public final NVGColor getCircleColor()
      +
      Returns the color of the circles representing the radio buttons.
      +
      +
      Returns:
      +
      the circle color
      +
      +
      +
    • +
    • +
      +

      setCircleColor

      +
      public final void setCircleColor(NVGColor circleColor)
      +
      Sets the color of the circles representing the radio buttons.
      +
      +
      Parameters:
      +
      circleColor - the circle color
      +
      +
      +
    • +
    • +
      +

      render

      +
      public void render()
      +
      Renders the Widget. This implementation does not perform rendering; + rendering is handled by the nested RadioButtonWidget.RadioValue class.
      +
      +
      Specified by:
      +
      render in class Widget
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/docs/javadoc/com/avrix/ui/widgets/Widget.html b/docs/javadoc/com/avrix/ui/widgets/Widget.html index dab2608..a4d5fa1 100644 --- a/docs/javadoc/com/avrix/ui/widgets/Widget.html +++ b/docs/javadoc/com/avrix/ui/widgets/Widget.html @@ -76,7 +76,7 @@

Class Widget

Direct Known Subclasses:
-
BoxLayoutWidget, CheckboxWidget, LabelWidget, ModalWidget, PanelWidget, SliderWidget
+
BoxLayoutWidget, CheckboxWidget, LabelWidget, ModalWidget, PanelWidget, RadioButtonWidget, SliderWidget

public abstract class Widget diff --git a/docs/javadoc/com/avrix/ui/widgets/package-summary.html b/docs/javadoc/com/avrix/ui/widgets/package-summary.html index ab8dec0..ab9d6ef 100644 --- a/docs/javadoc/com/avrix/ui/widgets/package-summary.html +++ b/docs/javadoc/com/avrix/ui/widgets/package-summary.html @@ -119,28 +119,32 @@

Package com.avrix.ui.widg
The PopupWidget class is a custom widget that extends the ScrollPanelWidget.
- +
-
The ScrollbarWidget class represents a scrollbar component that can be either horizontal or vertical.
+
A Widget that represents a set of radio buttons.
- +
-
The ScrollPanelWidget class represents a panel widget that supports scrolling.
+
The ScrollbarWidget class represents a scrollbar component that can be either horizontal or vertical.
- +
-
Represents a slider widget that allows the user to select a value by dragging a thumb along a bar.
+
The ScrollPanelWidget class represents a panel widget that supports scrolling.
- +
-
A Widget that arranges its children vertically with a specified margin between them.
+
Represents a slider widget that allows the user to select a value by dragging a thumb along a bar.
- +
-
Abstract base class for all UI Widget's.
+
A Widget that arranges its children vertically with a specified margin between them.
- +
+
Abstract base class for all UI Widget's.
+
+ +
Represents a Widget panel that can be customized with various properties such as font, title, header color, and header height.
diff --git a/docs/javadoc/com/avrix/ui/widgets/package-tree.html b/docs/javadoc/com/avrix/ui/widgets/package-tree.html index 501ac73..6730c3f 100644 --- a/docs/javadoc/com/avrix/ui/widgets/package-tree.html +++ b/docs/javadoc/com/avrix/ui/widgets/package-tree.html @@ -78,6 +78,7 @@

Class Hierarchy

  • com.avrix.ui.widgets.ComboBoxWidget
  • com.avrix.ui.widgets.InputTextWidget
  • +
  • com.avrix.ui.widgets.RadioButtonWidget.RadioValue
  • com.avrix.ui.widgets.ScrollbarWidget
  • com.avrix.ui.widgets.ScrollPanelWidget
      @@ -87,6 +88,7 @@

      Class Hierarchy

  • +
  • com.avrix.ui.widgets.RadioButtonWidget
  • com.avrix.ui.widgets.SliderWidget
  • diff --git a/docs/javadoc/index-all.html b/docs/javadoc/index-all.html index 85c3cfb..eeb7b07 100644 --- a/docs/javadoc/index-all.html +++ b/docs/javadoc/index-all.html @@ -64,6 +64,10 @@

    A

    The accent color used for highlighting in the dropdown button.
    +
    accentColor - Variable in class com.avrix.ui.widgets.RadioButtonWidget
    +
    +
    The color used to accent the selected radio button.
    +
    accentColor - Variable in class com.avrix.ui.widgets.SliderWidget
    The color of the slider's thumb and filled bar.
    @@ -140,6 +144,10 @@

    A

    Adds the specified folder to the active Lua path.
    +
    addRadio(String) - Method in class com.avrix.ui.widgets.RadioButtonWidget
    +
    +
    Adds a new radio button to the RadioButtonWidget.
    +
    addToScreen() - Method in class com.avrix.ui.widgets.Widget
    Adds this Widget to the screen by registering it with the WidgetManager.
    @@ -405,6 +413,14 @@

    C

    List of all child elements of the Widget.
    +
    circleColor - Variable in class com.avrix.ui.widgets.RadioButtonWidget
    +
    +
    The color of the circles representing the radio buttons.
    +
    +
    circleRadius - Variable in class com.avrix.ui.widgets.RadioButtonWidget
    +
    +
    The radius of the circles representing the radio buttons.
    +
    ClassModifier - Class in com.avrix.agent
    A class for modifying Java classes at runtime using the Javassist library.
    @@ -900,6 +916,10 @@

    F

    The name of the font to use.
    +
    fontName - Variable in class com.avrix.ui.widgets.RadioButtonWidget
    +
    +
    The font name used to render the text in the radio buttons.
    +
    fontName - Variable in class com.avrix.ui.widgets.SliderWidget
    The font used for text rendering.
    @@ -928,6 +948,10 @@

    F

    The size of the font.
    +
    fontSize - Variable in class com.avrix.ui.widgets.RadioButtonWidget
    +
    +
    The font size used to render the text in the radio buttons.
    +
    fontSize - Variable in class com.avrix.ui.widgets.SliderWidget
    The font size for rendering text.
    @@ -949,6 +973,10 @@

    G

    Gets the accent color.
    +
    getAccentColor() - Method in class com.avrix.ui.widgets.RadioButtonWidget
    +
    +
    Returns the color used to accent the selected radio button.
    +
    getAccentColor() - Method in class com.avrix.ui.widgets.SliderWidget
    Gets the accent color used in the widget.
    @@ -1061,6 +1089,14 @@

    G

    Gets an unmodifiable view of the list of child widgets.
    +
    getCircleColor() - Method in class com.avrix.ui.widgets.RadioButtonWidget
    +
    +
    Returns the color of the circles representing the radio buttons.
    +
    +
    getCircleRadius() - Method in class com.avrix.ui.widgets.RadioButtonWidget
    +
    +
    Returns the radius of the circles representing the radio buttons.
    +
    getClassByName(String) - Static method in class com.avrix.plugin.PluginClassLoader
    Retrieves the Class object for a given class name from the cache or loaders.
    @@ -2109,6 +2145,10 @@

    G

    Gets the name of the font used by the Widget.
    +
    getFontName() - Method in class com.avrix.ui.widgets.RadioButtonWidget
    +
    +
    Returns the font name used to render the text in the radio buttons.
    +
    getFontName() - Method in class com.avrix.ui.widgets.SliderWidget
    Returns the name of the font used for text rendering.
    @@ -2137,6 +2177,10 @@

    G

    Gets the font size of the text.
    +
    getFontSize() - Method in class com.avrix.ui.widgets.RadioButtonWidget
    +
    +
    Returns the font size used to render the text in the radio buttons.
    +
    getFontSize() - Method in class com.avrix.ui.widgets.SliderWidget
    Gets the font size used in the widget.
    @@ -2265,6 +2309,10 @@

    G

    Returns the name of the plugin.
    +
    getOffset() - Method in class com.avrix.ui.widgets.RadioButtonWidget
    +
    +
    Returns the offset between radio buttons.
    +
    getParent() - Method in class com.avrix.ui.widgets.Widget
    Returns the parent Widget of this Widget.
    @@ -2317,6 +2365,14 @@

    G

    Returns the priority of a given access level.
    +
    getRadioHeight() - Method in class com.avrix.ui.widgets.RadioButtonWidget
    +
    +
    Returns the height of each radio button.
    +
    +
    getRadioWidth() - Method in class com.avrix.ui.widgets.RadioButtonWidget
    +
    +
    Returns the width of each radio button.
    +
    getRed() - Method in class com.avrix.ui.NVGColor
    Returns the red component of this NVGColor.
    @@ -2401,6 +2457,10 @@

    G

    Gets the color of the text.
    +
    getTextColor() - Method in class com.avrix.ui.widgets.RadioButtonWidget
    +
    +
    Returns the color of the text in the radio buttons.
    +
    getTextFont() - Method in class com.avrix.ui.widgets.InputTextWidget
    Gets the font used for displaying text.
    @@ -2477,10 +2537,26 @@

    G

    Gets the value index.
    +
    getValueIndex() - Method in class com.avrix.ui.widgets.RadioButtonWidget
    +
    +
    Retrieves the index of the currently selected radio button.
    +
    getValueList() - Method in class com.avrix.ui.widgets.ComboBoxWidget
    Gets the value list.
    +
    getValues() - Method in class com.avrix.ui.widgets.RadioButtonWidget
    +
    +
    Returns the list of RadioButtonWidget.RadioValue objects representing the radio button options.
    +
    +
    getValueText() - Method in class com.avrix.ui.widgets.RadioButtonWidget
    +
    +
    Retrieves the text of the currently selected radio button.
    +
    +
    getValueText(int) - Method in class com.avrix.ui.widgets.RadioButtonWidget
    +
    +
    Retrieves the text of the radio button at the specified index.
    +
    getVersion() - Method in class com.avrix.plugin.Metadata
    Returns the version of the plugin.
    @@ -3500,6 +3576,10 @@

    H

    Highest priority.
    +
    horizontal - Variable in class com.avrix.ui.widgets.RadioButtonWidget
    +
    +
    Whether the radio buttons are arranged horizontally.
    +
    horizontal - Variable in class com.avrix.ui.widgets.ScrollbarWidget
    Indicates whether the scrollbar is horizontal.
    @@ -4101,6 +4181,10 @@

    O

    Observer access level, typically for users with limited privileges, mainly to view or monitor without broader administrative rights.
    +
    offset - Variable in class com.avrix.ui.widgets.RadioButtonWidget
    +
    +
    The offset between radio buttons.
    +
    OnAcceptedFactionInviteEvent - Class in com.avrix.events
    Triggered when a faction invite has been accepted.
    @@ -4179,6 +4263,10 @@

    O

    OnChallengeQueryEvent() - Constructor for class com.avrix.events.OnChallengeQueryEvent
     
    +
    onChangeAction - Variable in class com.avrix.ui.widgets.RadioButtonWidget
    +
    +
    The action to perform when the selected radio button changes.
    +
    OnChangeLanguageEvent - Class in com.avrix.events
    Triggered when the language is changed through the settings
    @@ -4219,6 +4307,10 @@

    O

    The action to perform when the checkbox is checked or unchecked.
    +
    onClickAction - Variable in class com.avrix.ui.widgets.RadioButtonWidget.RadioValue
    +
    +
    The action to perform when the radio button is clicked.
    +
    onClickMethod - Variable in class com.avrix.ui.widgets.ButtonWidget
    The method to be executed when the button is clicked.
    @@ -4705,6 +4797,10 @@

    O

    Called when the left mouse button is pressed down over the Widget.
    +
    onLeftMouseDown(int, int) - Method in class com.avrix.ui.widgets.RadioButtonWidget.RadioValue
    +
    +
    Called when the left mouse button is pressed down over the Widget.
    +
    onLeftMouseDown(int, int) - Method in class com.avrix.ui.widgets.ScrollbarWidget
    Called when the left mouse button is pressed down over the Widget.
    @@ -4753,6 +4849,10 @@

    O

    Called when the left mouse button is released over the Widget.
    +
    onLeftMouseUp(int, int) - Method in class com.avrix.ui.widgets.RadioButtonWidget.RadioValue
    +
    +
    Called when the left mouse button is released over the Widget.
    +
    onLeftMouseUp(int, int) - Method in class com.avrix.ui.widgets.ScrollbarWidget
    Called when the left mouse button is released over the Widget.
    @@ -4785,6 +4885,10 @@

    O

    Handles the left mouse button up event outside any visible Widget
    +
    onLeftMouseUpOutside(int, int) - Method in class com.avrix.ui.widgets.RadioButtonWidget.RadioValue
    +
    +
    Handles the left mouse button up event outside any visible Widget
    +
    onLeftMouseUpOutside(int, int) - Method in class com.avrix.ui.widgets.ScrollbarWidget
    Handles the left mouse button up event outside any visible Widget
    @@ -5952,6 +6056,10 @@

    P

    Indicates whether the dropdown button is currently pressed.
    +
    pressed - Variable in class com.avrix.ui.widgets.RadioButtonWidget.RadioValue
    +
    +
    Whether the radio button is currently pressed.
    +
    priority() - Method in record class com.avrix.events.EventManager.EventListener
    Returns the value of the priority record component.
    @@ -5963,6 +6071,30 @@

    P

    R

    +
    RadioButtonWidget - Class in com.avrix.ui.widgets
    +
    +
    A Widget that represents a set of radio buttons.
    +
    +
    RadioButtonWidget(int, int, int, int, boolean, BiConsumer<Integer, String>) - Constructor for class com.avrix.ui.widgets.RadioButtonWidget
    +
    +
    Constructs a RadioButtonWidget with the specified position, size, and arrangement.
    +
    +
    RadioButtonWidget.RadioValue - Class in com.avrix.ui.widgets
    +
    +
    Represents a single radio button within the RadioButtonWidget.
    +
    +
    radioHeight - Variable in class com.avrix.ui.widgets.RadioButtonWidget
    +
    +
    The height of each radio button.
    +
    +
    RadioValue(String, int, int, Consumer<RadioButtonWidget.RadioValue>) - Constructor for class com.avrix.ui.widgets.RadioButtonWidget.RadioValue
    +
    +
    Constructs a RadioButtonWidget.RadioValue with the specified text, position, and click action.
    +
    +
    radioWidth - Variable in class com.avrix.ui.widgets.RadioButtonWidget
    +
    +
    The width of each radio button.
    +
    red(float) - Method in class com.avrix.ui.NVGColor
    Sets the red component of this NVGColor.
    @@ -6091,6 +6223,14 @@

    R

    Renders the PopupWidget
    +
    render() - Method in class com.avrix.ui.widgets.RadioButtonWidget.RadioValue
    +
    +
    Renders the Widget
    +
    +
    render() - Method in class com.avrix.ui.widgets.RadioButtonWidget
    +
    +
    Renders the Widget.
    +
    render() - Method in class com.avrix.ui.widgets.ScrollbarWidget
    Renders the Widget
    @@ -6159,6 +6299,10 @@

    R

    The y-coordinate offset for resize the window
    +
    resizeToContent() - Method in class com.avrix.ui.widgets.RadioButtonWidget
    +
    +
    Resizes the RadioButtonWidget to fit its content based on the arrangement.
    +
    ResourceManager - Class in com.avrix.resources
    Manages resources such as images, including caching and encoding utilities.
    @@ -6249,6 +6393,10 @@

    S

    The current vertical scroll offset of the Widget.
    +
    selected - Variable in class com.avrix.ui.widgets.RadioButtonWidget.RadioValue
    +
    +
    Whether the radio button is currently selected.
    +
    selecting - Variable in class com.avrix.ui.widgets.InputTextWidget
    Indicates if text selection is currently active.
    @@ -6291,6 +6439,10 @@

    S

    Sets the accent color.
    +
    setAccentColor(NVGColor) - Method in class com.avrix.ui.widgets.RadioButtonWidget
    +
    +
    Sets the color used to accent the selected radio button.
    +
    setAccentColor(NVGColor) - Method in class com.avrix.ui.widgets.SliderWidget
    Sets the accent color for the widget.
    @@ -6411,6 +6563,14 @@

    S

    Sets the icon used to represent a checked state.
    +
    setCircleColor(NVGColor) - Method in class com.avrix.ui.widgets.RadioButtonWidget
    +
    +
    Sets the color of the circles representing the radio buttons.
    +
    +
    setCircleRadius(int) - Method in class com.avrix.ui.widgets.RadioButtonWidget
    +
    +
    Sets the radius of the circles representing the radio buttons.
    +
    setCompressedWidth(int) - Method in class com.avrix.ui.widgets.ScrollbarWidget
    Sets the compressed width of the scrollbar.
    @@ -6487,6 +6647,10 @@

    S

    Sets the name of the font to be used by the Widget.
    +
    setFontName(String) - Method in class com.avrix.ui.widgets.RadioButtonWidget
    +
    +
    Sets the font name used to render the text in the radio buttons.
    +
    setFontName(String) - Method in class com.avrix.ui.widgets.SliderWidget
    Sets the name of the font used for text rendering.
    @@ -6511,6 +6675,10 @@

    S

    Sets the font size of the text.
    +
    setFontSize(int) - Method in class com.avrix.ui.widgets.RadioButtonWidget
    +
    +
    Sets the font size used to render the text in the radio buttons.
    +
    setFontSize(int) - Method in class com.avrix.ui.widgets.SliderWidget
    Sets the font size for the widget.
    @@ -6607,6 +6775,10 @@

    S

    Sets the minimum value of the slider.
    +
    setOffset(int) - Method in class com.avrix.ui.widgets.RadioButtonWidget
    +
    +
    Sets the offset between radio buttons.
    +
    setOnCheckAction(Consumer<Boolean>) - Method in class com.avrix.ui.widgets.CheckboxWidget
    Sets the action to perform when the checkbox is checked or unchecked.
    @@ -6639,6 +6811,14 @@

    S

    Sets the popup height.
    +
    setRadioHeight(int) - Method in class com.avrix.ui.widgets.RadioButtonWidget
    +
    +
    Sets the height of each radio button.
    +
    +
    setRadioWidth(int) - Method in class com.avrix.ui.widgets.RadioButtonWidget
    +
    +
    Sets the width of each radio button.
    +
    setRepeatDelay(int) - Method in class com.avrix.ui.widgets.InputTextWidget
    Sets the delay between key repeat events in milliseconds.
    @@ -6719,6 +6899,10 @@

    S

    Sets the color of the text.
    +
    setTextColor(NVGColor) - Method in class com.avrix.ui.widgets.RadioButtonWidget
    +
    +
    Sets the color of the text in the radio buttons.
    +
    setTextFont(String) - Method in class com.avrix.ui.widgets.InputTextWidget
    Sets the font to be used for displaying text.
    @@ -6858,6 +7042,10 @@

    T

    The color of the text.
    +
    textColor - Variable in class com.avrix.ui.widgets.RadioButtonWidget
    +
    +
    The color of the text in the radio buttons.
    +
    textFont - Variable in class com.avrix.ui.widgets.InputTextWidget
    The font used for displaying text.
    @@ -7001,6 +7189,10 @@

    V

    The current text value of the input widget.
    +
    value - Variable in class com.avrix.ui.widgets.RadioButtonWidget.RadioValue
    +
    +
    The text displayed on the radio button.
    +
    value - Variable in class com.avrix.ui.widgets.SliderWidget
    The current value of the slider.
    @@ -7025,6 +7217,10 @@

    V

    The index of the currently selected value in the dropdown list.
    +
    valueIndex - Variable in class com.avrix.ui.widgets.RadioButtonWidget
    +
    +
    The index of the currently selected radio button.
    +
    valueList - Variable in class com.avrix.ui.widgets.ComboBoxWidget
    The list of values to be displayed in the dropdown menu.
    @@ -7049,6 +7245,10 @@

    V

    Returns the enum constant of this class with the specified name.
    +
    values - Variable in class com.avrix.ui.widgets.RadioButtonWidget
    +
    +
    The list of RadioButtonWidget.RadioValue objects representing the radio button options.
    +
    values() - Static method in enum class com.avrix.enums.AccessLevel
    Returns an array containing the constants of this enum class, in diff --git a/docs/javadoc/member-search-index.js b/docs/javadoc/member-search-index.js index ad16cac..6c22f27 100644 --- a/docs/javadoc/member-search-index.js +++ b/docs/javadoc/member-search-index.js @@ -1 +1 @@ -memberSearchIndex = [{"p":"com.avrix.ui.widgets","c":"Widget","l":"absoluteX"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"absoluteY"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"accentColor"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"accentColor"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"active"},{"p":"com.avrix.ui.widgets","c":"BoxLayoutWidget","l":"addChild(Widget)","u":"addChild(com.avrix.ui.widgets.Widget)"},{"p":"com.avrix.ui.widgets","c":"PopupWidget","l":"addChild(Widget)","u":"addChild(com.avrix.ui.widgets.Widget)"},{"p":"com.avrix.ui.widgets","c":"ScrollPanelWidget","l":"addChild(Widget)","u":"addChild(com.avrix.ui.widgets.Widget)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"addChild(Widget)","u":"addChild(com.avrix.ui.widgets.Widget)"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"addChild(Widget)","u":"addChild(com.avrix.ui.widgets.Widget)"},{"p":"com.avrix.agent","c":"Agent","l":"addClassPath(File)","u":"addClassPath(java.io.File)"},{"p":"com.avrix.commands","c":"CommandsManager","l":"addCommand(Command)","u":"addCommand(com.avrix.commands.Command)"},{"p":"com.avrix.lua","c":"LuaExposer","l":"addExposedClass(Class)","u":"addExposedClass(java.lang.Class)"},{"p":"com.avrix.lua","c":"LuaExposer","l":"addExposedGlobalObject(Object)","u":"addExposedGlobalObject(java.lang.Object)"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"addItem(IsoPlayer, InventoryItem, int)","u":"addItem(zombie.characters.IsoPlayer,zombie.inventory.InventoryItem,int)"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"addItem(IsoPlayer, String, int)","u":"addItem(zombie.characters.IsoPlayer,java.lang.String,int)"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"addItem(UdpConnection, InventoryItem, int)","u":"addItem(zombie.core.raknet.UdpConnection,zombie.inventory.InventoryItem,int)"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"addItem(UdpConnection, String, int)","u":"addItem(zombie.core.raknet.UdpConnection,java.lang.String,int)"},{"p":"com.avrix.events","c":"EventManager","l":"addListener(Event)","u":"addListener(com.avrix.events.Event)"},{"p":"com.avrix.events","c":"EventManager","l":"addListener(Event, Priority)","u":"addListener(com.avrix.events.Event,com.avrix.enums.Priority)"},{"p":"com.avrix.lua","c":"LuaManager","l":"addLuaActiveFolder(File)","u":"addLuaActiveFolder(java.io.File)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"addToScreen()"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"addValue(String)","u":"addValue(java.lang.String)"},{"p":"com.avrix.ui","c":"WidgetManager","l":"addWidget(Widget)","u":"addWidget(com.avrix.ui.widgets.Widget)"},{"p":"com.avrix.enums","c":"AccessLevel","l":"ADMIN"},{"p":"com.avrix.agent","c":"Agent","l":"Agent()","u":"%3Cinit%3E()"},{"p":"com.avrix.agent","c":"AgentLoader","l":"AgentLoader()","u":"%3Cinit%3E()"},{"p":"com.avrix.agent","c":"Agent","l":"agentmain(String, Instrumentation)","u":"agentmain(java.lang.String,java.lang.instrument.Instrumentation)"},{"p":"com.avrix.agent","c":"AgentManager","l":"AgentManager()","u":"%3Cinit%3E()"},{"p":"com.avrix.agent","c":"AgentTransformer","l":"AgentTransformer()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui","c":"NVGColor","l":"alpha(float)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"alwaysOnTop"},{"p":"com.avrix.utils","c":"PatchUtils","l":"applyDefaultPatches()"},{"p":"com.avrix.agent","c":"ClassModifier","l":"applyModifications()"},{"p":"com.avrix.agent","c":"ClassTransformer","l":"applyModifications()"},{"p":"com.avrix.utils","c":"PatchUtils","l":"applyPluginPatches(Metadata, ClassLoader)","u":"applyPluginPatches(com.avrix.plugin.Metadata,java.lang.ClassLoader)"},{"p":"com.avrix.ui","c":"NVGColor","l":"AQUA"},{"p":"com.avrix.plugin","c":"Metadata.MetadataBuilder","l":"author(String)","u":"author(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"BoxLayoutWidget","l":"autoresize"},{"p":"com.avrix.utils","c":"Constants","l":"AVRIX_NAME"},{"p":"com.avrix.utils","c":"Constants","l":"AVRIX_VERSION"},{"p":"com.avrix.ui","c":"NVGColor","l":"BABY_BLUE"},{"p":"com.avrix.ui.widgets","c":"ModalWidget","l":"backgroundColor"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"backgroundColor"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"banPlayer(IsoPlayer, String, boolean, boolean)","u":"banPlayer(zombie.characters.IsoPlayer,java.lang.String,boolean,boolean)"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"banPlayer(UdpConnection, String, boolean, boolean)","u":"banPlayer(zombie.core.raknet.UdpConnection,java.lang.String,boolean,boolean)"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"barColor"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"barFillOffset"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"barHeight"},{"p":"com.avrix.ui","c":"NVGContext","l":"beginFrame(int, int)","u":"beginFrame(int,int)"},{"p":"com.avrix.ui","c":"NVGContext","l":"beginFrame(int, int, float)","u":"beginFrame(int,int,float)"},{"p":"com.avrix.ui","c":"NVGColor","l":"BLACK"},{"p":"com.avrix.ui","c":"NVGColor","l":"BLUE"},{"p":"com.avrix.ui","c":"NVGColor","l":"blue(float)"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"borderColor"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"borderOffset"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"borderOffset"},{"p":"com.avrix.ui.widgets","c":"ScrollbarWidget","l":"borderOffset"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"borderRadius"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"borderRadius"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"borderWidth"},{"p":"com.avrix.enums","c":"CommandScope","l":"BOTH"},{"p":"com.avrix.enums","c":"Environment","l":"BOTH"},{"p":"com.avrix.ui.widgets","c":"BoxLayoutWidget","l":"BoxLayoutWidget(int, int, int, int, boolean)","u":"%3Cinit%3E(int,int,int,int,boolean)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"bringToTop()"},{"p":"com.avrix.ui","c":"WidgetManager","l":"bringWidgetToTop(Widget)","u":"bringWidgetToTop(com.avrix.ui.widgets.Widget)"},{"p":"com.avrix.agent","c":"ClassModifier.ClassModifierBuilder","l":"build()"},{"p":"com.avrix.plugin","c":"Metadata.MetadataBuilder","l":"build()"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"ButtonWidget(String, int, int, int, int, int, NVGColor, Runnable)","u":"%3Cinit%3E(java.lang.String,int,int,int,int,int,com.avrix.ui.NVGColor,java.lang.Runnable)"},{"p":"com.avrix.utils","c":"Constants","l":"CACHE_DIR_NAME"},{"p":"com.avrix.resources","c":"ResourceManager","l":"cachePath"},{"p":"com.avrix.ui","c":"NVGColor","l":"callocNVG()"},{"p":"com.avrix.enums","c":"CommandScope","l":"CHAT"},{"p":"com.avrix.utils","c":"ChatUtils","l":"ChatUtils()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"checkBoxSize"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"CheckboxWidget(String, int, int, int, int, Consumer)","u":"%3Cinit%3E(java.lang.String,int,int,int,int,java.util.function.Consumer)"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"checkColor"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"checked"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"checkIcon"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"children"},{"p":"com.avrix.agent","c":"ClassModifier.ClassModifierBuilder","l":"ClassModifierBuilder(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.avrix.agent","c":"ClassTransformer","l":"ClassTransformer(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"clear()"},{"p":"com.avrix.events","c":"EventManager","l":"clearAllListeners()"},{"p":"com.avrix.resources","c":"ResourceManager","l":"clearCache()"},{"p":"com.avrix.events","c":"EventManager","l":"clearListenersForEvent(String)","u":"clearListenersForEvent(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"clickSound"},{"p":"com.avrix.enums","c":"Environment","l":"CLIENT"},{"p":"com.avrix.logs","c":"IsolatedConsoleWriter","l":"close()"},{"p":"com.avrix.logs","c":"LineReadingOutputStream","l":"close()"},{"p":"com.avrix.ui.widgets","c":"ModalWidget","l":"close()"},{"p":"com.avrix.ui.widgets","c":"PopupWidget","l":"close()"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"closeWindow()"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"ComboBoxWidget(int, int, int, int)","u":"%3Cinit%3E(int,int,int,int)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget.ComboPopupButton","l":"ComboPopupButton(String, int, int, int, int, int, NVGColor, Runnable)","u":"%3Cinit%3E(java.lang.String,int,int,int,int,int,com.avrix.ui.NVGColor,java.lang.Runnable)"},{"p":"com.avrix.commands","c":"Command","l":"Command()","u":"%3Cinit%3E()"},{"p":"com.avrix.commands","c":"CommandsManager","l":"CommandsManager()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui.widgets","c":"ScrollbarWidget","l":"compressedWidth"},{"p":"com.avrix.enums","c":"CommandScope","l":"CONSOLE"},{"p":"com.avrix.utils","c":"Constants","l":"Constants()","u":"%3Cinit%3E()"},{"p":"com.avrix.plugin","c":"Metadata.MetadataBuilder","l":"contacts(String)","u":"contacts(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"contains(String)","u":"contains(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"ModalWidget","l":"contentPanel"},{"p":"com.avrix.ui","c":"NVGColor","l":"copy()"},{"p":"com.avrix.plugin","c":"Plugin","l":"copyConfigFromJar(String, File)","u":"copyConfigFromJar(java.lang.String,java.io.File)"},{"p":"com.avrix.ui","c":"NVGColor","l":"CORAL"},{"p":"com.avrix.utils","c":"YamlFile","l":"create(File)","u":"create(java.io.File)"},{"p":"com.avrix.utils","c":"YamlFile","l":"create(Path)","u":"create(java.nio.file.Path)"},{"p":"com.avrix.utils","c":"YamlFile","l":"create(String)","u":"create(java.lang.String)"},{"p":"com.avrix.ui","c":"NVGFont","l":"createFont(String, Path)","u":"createFont(java.lang.String,java.nio.file.Path)"},{"p":"com.avrix.ui","c":"NVGFont","l":"createFont(String, String, String)","u":"createFont(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.avrix.plugin","c":"Metadata","l":"createFromJar(File, String)","u":"createFromJar(java.io.File,java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"cursorVisible"},{"p":"com.avrix.ui","c":"NVGColor","l":"CYAN"},{"p":"com.avrix.ui","c":"NVGColor","l":"DARK_GRAY"},{"p":"com.avrix.ui","c":"NVGColor","l":"DARK_VIOLET"},{"p":"com.avrix.resources","c":"ResourceManager","l":"deleteFolderContents(File)","u":"deleteFolderContents(java.io.File)"},{"p":"com.avrix.plugin","c":"Metadata.MetadataBuilder","l":"dependencies(Map)","u":"dependencies(java.util.Map)"},{"p":"com.avrix.plugin","c":"Metadata.MetadataBuilder","l":"description(String)","u":"description(java.lang.String)"},{"p":"com.avrix.ui","c":"NVGContext","l":"dispose()"},{"p":"com.avrix.ui","c":"NVGColor","l":"divide(float)"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"draggable"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"dragging"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"dragging"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"dragOffsetX"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"dragOffsetY"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"drawArc(int, int, float, float, float, float, NVGColor)","u":"drawArc(int,int,float,float,float,float,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"drawArc(int, int, float, float, float, float, NVGColor)","u":"drawArc(int,int,float,float,float,float,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"drawArc(int, int, float, float, float, NVGColor)","u":"drawArc(int,int,float,float,float,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"drawArc(int, int, float, float, float, NVGColor)","u":"drawArc(int,int,float,float,float,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"drawBorder"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"drawCircle(int, int, float, NVGColor)","u":"drawCircle(int,int,float,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"drawCircle(int, int, float, NVGColor)","u":"drawCircle(int,int,float,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"drawEllipse(int, int, int, int, NVGColor)","u":"drawEllipse(int,int,int,int,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"drawEllipse(int, int, int, int, NVGColor)","u":"drawEllipse(int,int,int,int,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"drawImage(int, int, int, int, int, float)","u":"drawImage(int,int,int,int,int,float)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"drawImage(int, int, int, int, int, float)","u":"drawImage(int,int,int,int,int,float)"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"drawImage(Path, int, int, int, int, float)","u":"drawImage(java.nio.file.Path,int,int,int,int,float)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"drawImage(Path, int, int, int, int, float)","u":"drawImage(java.nio.file.Path,int,int,int,int,float)"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"drawImage(String, int, int, int, int, float)","u":"drawImage(java.lang.String,int,int,int,int,float)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"drawImage(String, int, int, int, int, float)","u":"drawImage(java.lang.String,int,int,int,int,float)"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"drawImage(String, String, int, int, int, int, float)","u":"drawImage(java.lang.String,java.lang.String,int,int,int,int,float)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"drawImage(String, String, int, int, int, int, float)","u":"drawImage(java.lang.String,java.lang.String,int,int,int,int,float)"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"drawLine(int, int, int, int, float, NVGColor)","u":"drawLine(int,int,int,int,float,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"drawLine(int, int, int, int, float, NVGColor)","u":"drawLine(int,int,int,int,float,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"drawRect(int, int, int, int, NVGColor)","u":"drawRect(int,int,int,int,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"drawRect(int, int, int, int, NVGColor)","u":"drawRect(int,int,int,int,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"drawRectOutline(int, int, int, int, float, NVGColor)","u":"drawRectOutline(int,int,int,int,float,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"drawRectOutline(int, int, int, int, float, NVGColor)","u":"drawRectOutline(int,int,int,int,float,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"drawRoundedRect(int, int, int, int, float, NVGColor)","u":"drawRoundedRect(int,int,int,int,float,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"drawRoundedRect(int, int, int, int, float, NVGColor)","u":"drawRoundedRect(int,int,int,int,float,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"drawRoundedRectOutline(int, int, int, int, int, float, NVGColor)","u":"drawRoundedRectOutline(int,int,int,int,int,float,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"drawRoundedRectOutline(int, int, int, int, int, float, NVGColor)","u":"drawRoundedRectOutline(int,int,int,int,int,float,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"drawText(String, String, int, int, int, NVGColor)","u":"drawText(java.lang.String,java.lang.String,int,int,int,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"drawText(String, String, int, int, int, NVGColor)","u":"drawText(java.lang.String,java.lang.String,int,int,int,com.avrix.ui.NVGColor)"},{"p":"com.avrix.utils","c":"TextUtils","l":"drawText(String, UIFont, int, int, Color)","u":"drawText(java.lang.String,zombie.ui.UIFont,int,int,zombie.core.Color)"},{"p":"com.avrix.utils","c":"TextUtils","l":"drawText(String, UIFont, int, int, float, float, float, float)","u":"drawText(java.lang.String,zombie.ui.UIFont,int,int,float,float,float,float)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"dropButtonWidth"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"dropIcon"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"editable"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"enable"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"enable"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"enable"},{"p":"com.avrix.resources","c":"ResourceManager","l":"encodeFileName(String)","u":"encodeFileName(java.lang.String)"},{"p":"com.avrix.ui","c":"NVGContext","l":"endFrame()"},{"p":"com.avrix.plugin","c":"Metadata.MetadataBuilder","l":"entryPointsList(List)","u":"entryPointsList(java.util.List)"},{"p":"com.avrix.plugin","c":"Metadata.MetadataBuilder","l":"environment(String)","u":"environment(java.lang.String)"},{"p":"com.avrix.events","c":"EventManager.EventListener","l":"equals(Object)","u":"equals(java.lang.Object)"},{"p":"com.avrix.events","c":"Event","l":"Event()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"EventManager.EventListener","l":"EventListener(Event, Priority)","u":"%3Cinit%3E(com.avrix.events.Event,com.avrix.enums.Priority)"},{"p":"com.avrix.events","c":"EventManager","l":"EventManager()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui","c":"NVGColor.ColorAction","l":"execute(NVGColor)","u":"execute(org.lwjgl.nanovg.NVGColor)"},{"p":"com.avrix.plugin","c":"PluginClassLoader","l":"findClass(String)","u":"findClass(java.lang.String)"},{"p":"com.avrix.plugin","c":"PluginClassLoader","l":"findClass(String, boolean)","u":"findClass(java.lang.String,boolean)"},{"p":"com.avrix.plugin","c":"PluginClassLoader","l":"findLoaded(String)","u":"findLoaded(java.lang.String)"},{"p":"com.avrix.logs","c":"IsolatedConsoleWriter","l":"flush()"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"fontName"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"fontName"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"fontName"},{"p":"com.avrix.ui.widgets","c":"LabelWidget","l":"fontName"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"fontName"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"fontName"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"fontSize"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"fontSize"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"fontSize"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"fontSize"},{"p":"com.avrix.ui.widgets","c":"LabelWidget","l":"fontSize"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"fontSize"},{"p":"com.avrix.enums","c":"AccessLevel","l":"fromString(String)","u":"fromString(java.lang.String)"},{"p":"com.avrix.enums","c":"Environment","l":"fromString(String)","u":"fromString(java.lang.String)"},{"p":"com.avrix.ui","c":"NVGContext","l":"get()"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"getAccentColor()"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"getAccentColor()"},{"p":"com.avrix.commands","c":"Command","l":"getAccessLevel()"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"getAccessLevel(IsoPlayer)","u":"getAccessLevel(zombie.characters.IsoPlayer)"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"getAccessLevel(UdpConnection)","u":"getAccessLevel(zombie.core.raknet.UdpConnection)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getAll()"},{"p":"com.avrix.events","c":"EventManager","l":"getAllListeners()"},{"p":"com.avrix.ui","c":"NVGColor","l":"getAlpha()"},{"p":"com.avrix.plugin","c":"Metadata","l":"getAuthor()"},{"p":"com.avrix.ui.widgets","c":"ModalWidget","l":"getBackgroundColor()"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"getBarColor()"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"getBarFillOffset()"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"getBarHeight()"},{"p":"com.avrix.ui","c":"NVGColor","l":"getBlue()"},{"p":"com.avrix.utils","c":"YamlFile","l":"getBoolean(String)","u":"getBoolean(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getBooleanList(String)","u":"getBooleanList(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getBooleanMap(String)","u":"getBooleanMap(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"getBorderOffset()"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"getBorderOffset()"},{"p":"com.avrix.ui.widgets","c":"ScrollbarWidget","l":"getBorderOffset()"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"getBorderRadius()"},{"p":"com.avrix.utils","c":"YamlFile","l":"getByte(String)","u":"getByte(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getByteList(String)","u":"getByteList(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getChar(String)","u":"getChar(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getCharacterList(String)","u":"getCharacterList(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"getCheckBoxSize()"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"getCheckColor()"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"getCheckIcon()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"getChildren()"},{"p":"com.avrix.plugin","c":"PluginClassLoader","l":"getClassByName(String)","u":"getClassByName(java.lang.String)"},{"p":"com.avrix.plugin","c":"PluginClassLoader","l":"getClasses()"},{"p":"com.avrix.agent","c":"ClassTransformer","l":"getClassName()"},{"p":"com.avrix.utils","c":"ChatUtils","l":"getColorCode(Color)","u":"getColorCode(zombie.core.Color)"},{"p":"com.avrix.utils","c":"ChatUtils","l":"getColorCode(float, float, float)","u":"getColorCode(float,float,float)"},{"p":"com.avrix.utils","c":"ChatUtils","l":"getColorCode(int, int, int)","u":"getColorCode(int,int,int)"},{"p":"com.avrix.commands","c":"CommandsManager","l":"getCommandArgs(String)","u":"getCommandArgs(java.lang.String)"},{"p":"com.avrix.commands","c":"CommandsManager","l":"getCommandArgs(String, String)","u":"getCommandArgs(java.lang.String,java.lang.String)"},{"p":"com.avrix.commands","c":"Command","l":"getCommandName()"},{"p":"com.avrix.ui.widgets","c":"ScrollbarWidget","l":"getCompressedWidth()"},{"p":"com.avrix.plugin","c":"Metadata","l":"getConfigFolder()"},{"p":"com.avrix.plugin","c":"Plugin","l":"getConfigFolder()"},{"p":"com.avrix.plugin","c":"Metadata","l":"getContacts()"},{"p":"com.avrix.ui.widgets","c":"ModalWidget","l":"getContentPanel()"},{"p":"com.avrix.ui","c":"WidgetManager","l":"getContext()"},{"p":"com.avrix.plugin","c":"Plugin","l":"getDefaultConfig()"},{"p":"com.avrix.plugin","c":"Metadata","l":"getDependencies()"},{"p":"com.avrix.commands","c":"Command","l":"getDescription()"},{"p":"com.avrix.plugin","c":"Metadata","l":"getDescription()"},{"p":"com.avrix.utils","c":"IsoObjectUtils","l":"getDistance(IsoObject, IsoObject)","u":"getDistance(zombie.iso.IsoObject,zombie.iso.IsoObject)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getDouble(String)","u":"getDouble(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getDoubleList(String)","u":"getDoubleList(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getDoubleMap(String)","u":"getDoubleMap(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"getDropButtonWidth()"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"getDropIcon()"},{"p":"com.avrix.plugin","c":"Metadata","l":"getEntryPoints()"},{"p":"com.avrix.plugin","c":"Metadata","l":"getEnvironment()"},{"p":"com.avrix.events","c":"Event","l":"getEventName()"},{"p":"com.avrix.events","c":"OnAcceptedFactionInviteEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnAcceptedSafehouseInviteEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnAcceptedTradeEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnAcceptInviteEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnAddForageDefsEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnAddIncomingEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnAddMessageEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnAddXPEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnAdminMessageEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnAIStateChangeEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnAmbientSoundEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnCGlobalObjectSystemInitEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnChallengeQueryEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnChangeLanguageEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnChangeWeatherEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnCharacterCollideEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnCharacterDeathEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnChatMessageProcessedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnChatWindowInitEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnClientCommandEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnClimateManagerInitEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnClimateTickDebugEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnClimateTickEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnClothingUpdatedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnConnectedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnConnectFailedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnConnectionStateChangedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnContainerUpdateEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnCoopJoinFailedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnCoopServerMessageEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnCreateLivingCharacterEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnCreatePlayerEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnCreateSurvivorEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnCreateUIEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnCustomUIKeyEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnCustomUIKeyPressedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnCustomUIKeyReleasedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnDawnEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnDestroyIsoThumpableEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnDeviceTextEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnDisableSearchModeEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnDisconnectEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnDistributionMergeEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnDoSpecialTooltipEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnDoTileBuilding2Event","l":"getEventName()"},{"p":"com.avrix.events","c":"OnDoTileBuilding3Event","l":"getEventName()"},{"p":"com.avrix.events","c":"OnDuskEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnDynamicMovableRecipeEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnEnableSearchModeEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnEnterVehicleEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnEquipPrimaryEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnEquipSecondaryEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnEveryDaysEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnEveryHoursEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnEveryOneMinuteEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnEveryTenMinutesEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnExitVehicleEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnFETickEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnFillContainerEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnFillInventoryObjectContextMenuEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnFillSearchIconContextMenuEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnFillWorldObjectContextMenuEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnGameBootEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnGamepadConnectEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnGamepadDisconnectEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnGameStartEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnGameTimeLoadedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnGameWindowInitializedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnGetDBSchemaEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnGetTableResultEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnGridBurntEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnHitZombieEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnInitGlobalModDataEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnInitModdedWeatherStageEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnInitRecordedMediaEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnInitSeasonsEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnInitWorldEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnItemFallEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnJoypadActivateEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnJoypadActivateUIEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnJoypadBeforeDeactivateEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnJoypadBeforeReactivateEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnJoypadDeactivateEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnJoypadReactivateEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnJoypadRenderUIEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnKeyKeepPressedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnKeyPressedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnKeyStartPressedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnLevelPerkEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnLoadedTileDefinitionsEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnLoadEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnLoadGridsquareEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnLoadMapZonesEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnLoadModDataFromServerEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnLoadRadioScriptsEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnLoadSoundBanksEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnLuaFilesLoadedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnLuaScriptExecuteEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnMainMenuEnterEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnMechanicActionDoneEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnMiniScoreboardUpdateEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnMngInvReceiveItemsEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnModsModifiedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnMouseDownEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnMouseMoveEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnMouseUpEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnMultiTriggerNPCEventEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnNewFireEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnNewGameEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnObjectAboutToBeRemovedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnObjectAddedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnObjectCollideEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnObjectLeftMouseButtonDownEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnObjectLeftMouseButtonUpEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnObjectRightMouseButtonDownEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnObjectRightMouseButtonUpEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPlayerAttackFinishedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPlayerBanEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPlayerConnectEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPlayerDeathEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPlayerDisconnectEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPlayerFullyConnectedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPlayerKickEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPlayerMoveEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPlayerUnbanEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPlayerUpdateEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPostDistributionMergeEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPostFloorLayerDrawEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPostMapLoadEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPostRenderEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPostSaveEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPostUIDrawEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPostWidgetDrawEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPreAddCatDefsEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPreAddForageDefsEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPreAddItemDefsEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPreAddZoneDefsEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPreDistributionMergeEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPreFillInventoryObjectContextMenuEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPreFillWorldObjectContextMenuEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPreMapLoadEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPressRackButtonEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPressReloadButtonEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPreUIDrawEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPreWidgetDrawEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnRainStopEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnReceiveFactionInviteEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnReceiveGlobalModDataEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnReceiveItemListNetEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnReceiveSafehouseInviteEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnReceiveUserlogEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnRenderTickEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnRequestTradeEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnResetLuaEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnResolutionChangeEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnReuseGridsquareEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnRightMouseDownEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnRightMouseUpEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSafehousesChangedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSaveEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnScoreboardUpdateEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSeeNewRoomEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSendChatCommandEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSendConsoleCommandEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSendCustomModDataEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnServerCommandEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnServerFinishSavingEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnServerInitializeEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnServerPingedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnServerShutdownEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnServerStartedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnServerStartSavingEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnServerStatisticReceivedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSetDefaultTabEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSGlobalObjectSystemInitEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSpawnRegionsLoadedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSteamFriendStatusChangedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSteamGameJoinEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSteamRefreshInternetServersEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSteamRulesRefreshCompleteEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSteamServerFailedToRespond2Event","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSteamServerResponded2Event","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSteamServerRespondedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSteamWorkshopItemCreatedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSteamWorkshopItemNotCreatedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSteamWorkshopItemNotUpdatedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSteamWorkshopItemUpdatedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSwitchChatStreamEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSwitchVehicleSeatEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSyncFactionEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnTabAddedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnTabRemovedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnThunderEventEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnTickEvenPausedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnTickEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnTickRenderThreadEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnTileRemovedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnToggleSearchModeEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnTradingUIAddItemEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnTradingUIRemoveItemEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnTradingUIUpdateStateEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnTriggerNPCEventEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnUpdateIconEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnUpdateModdedWeatherStageEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnUseVehicleEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnVehicleDamageTextureEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnVehicleHornEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnViewTicketsEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnWaterAmountChangeEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnWeaponHitCharacterEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnWeaponHitTreeEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnWeaponHitXpEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnWeaponSwingEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnWeaponSwingHitPointEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnWeatherPeriodCompleteEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnWeatherPeriodStageEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnWeatherPeriodStartEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnWeatherPeriodStopEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnWidgetManagerInitEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnWorldSoundEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnZombieDeadEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnZombieUpdateEvent","l":"getEventName()"},{"p":"com.avrix.commands","c":"Command","l":"getExecutionScope()"},{"p":"com.avrix.lua","c":"LuaExposer","l":"getExposedClasses()"},{"p":"com.avrix.lua","c":"LuaExposer","l":"getExposedGlobalObjects()"},{"p":"com.avrix.resources","c":"ResourceManager","l":"getFileExtension(String)","u":"getFileExtension(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getFileName()"},{"p":"com.avrix.utils","c":"YamlFile","l":"getFilePath()"},{"p":"com.avrix.resources","c":"ResourceManager","l":"getFolderSize(File)","u":"getFolderSize(java.io.File)"},{"p":"com.avrix.utils","c":"TextUtils","l":"getFontHeight(UIFont)","u":"getFontHeight(zombie.ui.UIFont)"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"getFontName()"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"getFontName()"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"getFontName()"},{"p":"com.avrix.ui.widgets","c":"LabelWidget","l":"getFontName()"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"getFontName()"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"getFontName()"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"getFontSize()"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"getFontSize()"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"getFontSize()"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"getFontSize()"},{"p":"com.avrix.ui.widgets","c":"LabelWidget","l":"getFontSize()"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"getFontSize()"},{"p":"com.avrix.ui","c":"NVGColor","l":"getGreen()"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"getHeaderHeight()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"getHeight()"},{"p":"com.avrix.ui.widgets","c":"ScrollPanelWidget","l":"getHorizontalScrollbar()"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"getIconColor()"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"getIconFontName()"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"getIconFontName()"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"getIconSize()"},{"p":"com.avrix.plugin","c":"Metadata","l":"getId()"},{"p":"com.avrix.utils","c":"YamlFile","l":"getInt(String)","u":"getInt(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getIntegerList(String)","u":"getIntegerList(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getIntMap(String)","u":"getIntMap(java.lang.String)"},{"p":"com.avrix.plugin","c":"Metadata","l":"getLicense()"},{"p":"com.avrix.utils","c":"YamlFile","l":"getList(String)","u":"getList(java.lang.String)"},{"p":"com.avrix.events","c":"EventManager","l":"getListenersForEvent(String)","u":"getListenersForEvent(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getLong(String)","u":"getLong(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getLongList(String)","u":"getLongList(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getMap(String)","u":"getMap(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getMapKeys(String)","u":"getMapKeys(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getMapValues(String)","u":"getMapValues(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"BoxLayoutWidget","l":"getMargin()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"getMaxScrollX()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"getMaxScrollY()"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"getMaxValue()"},{"p":"com.avrix.plugin","c":"Plugin","l":"getMetadata()"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"getMinSizeX()"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"getMinSizeY()"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"getMinValue()"},{"p":"com.avrix.agent","c":"ClassTransformer","l":"getModifierBuilder()"},{"p":"com.avrix.agent","c":"AgentManager","l":"getModifyClass(String)","u":"getModifyClass(java.lang.String)"},{"p":"com.avrix.plugin","c":"Metadata","l":"getName()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"getParent()"},{"p":"com.avrix.plugin","c":"Metadata","l":"getPatchList()"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"getPlaceholder()"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"getPlaceholderColor()"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"getPlayerByPartialUsername(String)","u":"getPlayerByPartialUsername(java.lang.String)"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"getPlayerByUdpConnection(UdpConnection)","u":"getPlayerByUdpConnection(zombie.core.raknet.UdpConnection)"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"getPlayerByUsername(String)","u":"getPlayerByUsername(java.lang.String)"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"getPlayerIP(IsoPlayer)","u":"getPlayerIP(zombie.characters.IsoPlayer)"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"getPlayerSteamID(IsoPlayer)","u":"getPlayerSteamID(zombie.characters.IsoPlayer)"},{"p":"com.avrix.plugin","c":"Metadata","l":"getPluginFile()"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"getPopupButtonHeight()"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"getPopupHeight()"},{"p":"com.avrix.enums","c":"AccessLevel","l":"getPriority()"},{"p":"com.avrix.ui","c":"NVGColor","l":"getRed()"},{"p":"com.avrix.commands","c":"CommandsManager","l":"getRegisteredCommands()"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"getRepeatDelay()"},{"p":"com.avrix.logs","c":"IsolatedConsoleWriter","l":"getRequiredLogEntryValues()"},{"p":"com.avrix.enums","c":"AccessLevel","l":"getRoleName()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"getScrollSpeed()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"getScrollX()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"getScrollY()"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"getSelectionColor()"},{"p":"com.avrix.plugin","c":"ServiceManager","l":"getService(Class)","u":"getService(java.lang.Class)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getShort(String)","u":"getShort(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getShortList(String)","u":"getShortList(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getString(String)","u":"getString(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getStringList(String)","u":"getStringList(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getStringMap(String)","u":"getStringMap(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"getText()"},{"p":"com.avrix.ui.widgets","c":"LabelWidget","l":"getText()"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"getTextColor()"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"getTextColor()"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"getTextColor()"},{"p":"com.avrix.ui.widgets","c":"LabelWidget","l":"getTextColor()"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"getTextFont()"},{"p":"com.avrix.utils","c":"TextUtils","l":"getTextHeight(String, UIFont)","u":"getTextHeight(java.lang.String,zombie.ui.UIFont)"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"getTextOffset()"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"getTextSize(String, String, int)","u":"getTextSize(java.lang.String,java.lang.String,int)"},{"p":"com.avrix.utils","c":"TextUtils","l":"getTextWidth(String, UIFont)","u":"getTextWidth(java.lang.String,zombie.ui.UIFont)"},{"p":"com.avrix.ui.widgets","c":"ScrollbarWidget","l":"getThumbColor()"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"getThumbWidth()"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"getTitle()"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"getTitleColor()"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"getTitleOffset()"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"getTitleText()"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"getUdpConnectionByPlayer(IsoPlayer)","u":"getUdpConnectionByPlayer(zombie.characters.IsoPlayer)"},{"p":"com.avrix.enums","c":"Environment","l":"getValue()"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"getValue()"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"getValue()"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"getValue()"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"getValue(int)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getValue(String)","u":"getValue(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"getValueIndex()"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"getValueList()"},{"p":"com.avrix.plugin","c":"Metadata","l":"getVersion()"},{"p":"com.avrix.ui.widgets","c":"ScrollPanelWidget","l":"getVerticalScrollbar()"},{"p":"com.avrix.ui","c":"WidgetManager","l":"getWidgetList()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"getWidth()"},{"p":"com.avrix.utils","c":"WindowUtils","l":"getWindowHeight()"},{"p":"com.avrix.utils","c":"WindowUtils","l":"getWindowWidth()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"getX()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"getXA()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"getY()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"getYA()"},{"p":"com.avrix.enums","c":"AccessLevel","l":"GM"},{"p":"com.avrix.ui","c":"NVGColor","l":"GRAY"},{"p":"com.avrix.ui","c":"NVGColor","l":"GREEN"},{"p":"com.avrix.ui","c":"NVGColor","l":"green(float)"},{"p":"com.avrix.commands","c":"CommandsManager","l":"handleCustomCommand(UdpConnection, String)","u":"handleCustomCommand(zombie.core.raknet.UdpConnection,java.lang.String)"},{"p":"com.avrix.events","c":"OnCGlobalObjectSystemInitEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnChallengeQueryEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnChatWindowInitEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnConnectedEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnCreateUIEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnDawnEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnDisconnectEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnDistributionMergeEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnDuskEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnEveryDaysEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnEveryHoursEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnEveryOneMinuteEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnEveryTenMinutesEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnGameBootEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnGameStartEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnGameTimeLoadedEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnGameWindowInitializedEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnInitWorldEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnJoypadRenderUIEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnLoadEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnLoadMapZonesEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnLoadSoundBanksEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnMainMenuEnterEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnMiniScoreboardUpdateEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnModsModifiedEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnMultiTriggerNPCEventEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnPostDistributionMergeEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnPostRenderEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnPostSaveEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnPostUIDrawEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnPreDistributionMergeEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnPreMapLoadEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnPreUIDrawEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnRainStopEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnRenderTickEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnSafehousesChangedEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnSaveEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnSendCustomModDataEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnServerFinishSavingEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnServerInitializeEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnServerShutdownEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnServerStartedEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnServerStartSavingEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnServerStatisticReceivedEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnSGlobalObjectSystemInitEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnSteamGameJoinEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnSteamRefreshInternetServersEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnSwitchChatStreamEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnTickRenderThreadEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnTriggerNPCEventEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnUpdateIconEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnScoreboardUpdateEvent","l":"handleEvent(ArrayList, ArrayList, ArrayList)","u":"handleEvent(java.util.ArrayList,java.util.ArrayList,java.util.ArrayList)"},{"p":"com.avrix.events","c":"OnGetTableResultEvent","l":"handleEvent(ArrayList, Integer, String)","u":"handleEvent(java.util.ArrayList,java.lang.Integer,java.lang.String)"},{"p":"com.avrix.events","c":"OnAcceptedTradeEvent","l":"handleEvent(Boolean)","u":"handleEvent(java.lang.Boolean)"},{"p":"com.avrix.events","c":"OnInitGlobalModDataEvent","l":"handleEvent(Boolean)","u":"handleEvent(java.lang.Boolean)"},{"p":"com.avrix.events","c":"OnSteamWorkshopItemUpdatedEvent","l":"handleEvent(Boolean)","u":"handleEvent(java.lang.Boolean)"},{"p":"com.avrix.events","c":"OnPlayerConnectEvent","l":"handleEvent(ByteBuffer, UdpConnection, String)","u":"handleEvent(java.nio.ByteBuffer,zombie.core.raknet.UdpConnection,java.lang.String)"},{"p":"com.avrix.events","c":"OnPlayerFullyConnectedEvent","l":"handleEvent(ByteBuffer, UdpConnection, String)","u":"handleEvent(java.nio.ByteBuffer,zombie.core.raknet.UdpConnection,java.lang.String)"},{"p":"com.avrix.events","c":"OnViewTicketsEvent","l":"handleEvent(ByteBufferWriter)","u":"handleEvent(zombie.core.network.ByteBufferWriter)"},{"p":"com.avrix.events","c":"OnChatMessageProcessedEvent","l":"handleEvent(ChatBase, ChatMessage)","u":"handleEvent(zombie.chat.ChatBase,zombie.chat.ChatMessage)"},{"p":"com.avrix.events","c":"OnAddMessageEvent","l":"handleEvent(ChatMessage, Short)","u":"handleEvent(zombie.chat.ChatMessage,java.lang.Short)"},{"p":"com.avrix.events","c":"OnSetDefaultTabEvent","l":"handleEvent(ChatTab)","u":"handleEvent(zombie.chat.ChatTab)"},{"p":"com.avrix.events","c":"OnClimateManagerInitEvent","l":"handleEvent(ClimateManager)","u":"handleEvent(zombie.iso.weather.ClimateManager)"},{"p":"com.avrix.events","c":"OnClimateTickDebugEvent","l":"handleEvent(ClimateManager)","u":"handleEvent(zombie.iso.weather.ClimateManager)"},{"p":"com.avrix.events","c":"OnClimateTickEvent","l":"handleEvent(ClimateManager)","u":"handleEvent(zombie.iso.weather.ClimateManager)"},{"p":"com.avrix.events","c":"OnFETickEvent","l":"handleEvent(Double)","u":"handleEvent(java.lang.Double)"},{"p":"com.avrix.events","c":"OnJoypadBeforeDeactivateEvent","l":"handleEvent(Double)","u":"handleEvent(java.lang.Double)"},{"p":"com.avrix.events","c":"OnJoypadBeforeReactivateEvent","l":"handleEvent(Double)","u":"handleEvent(java.lang.Double)"},{"p":"com.avrix.events","c":"OnJoypadDeactivateEvent","l":"handleEvent(Double)","u":"handleEvent(java.lang.Double)"},{"p":"com.avrix.events","c":"OnJoypadReactivateEvent","l":"handleEvent(Double)","u":"handleEvent(java.lang.Double)"},{"p":"com.avrix.events","c":"OnTickEvenPausedEvent","l":"handleEvent(Double)","u":"handleEvent(java.lang.Double)"},{"p":"com.avrix.events","c":"OnTickEvent","l":"handleEvent(Double)","u":"handleEvent(java.lang.Double)"},{"p":"com.avrix.events","c":"OnInitSeasonsEvent","l":"handleEvent(ErosionSeason)","u":"handleEvent(zombie.erosion.season.ErosionSeason)"},{"p":"com.avrix.events","c":"OnContainerUpdateEvent","l":"handleEvent(Food)","u":"handleEvent(zombie.inventory.types.Food)"},{"p":"com.avrix.events","c":"OnCoopJoinFailedEvent","l":"handleEvent(Integer)","u":"handleEvent(java.lang.Integer)"},{"p":"com.avrix.events","c":"OnCustomUIKeyEvent","l":"handleEvent(Integer)","u":"handleEvent(java.lang.Integer)"},{"p":"com.avrix.events","c":"OnCustomUIKeyPressedEvent","l":"handleEvent(Integer)","u":"handleEvent(java.lang.Integer)"},{"p":"com.avrix.events","c":"OnCustomUIKeyReleasedEvent","l":"handleEvent(Integer)","u":"handleEvent(java.lang.Integer)"},{"p":"com.avrix.events","c":"OnGamepadConnectEvent","l":"handleEvent(Integer)","u":"handleEvent(java.lang.Integer)"},{"p":"com.avrix.events","c":"OnGamepadDisconnectEvent","l":"handleEvent(Integer)","u":"handleEvent(java.lang.Integer)"},{"p":"com.avrix.events","c":"OnJoypadActivateEvent","l":"handleEvent(Integer)","u":"handleEvent(java.lang.Integer)"},{"p":"com.avrix.events","c":"OnJoypadActivateUIEvent","l":"handleEvent(Integer)","u":"handleEvent(java.lang.Integer)"},{"p":"com.avrix.events","c":"OnKeyKeepPressedEvent","l":"handleEvent(Integer)","u":"handleEvent(java.lang.Integer)"},{"p":"com.avrix.events","c":"OnKeyPressedEvent","l":"handleEvent(Integer)","u":"handleEvent(java.lang.Integer)"},{"p":"com.avrix.events","c":"OnKeyStartPressedEvent","l":"handleEvent(Integer)","u":"handleEvent(java.lang.Integer)"},{"p":"com.avrix.events","c":"OnPostFloorLayerDrawEvent","l":"handleEvent(Integer)","u":"handleEvent(java.lang.Integer)"},{"p":"com.avrix.events","c":"OnSteamServerRespondedEvent","l":"handleEvent(Integer)","u":"handleEvent(java.lang.Integer)"},{"p":"com.avrix.events","c":"OnSteamWorkshopItemNotCreatedEvent","l":"handleEvent(Integer)","u":"handleEvent(java.lang.Integer)"},{"p":"com.avrix.events","c":"OnSteamWorkshopItemNotUpdatedEvent","l":"handleEvent(Integer)","u":"handleEvent(java.lang.Integer)"},{"p":"com.avrix.events","c":"OnMouseDownEvent","l":"handleEvent(Integer, Integer)","u":"handleEvent(java.lang.Integer,java.lang.Integer)"},{"p":"com.avrix.events","c":"OnMouseUpEvent","l":"handleEvent(Integer, Integer)","u":"handleEvent(java.lang.Integer,java.lang.Integer)"},{"p":"com.avrix.events","c":"OnRightMouseDownEvent","l":"handleEvent(Integer, Integer)","u":"handleEvent(java.lang.Integer,java.lang.Integer)"},{"p":"com.avrix.events","c":"OnRightMouseUpEvent","l":"handleEvent(Integer, Integer)","u":"handleEvent(java.lang.Integer,java.lang.Integer)"},{"p":"com.avrix.events","c":"OnThunderEventEvent","l":"handleEvent(Integer, Integer, Boolean, Boolean, Boolean)","u":"handleEvent(java.lang.Integer,java.lang.Integer,java.lang.Boolean,java.lang.Boolean,java.lang.Boolean)"},{"p":"com.avrix.events","c":"OnMouseMoveEvent","l":"handleEvent(Integer, Integer, Integer, Integer)","u":"handleEvent(java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer)"},{"p":"com.avrix.events","c":"OnResolutionChangeEvent","l":"handleEvent(Integer, Integer, Integer, Integer)","u":"handleEvent(java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer)"},{"p":"com.avrix.events","c":"OnWorldSoundEvent","l":"handleEvent(Integer, Integer, Integer, Integer, Integer, IsoObject)","u":"handleEvent(java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,zombie.iso.IsoObject)"},{"p":"com.avrix.events","c":"OnCreatePlayerEvent","l":"handleEvent(Integer, IsoPlayer)","u":"handleEvent(java.lang.Integer,zombie.characters.IsoPlayer)"},{"p":"com.avrix.events","c":"OnFillInventoryObjectContextMenuEvent","l":"handleEvent(Integer, KahluaTable, KahluaTable)","u":"handleEvent(java.lang.Integer,se.krka.kahlua.vm.KahluaTable,se.krka.kahlua.vm.KahluaTable)"},{"p":"com.avrix.events","c":"OnPreFillInventoryObjectContextMenuEvent","l":"handleEvent(Integer, KahluaTable, KahluaTable)","u":"handleEvent(java.lang.Integer,se.krka.kahlua.vm.KahluaTable,se.krka.kahlua.vm.KahluaTable)"},{"p":"com.avrix.events","c":"OnFillWorldObjectContextMenuEvent","l":"handleEvent(Integer, KahluaTable, KahluaTable, Boolean)","u":"handleEvent(java.lang.Integer,se.krka.kahlua.vm.KahluaTable,se.krka.kahlua.vm.KahluaTable,java.lang.Boolean)"},{"p":"com.avrix.events","c":"OnItemFallEvent","l":"handleEvent(InventoryItem)","u":"handleEvent(zombie.inventory.InventoryItem)"},{"p":"com.avrix.events","c":"OnPostMapLoadEvent","l":"handleEvent(IsoCell, Integer, Integer)","u":"handleEvent(zombie.iso.IsoCell,java.lang.Integer,java.lang.Integer)"},{"p":"com.avrix.events","c":"OnDoTileBuilding3Event","l":"handleEvent(IsoChunk, Boolean, Integer, Integer, Integer)","u":"handleEvent(zombie.iso.IsoChunk,java.lang.Boolean,java.lang.Integer,java.lang.Integer,java.lang.Integer)"},{"p":"com.avrix.events","c":"OnDoTileBuilding2Event","l":"handleEvent(IsoChunk, Boolean, Integer, Integer, Integer, IsoGridSquare)","u":"handleEvent(zombie.iso.IsoChunk,java.lang.Boolean,java.lang.Integer,java.lang.Integer,java.lang.Integer,zombie.iso.IsoGridSquare)"},{"p":"com.avrix.events","c":"OnContainerUpdateEvent","l":"handleEvent(IsoDeadBody)","u":"handleEvent(zombie.iso.objects.IsoDeadBody)"},{"p":"com.avrix.events","c":"OnNewFireEvent","l":"handleEvent(IsoFire)","u":"handleEvent(zombie.iso.objects.IsoFire)"},{"p":"com.avrix.events","c":"OnCharacterDeathEvent","l":"handleEvent(IsoGameCharacter)","u":"handleEvent(zombie.characters.IsoGameCharacter)"},{"p":"com.avrix.events","c":"OnEnterVehicleEvent","l":"handleEvent(IsoGameCharacter)","u":"handleEvent(zombie.characters.IsoGameCharacter)"},{"p":"com.avrix.events","c":"OnExitVehicleEvent","l":"handleEvent(IsoGameCharacter)","u":"handleEvent(zombie.characters.IsoGameCharacter)"},{"p":"com.avrix.events","c":"OnVehicleDamageTextureEvent","l":"handleEvent(IsoGameCharacter)","u":"handleEvent(zombie.characters.IsoGameCharacter)"},{"p":"com.avrix.events","c":"OnMechanicActionDoneEvent","l":"handleEvent(IsoGameCharacter, Boolean, Integer, String, Long, Boolean)","u":"handleEvent(zombie.characters.IsoGameCharacter,java.lang.Boolean,java.lang.Integer,java.lang.String,java.lang.Long,java.lang.Boolean)"},{"p":"com.avrix.events","c":"OnPlayerAttackFinishedEvent","l":"handleEvent(IsoGameCharacter, HandWeapon)","u":"handleEvent(zombie.characters.IsoGameCharacter,zombie.inventory.types.HandWeapon)"},{"p":"com.avrix.events","c":"OnWeaponHitTreeEvent","l":"handleEvent(IsoGameCharacter, HandWeapon)","u":"handleEvent(zombie.characters.IsoGameCharacter,zombie.inventory.types.HandWeapon)"},{"p":"com.avrix.events","c":"OnWeaponSwingEvent","l":"handleEvent(IsoGameCharacter, HandWeapon)","u":"handleEvent(zombie.characters.IsoGameCharacter,zombie.inventory.types.HandWeapon)"},{"p":"com.avrix.events","c":"OnWeaponSwingHitPointEvent","l":"handleEvent(IsoGameCharacter, HandWeapon)","u":"handleEvent(zombie.characters.IsoGameCharacter,zombie.inventory.types.HandWeapon)"},{"p":"com.avrix.events","c":"OnEquipPrimaryEvent","l":"handleEvent(IsoGameCharacter, InventoryItem)","u":"handleEvent(zombie.characters.IsoGameCharacter,zombie.inventory.InventoryItem)"},{"p":"com.avrix.events","c":"OnEquipSecondaryEvent","l":"handleEvent(IsoGameCharacter, InventoryItem)","u":"handleEvent(zombie.characters.IsoGameCharacter,zombie.inventory.InventoryItem)"},{"p":"com.avrix.events","c":"OnObjectCollideEvent","l":"handleEvent(IsoGameCharacter, IsoDoor)","u":"handleEvent(zombie.characters.IsoGameCharacter,zombie.iso.objects.IsoDoor)"},{"p":"com.avrix.events","c":"OnCharacterCollideEvent","l":"handleEvent(IsoGameCharacter, IsoGameCharacter)","u":"handleEvent(zombie.characters.IsoGameCharacter,zombie.characters.IsoGameCharacter)"},{"p":"com.avrix.events","c":"OnWeaponHitCharacterEvent","l":"handleEvent(IsoGameCharacter, IsoGameCharacter, HandWeapon, Float)","u":"handleEvent(zombie.characters.IsoGameCharacter,zombie.characters.IsoGameCharacter,zombie.inventory.types.HandWeapon,java.lang.Float)"},{"p":"com.avrix.events","c":"OnObjectCollideEvent","l":"handleEvent(IsoGameCharacter, IsoGridSquare)","u":"handleEvent(zombie.characters.IsoGameCharacter,zombie.iso.IsoGridSquare)"},{"p":"com.avrix.events","c":"OnObjectCollideEvent","l":"handleEvent(IsoGameCharacter, IsoThumpable)","u":"handleEvent(zombie.characters.IsoGameCharacter,zombie.iso.objects.IsoThumpable)"},{"p":"com.avrix.events","c":"OnObjectCollideEvent","l":"handleEvent(IsoGameCharacter, IsoWindow)","u":"handleEvent(zombie.characters.IsoGameCharacter,zombie.iso.objects.IsoWindow)"},{"p":"com.avrix.events","c":"OnObjectCollideEvent","l":"handleEvent(IsoGameCharacter, IsoZombie)","u":"handleEvent(zombie.characters.IsoGameCharacter,zombie.characters.IsoZombie)"},{"p":"com.avrix.events","c":"OnAddXPEvent","l":"handleEvent(IsoGameCharacter, PerkFactory.Perk, Float)","u":"handleEvent(zombie.characters.IsoGameCharacter,zombie.characters.skills.PerkFactory.Perk,java.lang.Float)"},{"p":"com.avrix.events","c":"OnLevelPerkEvent","l":"handleEvent(IsoGameCharacter, PerkFactory.Perk, Integer, Boolean)","u":"handleEvent(zombie.characters.IsoGameCharacter,zombie.characters.skills.PerkFactory.Perk,java.lang.Integer,java.lang.Boolean)"},{"p":"com.avrix.events","c":"OnAIStateChangeEvent","l":"handleEvent(IsoGameCharacter, State, State)","u":"handleEvent(zombie.characters.IsoGameCharacter,zombie.ai.State,zombie.ai.State)"},{"p":"com.avrix.events","c":"OnContainerUpdateEvent","l":"handleEvent(IsoGridSquare)","u":"handleEvent(zombie.iso.IsoGridSquare)"},{"p":"com.avrix.events","c":"OnGridBurntEvent","l":"handleEvent(IsoGridSquare)","u":"handleEvent(zombie.iso.IsoGridSquare)"},{"p":"com.avrix.events","c":"OnLoadGridsquareEvent","l":"handleEvent(IsoGridSquare)","u":"handleEvent(zombie.iso.IsoGridSquare)"},{"p":"com.avrix.events","c":"OnLoadModDataFromServerEvent","l":"handleEvent(IsoGridSquare)","u":"handleEvent(zombie.iso.IsoGridSquare)"},{"p":"com.avrix.events","c":"OnReuseGridsquareEvent","l":"handleEvent(IsoGridSquare)","u":"handleEvent(zombie.iso.IsoGridSquare)"},{"p":"com.avrix.events","c":"OnObjectAboutToBeRemovedEvent","l":"handleEvent(IsoObject)","u":"handleEvent(zombie.iso.IsoObject)"},{"p":"com.avrix.events","c":"OnObjectAddedEvent","l":"handleEvent(IsoObject)","u":"handleEvent(zombie.iso.IsoObject)"},{"p":"com.avrix.events","c":"OnTileRemovedEvent","l":"handleEvent(IsoObject)","u":"handleEvent(zombie.iso.IsoObject)"},{"p":"com.avrix.events","c":"OnWaterAmountChangeEvent","l":"handleEvent(IsoObject, Integer)","u":"handleEvent(zombie.iso.IsoObject,java.lang.Integer)"},{"p":"com.avrix.events","c":"OnObjectLeftMouseButtonDownEvent","l":"handleEvent(IsoObject, Integer, Integer)","u":"handleEvent(zombie.iso.IsoObject,java.lang.Integer,java.lang.Integer)"},{"p":"com.avrix.events","c":"OnObjectLeftMouseButtonUpEvent","l":"handleEvent(IsoObject, Integer, Integer)","u":"handleEvent(zombie.iso.IsoObject,java.lang.Integer,java.lang.Integer)"},{"p":"com.avrix.events","c":"OnObjectRightMouseButtonDownEvent","l":"handleEvent(IsoObject, Integer, Integer)","u":"handleEvent(zombie.iso.IsoObject,java.lang.Integer,java.lang.Integer)"},{"p":"com.avrix.events","c":"OnObjectRightMouseButtonUpEvent","l":"handleEvent(IsoObject, Integer, Integer)","u":"handleEvent(zombie.iso.IsoObject,java.lang.Integer,java.lang.Integer)"},{"p":"com.avrix.events","c":"OnClothingUpdatedEvent","l":"handleEvent(IsoPlayer)","u":"handleEvent(zombie.characters.IsoPlayer)"},{"p":"com.avrix.events","c":"OnPlayerDeathEvent","l":"handleEvent(IsoPlayer)","u":"handleEvent(zombie.characters.IsoPlayer)"},{"p":"com.avrix.events","c":"OnPlayerMoveEvent","l":"handleEvent(IsoPlayer)","u":"handleEvent(zombie.characters.IsoPlayer)"},{"p":"com.avrix.events","c":"OnPlayerUpdateEvent","l":"handleEvent(IsoPlayer)","u":"handleEvent(zombie.characters.IsoPlayer)"},{"p":"com.avrix.events","c":"OnRequestTradeEvent","l":"handleEvent(IsoPlayer)","u":"handleEvent(zombie.characters.IsoPlayer)"},{"p":"com.avrix.events","c":"OnSwitchVehicleSeatEvent","l":"handleEvent(IsoPlayer)","u":"handleEvent(zombie.characters.IsoPlayer)"},{"p":"com.avrix.events","c":"OnReceiveItemListNetEvent","l":"handleEvent(IsoPlayer, ArrayList, IsoPlayer, String, String)","u":"handleEvent(zombie.characters.IsoPlayer,java.util.ArrayList,zombie.characters.IsoPlayer,java.lang.String,java.lang.String)"},{"p":"com.avrix.events","c":"OnUseVehicleEvent","l":"handleEvent(IsoPlayer, BaseVehicle, Boolean)","u":"handleEvent(zombie.characters.IsoPlayer,zombie.vehicles.BaseVehicle,java.lang.Boolean)"},{"p":"com.avrix.events","c":"OnVehicleHornEvent","l":"handleEvent(IsoPlayer, BaseVehicle, Boolean)","u":"handleEvent(zombie.characters.IsoPlayer,zombie.vehicles.BaseVehicle,java.lang.Boolean)"},{"p":"com.avrix.events","c":"OnDisableSearchModeEvent","l":"handleEvent(IsoPlayer, Boolean)","u":"handleEvent(zombie.characters.IsoPlayer,java.lang.Boolean)"},{"p":"com.avrix.events","c":"OnEnableSearchModeEvent","l":"handleEvent(IsoPlayer, Boolean)","u":"handleEvent(zombie.characters.IsoPlayer,java.lang.Boolean)"},{"p":"com.avrix.events","c":"OnToggleSearchModeEvent","l":"handleEvent(IsoPlayer, Boolean)","u":"handleEvent(zombie.characters.IsoPlayer,java.lang.Boolean)"},{"p":"com.avrix.events","c":"OnPressRackButtonEvent","l":"handleEvent(IsoPlayer, HandWeapon)","u":"handleEvent(zombie.characters.IsoPlayer,zombie.inventory.types.HandWeapon)"},{"p":"com.avrix.events","c":"OnPressReloadButtonEvent","l":"handleEvent(IsoPlayer, HandWeapon)","u":"handleEvent(zombie.characters.IsoPlayer,zombie.inventory.types.HandWeapon)"},{"p":"com.avrix.events","c":"OnWeaponHitXpEvent","l":"handleEvent(IsoPlayer, HandWeapon, IsoGameCharacter, Float)","u":"handleEvent(zombie.characters.IsoPlayer,zombie.inventory.types.HandWeapon,zombie.characters.IsoGameCharacter,java.lang.Float)"},{"p":"com.avrix.events","c":"OnTradingUIRemoveItemEvent","l":"handleEvent(IsoPlayer, Integer)","u":"handleEvent(zombie.characters.IsoPlayer,java.lang.Integer)"},{"p":"com.avrix.events","c":"OnTradingUIUpdateStateEvent","l":"handleEvent(IsoPlayer, Integer)","u":"handleEvent(zombie.characters.IsoPlayer,java.lang.Integer)"},{"p":"com.avrix.events","c":"OnTradingUIAddItemEvent","l":"handleEvent(IsoPlayer, InventoryItem)","u":"handleEvent(zombie.characters.IsoPlayer,zombie.inventory.InventoryItem)"},{"p":"com.avrix.events","c":"OnNewGameEvent","l":"handleEvent(IsoPlayer, IsoGridSquare)","u":"handleEvent(zombie.characters.IsoPlayer,zombie.iso.IsoGridSquare)"},{"p":"com.avrix.events","c":"OnPreFillWorldObjectContextMenuEvent","l":"handleEvent(IsoPlayer, KahluaTable, KahluaTable, Boolean)","u":"handleEvent(zombie.characters.IsoPlayer,se.krka.kahlua.vm.KahluaTable,se.krka.kahlua.vm.KahluaTable,java.lang.Boolean)"},{"p":"com.avrix.events","c":"OnCreateLivingCharacterEvent","l":"handleEvent(IsoPlayer, SurvivorDesc)","u":"handleEvent(zombie.characters.IsoPlayer,zombie.characters.SurvivorDesc)"},{"p":"com.avrix.events","c":"OnPlayerDisconnectEvent","l":"handleEvent(IsoPlayer, UdpConnection)","u":"handleEvent(zombie.characters.IsoPlayer,zombie.core.raknet.UdpConnection)"},{"p":"com.avrix.events","c":"OnSeeNewRoomEvent","l":"handleEvent(IsoRoom)","u":"handleEvent(zombie.iso.areas.IsoRoom)"},{"p":"com.avrix.events","c":"OnLoadedTileDefinitionsEvent","l":"handleEvent(IsoSpriteManager)","u":"handleEvent(zombie.iso.sprite.IsoSpriteManager)"},{"p":"com.avrix.events","c":"OnCreateSurvivorEvent","l":"handleEvent(IsoSurvivor)","u":"handleEvent(zombie.characters.IsoSurvivor)"},{"p":"com.avrix.events","c":"OnCreateLivingCharacterEvent","l":"handleEvent(IsoSurvivor, SurvivorDesc)","u":"handleEvent(zombie.characters.IsoSurvivor,zombie.characters.SurvivorDesc)"},{"p":"com.avrix.events","c":"OnDestroyIsoThumpableEvent","l":"handleEvent(IsoThumpable)","u":"handleEvent(zombie.iso.objects.IsoThumpable)"},{"p":"com.avrix.events","c":"OnContainerUpdateEvent","l":"handleEvent(IsoWorldInventoryObject)","u":"handleEvent(zombie.iso.objects.IsoWorldInventoryObject)"},{"p":"com.avrix.events","c":"OnZombieDeadEvent","l":"handleEvent(IsoZombie)","u":"handleEvent(zombie.characters.IsoZombie)"},{"p":"com.avrix.events","c":"OnZombieUpdateEvent","l":"handleEvent(IsoZombie)","u":"handleEvent(zombie.characters.IsoZombie)"},{"p":"com.avrix.events","c":"OnHitZombieEvent","l":"handleEvent(IsoZombie, IsoGameCharacter, BodyPartType, HandWeapon)","u":"handleEvent(zombie.characters.IsoZombie,zombie.characters.IsoGameCharacter,zombie.characters.BodyDamage.BodyPartType,zombie.inventory.types.HandWeapon)"},{"p":"com.avrix.events","c":"OnAddForageDefsEvent","l":"handleEvent(KahluaTable)","u":"handleEvent(se.krka.kahlua.vm.KahluaTable)"},{"p":"com.avrix.events","c":"OnGetDBSchemaEvent","l":"handleEvent(KahluaTable)","u":"handleEvent(se.krka.kahlua.vm.KahluaTable)"},{"p":"com.avrix.events","c":"OnMngInvReceiveItemsEvent","l":"handleEvent(KahluaTable)","u":"handleEvent(se.krka.kahlua.vm.KahluaTable)"},{"p":"com.avrix.events","c":"OnPreAddCatDefsEvent","l":"handleEvent(KahluaTable)","u":"handleEvent(se.krka.kahlua.vm.KahluaTable)"},{"p":"com.avrix.events","c":"OnPreAddForageDefsEvent","l":"handleEvent(KahluaTable)","u":"handleEvent(se.krka.kahlua.vm.KahluaTable)"},{"p":"com.avrix.events","c":"OnPreAddItemDefsEvent","l":"handleEvent(KahluaTable)","u":"handleEvent(se.krka.kahlua.vm.KahluaTable)"},{"p":"com.avrix.events","c":"OnPreAddZoneDefsEvent","l":"handleEvent(KahluaTable)","u":"handleEvent(se.krka.kahlua.vm.KahluaTable)"},{"p":"com.avrix.events","c":"OnSpawnRegionsLoadedEvent","l":"handleEvent(KahluaTable)","u":"handleEvent(se.krka.kahlua.vm.KahluaTable)"},{"p":"com.avrix.events","c":"OnFillSearchIconContextMenuEvent","l":"handleEvent(KahluaTable, KahluaTable)","u":"handleEvent(se.krka.kahlua.vm.KahluaTable,se.krka.kahlua.vm.KahluaTable)"},{"p":"com.avrix.events","c":"OnChangeLanguageEvent","l":"handleEvent(Language)","u":"handleEvent(zombie.core.Language)"},{"p":"com.avrix.events","c":"OnDynamicMovableRecipeEvent","l":"handleEvent(Moveable, MovableRecipe, InventoryItem, IsoGameCharacter)","u":"handleEvent(zombie.inventory.types.Moveable,zombie.scripting.objects.MovableRecipe,zombie.inventory.InventoryItem,zombie.characters.IsoGameCharacter)"},{"p":"com.avrix.events","c":"OnPostWidgetDrawEvent","l":"handleEvent(NVGContext)","u":"handleEvent(com.avrix.ui.NVGContext)"},{"p":"com.avrix.events","c":"OnPreWidgetDrawEvent","l":"handleEvent(NVGContext)","u":"handleEvent(com.avrix.ui.NVGContext)"},{"p":"com.avrix.events","c":"OnWidgetManagerInitEvent","l":"handleEvent(NVGContext)","u":"handleEvent(com.avrix.ui.NVGContext)"},{"p":"com.avrix.events","c":"OnDoSpecialTooltipEvent","l":"handleEvent(ObjectTooltip, IsoGridSquare)","u":"handleEvent(zombie.ui.ObjectTooltip,zombie.iso.IsoGridSquare)"},{"p":"com.avrix.events","c":"OnLoadRadioScriptsEvent","l":"handleEvent(RadioScriptManager, Boolean)","u":"handleEvent(zombie.radio.scripting.RadioScriptManager,java.lang.Boolean)"},{"p":"com.avrix.events","c":"OnInitRecordedMediaEvent","l":"handleEvent(RecordedMedia)","u":"handleEvent(zombie.radio.media.RecordedMedia)"},{"p":"com.avrix.events","c":"OnReceiveSafehouseInviteEvent","l":"handleEvent(SafeHouse, String)","u":"handleEvent(zombie.iso.areas.SafeHouse,java.lang.String)"},{"p":"com.avrix.events","c":"OnAddIncomingEvent","l":"handleEvent(Short, ByteBuffer, UdpConnection)","u":"handleEvent(java.lang.Short,java.nio.ByteBuffer,zombie.core.raknet.UdpConnection)"},{"p":"com.avrix.events","c":"OnAcceptInviteEvent","l":"handleEvent(String)","u":"handleEvent(java.lang.String)"},{"p":"com.avrix.events","c":"OnChangeWeatherEvent","l":"handleEvent(String)","u":"handleEvent(java.lang.String)"},{"p":"com.avrix.events","c":"OnConnectFailedEvent","l":"handleEvent(String)","u":"handleEvent(java.lang.String)"},{"p":"com.avrix.events","c":"OnLuaFilesLoadedEvent","l":"handleEvent(String)","u":"handleEvent(java.lang.String)"},{"p":"com.avrix.events","c":"OnResetLuaEvent","l":"handleEvent(String)","u":"handleEvent(java.lang.String)"},{"p":"com.avrix.events","c":"OnSendConsoleCommandEvent","l":"handleEvent(String)","u":"handleEvent(java.lang.String)"},{"p":"com.avrix.events","c":"OnSteamFriendStatusChangedEvent","l":"handleEvent(String)","u":"handleEvent(java.lang.String)"},{"p":"com.avrix.events","c":"OnSyncFactionEvent","l":"handleEvent(String)","u":"handleEvent(java.lang.String)"},{"p":"com.avrix.events","c":"OnLuaScriptExecuteEvent","l":"handleEvent(String, boolean)","u":"handleEvent(java.lang.String,boolean)"},{"p":"com.avrix.events","c":"OnSteamWorkshopItemCreatedEvent","l":"handleEvent(String, Boolean)","u":"handleEvent(java.lang.String,java.lang.Boolean)"},{"p":"com.avrix.events","c":"OnReceiveUserlogEvent","l":"handleEvent(String, ByteBuffer)","u":"handleEvent(java.lang.String,java.nio.ByteBuffer)"},{"p":"com.avrix.events","c":"OnAmbientSoundEvent","l":"handleEvent(String, Float, Float)","u":"handleEvent(java.lang.String,java.lang.Float,java.lang.Float)"},{"p":"com.avrix.events","c":"OnDeviceTextEvent","l":"handleEvent(String, Float, Float, Float, String, IsoWaveSignal)","u":"handleEvent(java.lang.String,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.String,zombie.iso.objects.IsoWaveSignal)"},{"p":"com.avrix.events","c":"OnDeviceTextEvent","l":"handleEvent(String, Float, Float, Float, String, Radio)","u":"handleEvent(java.lang.String,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.String,zombie.inventory.types.Radio)"},{"p":"com.avrix.events","c":"OnDeviceTextEvent","l":"handleEvent(String, Float, Float, Float, String, VehiclePart)","u":"handleEvent(java.lang.String,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.String,zombie.vehicles.VehiclePart)"},{"p":"com.avrix.events","c":"OnSteamServerFailedToRespond2Event","l":"handleEvent(String, Integer)","u":"handleEvent(java.lang.String,java.lang.Integer)"},{"p":"com.avrix.events","c":"OnTabAddedEvent","l":"handleEvent(String, Integer)","u":"handleEvent(java.lang.String,java.lang.Integer)"},{"p":"com.avrix.events","c":"OnTabRemovedEvent","l":"handleEvent(String, Integer)","u":"handleEvent(java.lang.String,java.lang.Integer)"},{"p":"com.avrix.events","c":"OnAdminMessageEvent","l":"handleEvent(String, Integer, Integer, Integer)","u":"handleEvent(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.Integer)"},{"p":"com.avrix.events","c":"OnSteamRulesRefreshCompleteEvent","l":"handleEvent(String, Integer, KahluaTable)","u":"handleEvent(java.lang.String,java.lang.Integer,se.krka.kahlua.vm.KahluaTable)"},{"p":"com.avrix.events","c":"OnSteamServerResponded2Event","l":"handleEvent(String, Integer, Server)","u":"handleEvent(java.lang.String,java.lang.Integer,zombie.network.Server)"},{"p":"com.avrix.events","c":"OnReceiveGlobalModDataEvent","l":"handleEvent(String, KahluaTable)","u":"handleEvent(java.lang.String,se.krka.kahlua.vm.KahluaTable)"},{"p":"com.avrix.events","c":"OnAcceptedFactionInviteEvent","l":"handleEvent(String, String)","u":"handleEvent(java.lang.String,java.lang.String)"},{"p":"com.avrix.events","c":"OnAcceptedSafehouseInviteEvent","l":"handleEvent(String, String)","u":"handleEvent(java.lang.String,java.lang.String)"},{"p":"com.avrix.events","c":"OnConnectionStateChangedEvent","l":"handleEvent(String, String)","u":"handleEvent(java.lang.String,java.lang.String)"},{"p":"com.avrix.events","c":"OnPlayerUnbanEvent","l":"handleEvent(String, String)","u":"handleEvent(java.lang.String,java.lang.String)"},{"p":"com.avrix.events","c":"OnReceiveFactionInviteEvent","l":"handleEvent(String, String)","u":"handleEvent(java.lang.String,java.lang.String)"},{"p":"com.avrix.events","c":"OnServerPingedEvent","l":"handleEvent(String, String)","u":"handleEvent(java.lang.String,java.lang.String)"},{"p":"com.avrix.events","c":"OnClientCommandEvent","l":"handleEvent(String, String, IsoPlayer, KahluaTable)","u":"handleEvent(java.lang.String,java.lang.String,zombie.characters.IsoPlayer,se.krka.kahlua.vm.KahluaTable)"},{"p":"com.avrix.events","c":"OnFillContainerEvent","l":"handleEvent(String, String, ItemContainer)","u":"handleEvent(java.lang.String,java.lang.String,zombie.inventory.ItemContainer)"},{"p":"com.avrix.events","c":"OnServerCommandEvent","l":"handleEvent(String, String, KahluaTable)","u":"handleEvent(java.lang.String,java.lang.String,se.krka.kahlua.vm.KahluaTable)"},{"p":"com.avrix.events","c":"OnCoopServerMessageEvent","l":"handleEvent(String, String, String)","u":"handleEvent(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.avrix.events","c":"OnSendChatCommandEvent","l":"handleEvent(UdpConnection, String)","u":"handleEvent(zombie.core.raknet.UdpConnection,java.lang.String)"},{"p":"com.avrix.events","c":"OnPlayerBanEvent","l":"handleEvent(UdpConnection, String, String)","u":"handleEvent(zombie.core.raknet.UdpConnection,java.lang.String,java.lang.String)"},{"p":"com.avrix.events","c":"OnPlayerKickEvent","l":"handleEvent(UdpConnection, String, String)","u":"handleEvent(zombie.core.raknet.UdpConnection,java.lang.String,java.lang.String)"},{"p":"com.avrix.events","c":"OnWeatherPeriodCompleteEvent","l":"handleEvent(WeatherPeriod)","u":"handleEvent(zombie.iso.weather.WeatherPeriod)"},{"p":"com.avrix.events","c":"OnWeatherPeriodStageEvent","l":"handleEvent(WeatherPeriod)","u":"handleEvent(zombie.iso.weather.WeatherPeriod)"},{"p":"com.avrix.events","c":"OnWeatherPeriodStartEvent","l":"handleEvent(WeatherPeriod)","u":"handleEvent(zombie.iso.weather.WeatherPeriod)"},{"p":"com.avrix.events","c":"OnWeatherPeriodStopEvent","l":"handleEvent(WeatherPeriod)","u":"handleEvent(zombie.iso.weather.WeatherPeriod)"},{"p":"com.avrix.events","c":"OnInitModdedWeatherStageEvent","l":"handleEvent(WeatherPeriod, WeatherPeriod.WeatherStage, Float)","u":"handleEvent(zombie.iso.weather.WeatherPeriod,zombie.iso.weather.WeatherPeriod.WeatherStage,java.lang.Float)"},{"p":"com.avrix.events","c":"OnUpdateModdedWeatherStageEvent","l":"handleEvent(WeatherPeriod, WeatherPeriod.WeatherStage, Float)","u":"handleEvent(zombie.iso.weather.WeatherPeriod,zombie.iso.weather.WeatherPeriod.WeatherStage,java.lang.Float)"},{"p":"com.avrix.events","c":"EventManager.EventListener","l":"handler()"},{"p":"com.avrix.events","c":"EventManager.EventListener","l":"hashCode()"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"headerColor"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"headerHeight"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"height"},{"p":"com.avrix.enums","c":"Priority","l":"HIGH"},{"p":"com.avrix.enums","c":"Priority","l":"HIGHEST"},{"p":"com.avrix.ui.widgets","c":"ScrollbarWidget","l":"horizontal"},{"p":"com.avrix.ui.widgets","c":"HorizontalBoxWidget","l":"HorizontalBoxWidget(int, int, int, int, boolean)","u":"%3Cinit%3E(int,int,int,int,boolean)"},{"p":"com.avrix.ui.widgets","c":"ScrollPanelWidget","l":"horizontalScrollbar"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"hovered"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"iconColor"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"iconFontName"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"iconFontName"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"iconFontName"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"iconSize"},{"p":"com.avrix.plugin","c":"Metadata.MetadataBuilder","l":"id(String)","u":"id(java.lang.String)"},{"p":"com.avrix.resources","c":"ImageLoader","l":"ImageLoader()","u":"%3Cinit%3E()"},{"p":"com.avrix.resources","c":"ImageLoader","l":"imagesCacheMap"},{"p":"com.avrix.resources","c":"ImageLoader","l":"imagesCachePath"},{"p":"com.avrix.ui","c":"NVGColor","l":"immutable()"},{"p":"com.avrix.resources","c":"ResourceManager","l":"init()"},{"p":"com.avrix.ui","c":"WidgetManager","l":"init()"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"InputTextWidget(int, int, int, int)","u":"%3Cinit%3E(int,int,int,int)"},{"p":"com.avrix.ui","c":"InputWidgetHandler","l":"InputWidgetHandler()","u":"%3Cinit%3E()"},{"p":"com.avrix.agent","c":"Agent","l":"instrumentation"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"intersectScissor(int, int, int, int)","u":"intersectScissor(int,int,int,int)"},{"p":"com.avrix.events","c":"EventManager","l":"invokeEvent(String, Object...)","u":"invokeEvent(java.lang.String,java.lang.Object...)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"isActive()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"isAlwaysOnTop()"},{"p":"com.avrix.ui.widgets","c":"BoxLayoutWidget","l":"isAutoresize()"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"isChecked()"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"isCursorVisible()"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"isDraggable()"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"isEditable()"},{"p":"com.avrix.utils","c":"YamlFile","l":"isEmpty()"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"isEnable()"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"isEnable()"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"isEnable()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"isHovered()"},{"p":"com.avrix.resources","c":"ImageLoader","l":"isImageFile(String)","u":"isImageFile(java.lang.String)"},{"p":"com.avrix.ui","c":"NVGContext","l":"isModernOpenGL()"},{"p":"com.avrix.logs","c":"IsolatedConsoleWriter","l":"IsolatedConsoleWriter()","u":"%3Cinit%3E()"},{"p":"com.avrix.logs","c":"IsolatedConsoleWriter","l":"IsolatedConsoleWriter(Map)","u":"%3Cinit%3E(java.util.Map)"},{"p":"com.avrix.utils","c":"IsoObjectUtils","l":"IsoObjectUtils()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui","c":"WidgetManager","l":"isOverCustomUI()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"isPointOver(int, int)","u":"isPointOver(int,int)"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"isResizable()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"isScrollable()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"isScrollLock()"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget.ComboPopupButton","l":"isSelected()"},{"p":"com.avrix.ui.widgets","c":"BoxLayoutWidget","l":"isUpdatingLayout()"},{"p":"com.avrix.utils","c":"VersionChecker","l":"isVersionCompatible(String, String)","u":"isVersionCompatible(java.lang.String,java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"isVisible()"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"kickPlayer(IsoPlayer, String)","u":"kickPlayer(zombie.characters.IsoPlayer,java.lang.String)"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"kickPlayer(UdpConnection, String)","u":"kickPlayer(zombie.core.raknet.UdpConnection,java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"LabelWidget","l":"LabelWidget(String, String, int, int, int, NVGColor)","u":"%3Cinit%3E(java.lang.String,java.lang.String,int,int,int,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"BoxLayoutWidget","l":"lastHeight"},{"p":"com.avrix.ui.widgets","c":"BoxLayoutWidget","l":"lastWidth"},{"p":"com.avrix","c":"Launcher","l":"Launcher()","u":"%3Cinit%3E()"},{"p":"com.avrix.plugin","c":"Metadata.MetadataBuilder","l":"license(String)","u":"license(java.lang.String)"},{"p":"com.avrix.ui","c":"NVGColor","l":"LIGHT_BLACK"},{"p":"com.avrix.ui","c":"NVGColor","l":"LIGHT_BLUE"},{"p":"com.avrix.ui","c":"NVGColor","l":"LIGHT_GRAY"},{"p":"com.avrix.ui","c":"NVGColor","l":"LIGHT_YELLOW"},{"p":"com.avrix.logs","c":"LineReadingOutputStream","l":"LineReadingOutputStream(Consumer)","u":"%3Cinit%3E(java.util.function.Consumer)"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"LMBDown"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"LMBDown"},{"p":"com.avrix.utils","c":"YamlFile","l":"load(File)","u":"load(java.io.File)"},{"p":"com.avrix.utils","c":"YamlFile","l":"load(Path)","u":"load(java.nio.file.Path)"},{"p":"com.avrix.utils","c":"YamlFile","l":"load(String)","u":"load(java.lang.String)"},{"p":"com.avrix.agent","c":"AgentLoader","l":"loadAgent()"},{"p":"com.avrix.agent","c":"AgentLoader","l":"loadAgent(String)","u":"loadAgent(java.lang.String)"},{"p":"com.avrix.plugin","c":"Plugin","l":"loadConfig(String)","u":"loadConfig(java.lang.String)"},{"p":"com.avrix.plugin","c":"Plugin","l":"loadDefaultConfig()"},{"p":"com.avrix.ui","c":"NVGFont","l":"loadDefaultFonts()"},{"p":"com.avrix.resources","c":"ImageLoader","l":"loadImage(Path)","u":"loadImage(java.nio.file.Path)"},{"p":"com.avrix.resources","c":"ImageLoader","l":"loadImage(String)","u":"loadImage(java.lang.String)"},{"p":"com.avrix.resources","c":"ImageLoader","l":"loadImage(String, String)","u":"loadImage(java.lang.String,java.lang.String)"},{"p":"com.avrix.resources","c":"ImageLoader","l":"loadImages(NVGContext)","u":"loadImages(com.avrix.ui.NVGContext)"},{"p":"com.avrix.lua","c":"LuaManager","l":"loadLuaFromFolder(String, boolean)","u":"loadLuaFromFolder(java.lang.String,boolean)"},{"p":"com.avrix.plugin","c":"PluginManager","l":"loadPlugins()"},{"p":"com.avrix.enums","c":"Priority","l":"LOW"},{"p":"com.avrix.enums","c":"Priority","l":"LOWEST"},{"p":"com.avrix.lua","c":"LuaExposer","l":"LuaExposer()","u":"%3Cinit%3E()"},{"p":"com.avrix.lua","c":"LuaManager","l":"LuaManager()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui","c":"NVGColor","l":"MAGENTA"},{"p":"com.avrix","c":"Launcher","l":"main(String[])","u":"main(java.lang.String[])"},{"p":"com.avrix.ui","c":"NVGColor","l":"mallocNVG(MemoryStack)","u":"mallocNVG(org.lwjgl.system.MemoryStack)"},{"p":"com.avrix.ui.widgets","c":"BoxLayoutWidget","l":"margin"},{"p":"com.avrix.utils","c":"Constants","l":"MAX_CACHE_SIZE"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"maxScrollX"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"maxScrollY"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"maxTitleWidth"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"maxValue"},{"p":"com.avrix.utils","c":"YamlFile","l":"merge(Map)","u":"merge(java.util.Map)"},{"p":"com.avrix.utils","c":"YamlFile","l":"merge(YamlFile)","u":"merge(com.avrix.utils.YamlFile)"},{"p":"com.avrix.plugin","c":"Metadata.MetadataBuilder","l":"MetadataBuilder()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"minSizeX"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"minSizeY"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"minValue"},{"p":"com.avrix.ui.widgets","c":"ModalWidget","l":"ModalWidget(int, int)","u":"%3Cinit%3E(int,int)"},{"p":"com.avrix.ui.widgets","c":"ModalWidget","l":"ModalWidget(int, int, Widget)","u":"%3Cinit%3E(int,int,com.avrix.ui.widgets.Widget)"},{"p":"com.avrix.enums","c":"AccessLevel","l":"MODERATOR"},{"p":"com.avrix.agent","c":"ClassTransformer","l":"modifyClass()"},{"p":"com.avrix.patches","c":"PatchBanSteamIDCommand","l":"modifyClass()"},{"p":"com.avrix.patches","c":"PatchBanUserCommand","l":"modifyClass()"},{"p":"com.avrix.patches","c":"PatchChatServer","l":"modifyClass()"},{"p":"com.avrix.patches","c":"PatchGameServer","l":"modifyClass()"},{"p":"com.avrix.patches","c":"PatchGameWindow","l":"modifyClass()"},{"p":"com.avrix.patches","c":"PatchKickUserCommand","l":"modifyClass()"},{"p":"com.avrix.patches","c":"PatchLuaEventManager","l":"modifyClass()"},{"p":"com.avrix.patches","c":"PatchLuaManager","l":"modifyClass()"},{"p":"com.avrix.patches","c":"PatchLuaManagerExposer","l":"modifyClass()"},{"p":"com.avrix.patches","c":"PatchQuitCommand","l":"modifyClass()"},{"p":"com.avrix.patches","c":"PatchRenderThread","l":"modifyClass()"},{"p":"com.avrix.patches","c":"PatchSpriteRenderer","l":"modifyClass()"},{"p":"com.avrix.patches","c":"PatchTranslator","l":"modifyClass()"},{"p":"com.avrix.patches","c":"PatchUIManager","l":"modifyClass()"},{"p":"com.avrix.patches","c":"PatchUnbanSteamIDCommand","l":"modifyClass()"},{"p":"com.avrix.patches","c":"PatchUnbanUserCommand","l":"modifyClass()"},{"p":"com.avrix.patches","c":"PatchZLogger","l":"modifyClass()"},{"p":"com.avrix.agent","c":"ClassModifier.ClassModifierBuilder","l":"modifyMethod(String, BiConsumer)","u":"modifyMethod(java.lang.String,java.util.function.BiConsumer)"},{"p":"com.avrix.agent","c":"ClassModifier.ClassModifierBuilder","l":"modifyMethod(String, String, BiConsumer)","u":"modifyMethod(java.lang.String,java.lang.String,java.util.function.BiConsumer)"},{"p":"com.avrix.ui","c":"NVGColor","l":"multiply(float)"},{"p":"com.avrix.plugin","c":"Metadata.MetadataBuilder","l":"name(String)","u":"name(java.lang.String)"},{"p":"com.avrix.enums","c":"AccessLevel","l":"NONE"},{"p":"com.avrix.enums","c":"Priority","l":"NORMAL"},{"p":"com.avrix.ui","c":"NVGColor","l":"NVGColor(float, float, float, float)","u":"%3Cinit%3E(float,float,float,float)"},{"p":"com.avrix.ui","c":"NVGColor","l":"NVGColor(int, int, int, int)","u":"%3Cinit%3E(int,int,int,int)"},{"p":"com.avrix.ui","c":"NVGColor","l":"NVGColor(NVGColor)","u":"%3Cinit%3E(com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui","c":"NVGColor","l":"NVGColor(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.avrix.ui","c":"NVGContext","l":"NVGContext()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"NVGDrawer()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui","c":"NVGFont","l":"NVGFont()","u":"%3Cinit%3E()"},{"p":"com.avrix.enums","c":"AccessLevel","l":"OBSERVER"},{"p":"com.avrix.events","c":"OnAcceptedFactionInviteEvent","l":"OnAcceptedFactionInviteEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnAcceptedSafehouseInviteEvent","l":"OnAcceptedSafehouseInviteEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnAcceptedTradeEvent","l":"OnAcceptedTradeEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnAcceptInviteEvent","l":"OnAcceptInviteEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnAddForageDefsEvent","l":"OnAddForageDefsEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnAddIncomingEvent","l":"OnAddIncomingEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnAddMessageEvent","l":"OnAddMessageEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnAddXPEvent","l":"OnAddXPEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnAdminMessageEvent","l":"OnAdminMessageEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnAIStateChangeEvent","l":"OnAIStateChangeEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnAmbientSoundEvent","l":"OnAmbientSoundEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnCGlobalObjectSystemInitEvent","l":"OnCGlobalObjectSystemInitEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnChallengeQueryEvent","l":"OnChallengeQueryEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnChangeLanguageEvent","l":"OnChangeLanguageEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnChangeWeatherEvent","l":"OnChangeWeatherEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnCharacterCollideEvent","l":"OnCharacterCollideEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnCharacterDeathEvent","l":"OnCharacterDeathEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnChatMessageProcessedEvent","l":"OnChatMessageProcessedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnChatWindowInitEvent","l":"OnChatWindowInitEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"onCheckAction"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"onClickMethod"},{"p":"com.avrix.events","c":"OnClientCommandEvent","l":"OnClientCommandEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnClimateManagerInitEvent","l":"OnClimateManagerInitEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnClimateTickDebugEvent","l":"OnClimateTickDebugEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnClimateTickEvent","l":"OnClimateTickEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnClothingUpdatedEvent","l":"OnClothingUpdatedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnConnectedEvent","l":"OnConnectedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnConnectFailedEvent","l":"OnConnectFailedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnConnectionStateChangedEvent","l":"OnConnectionStateChangedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnContainerUpdateEvent","l":"OnContainerUpdateEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnCoopJoinFailedEvent","l":"OnCoopJoinFailedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnCoopServerMessageEvent","l":"OnCoopServerMessageEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnCreateLivingCharacterEvent","l":"OnCreateLivingCharacterEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnCreatePlayerEvent","l":"OnCreatePlayerEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnCreateSurvivorEvent","l":"OnCreateSurvivorEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnCreateUIEvent","l":"OnCreateUIEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnCustomUIKeyEvent","l":"OnCustomUIKeyEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnCustomUIKeyPressedEvent","l":"OnCustomUIKeyPressedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnCustomUIKeyReleasedEvent","l":"OnCustomUIKeyReleasedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnDawnEvent","l":"OnDawnEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnDestroyIsoThumpableEvent","l":"OnDestroyIsoThumpableEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnDeviceTextEvent","l":"OnDeviceTextEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnDisableSearchModeEvent","l":"OnDisableSearchModeEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnDisconnectEvent","l":"OnDisconnectEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnDistributionMergeEvent","l":"OnDistributionMergeEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnDoSpecialTooltipEvent","l":"OnDoSpecialTooltipEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnDoTileBuilding2Event","l":"OnDoTileBuilding2Event()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnDoTileBuilding3Event","l":"OnDoTileBuilding3Event()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnDuskEvent","l":"OnDuskEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnDynamicMovableRecipeEvent","l":"OnDynamicMovableRecipeEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnEnableSearchModeEvent","l":"OnEnableSearchModeEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnEnterVehicleEvent","l":"OnEnterVehicleEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnEquipPrimaryEvent","l":"OnEquipPrimaryEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnEquipSecondaryEvent","l":"OnEquipSecondaryEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnEveryDaysEvent","l":"OnEveryDaysEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnEveryHoursEvent","l":"OnEveryHoursEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnEveryOneMinuteEvent","l":"OnEveryOneMinuteEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnEveryTenMinutesEvent","l":"OnEveryTenMinutesEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnExitVehicleEvent","l":"OnExitVehicleEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnFETickEvent","l":"OnFETickEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnFillContainerEvent","l":"OnFillContainerEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnFillInventoryObjectContextMenuEvent","l":"OnFillInventoryObjectContextMenuEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnFillSearchIconContextMenuEvent","l":"OnFillSearchIconContextMenuEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnFillWorldObjectContextMenuEvent","l":"OnFillWorldObjectContextMenuEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnGameBootEvent","l":"OnGameBootEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnGamepadConnectEvent","l":"OnGamepadConnectEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnGamepadDisconnectEvent","l":"OnGamepadDisconnectEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnGameStartEvent","l":"OnGameStartEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnGameTimeLoadedEvent","l":"OnGameTimeLoadedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnGameWindowInitializedEvent","l":"OnGameWindowInitializedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnGetDBSchemaEvent","l":"OnGetDBSchemaEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnGetTableResultEvent","l":"OnGetTableResultEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnGridBurntEvent","l":"OnGridBurntEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnHitZombieEvent","l":"OnHitZombieEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnInitGlobalModDataEvent","l":"OnInitGlobalModDataEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.plugin","c":"Plugin","l":"onInitialize()"},{"p":"com.avrix.ui.widgets","c":"ScrollPanelWidget","l":"onInitialize()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"onInitialize()"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"onInitialize()"},{"p":"com.avrix.events","c":"OnInitModdedWeatherStageEvent","l":"OnInitModdedWeatherStageEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnInitRecordedMediaEvent","l":"OnInitRecordedMediaEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnInitSeasonsEvent","l":"OnInitSeasonsEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnInitWorldEvent","l":"OnInitWorldEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.commands","c":"Command","l":"onInvoke(UdpConnection, String[])","u":"onInvoke(zombie.core.raknet.UdpConnection,java.lang.String[])"},{"p":"com.avrix.events","c":"OnItemFallEvent","l":"OnItemFallEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnJoypadActivateEvent","l":"OnJoypadActivateEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnJoypadActivateUIEvent","l":"OnJoypadActivateUIEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnJoypadBeforeDeactivateEvent","l":"OnJoypadBeforeDeactivateEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnJoypadBeforeReactivateEvent","l":"OnJoypadBeforeReactivateEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnJoypadDeactivateEvent","l":"OnJoypadDeactivateEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnJoypadReactivateEvent","l":"OnJoypadReactivateEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnJoypadRenderUIEvent","l":"OnJoypadRenderUIEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnKeyKeepPressedEvent","l":"OnKeyKeepPressedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui","c":"InputWidgetHandler","l":"onKeyPress(int)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"onKeyPress(int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"onKeyPress(int)"},{"p":"com.avrix.events","c":"OnKeyPressedEvent","l":"OnKeyPressedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui","c":"InputWidgetHandler","l":"onKeyRelease(int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"onKeyRelease(int)"},{"p":"com.avrix.ui","c":"InputWidgetHandler","l":"onKeyRepeat(int)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"onKeyRepeat(int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"onKeyRepeat(int)"},{"p":"com.avrix.events","c":"OnKeyStartPressedEvent","l":"OnKeyStartPressedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"onLeftMouseDown(int, int)","u":"onLeftMouseDown(int,int)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"onLeftMouseDown(int, int)","u":"onLeftMouseDown(int,int)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"onLeftMouseDown(int, int)","u":"onLeftMouseDown(int,int)"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"onLeftMouseDown(int, int)","u":"onLeftMouseDown(int,int)"},{"p":"com.avrix.ui.widgets","c":"ScrollbarWidget","l":"onLeftMouseDown(int, int)","u":"onLeftMouseDown(int,int)"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"onLeftMouseDown(int, int)","u":"onLeftMouseDown(int,int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"onLeftMouseDown(int, int)","u":"onLeftMouseDown(int,int)"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"onLeftMouseDown(int, int)","u":"onLeftMouseDown(int,int)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"onLeftMouseDownOutside(int, int)","u":"onLeftMouseDownOutside(int,int)"},{"p":"com.avrix.ui.widgets","c":"PopupWidget","l":"onLeftMouseDownOutside(int, int)","u":"onLeftMouseDownOutside(int,int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"onLeftMouseDownOutside(int, int)","u":"onLeftMouseDownOutside(int,int)"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"onLeftMouseUp(int, int)","u":"onLeftMouseUp(int,int)"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"onLeftMouseUp(int, int)","u":"onLeftMouseUp(int,int)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"onLeftMouseUp(int, int)","u":"onLeftMouseUp(int,int)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"onLeftMouseUp(int, int)","u":"onLeftMouseUp(int,int)"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"onLeftMouseUp(int, int)","u":"onLeftMouseUp(int,int)"},{"p":"com.avrix.ui.widgets","c":"ScrollbarWidget","l":"onLeftMouseUp(int, int)","u":"onLeftMouseUp(int,int)"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"onLeftMouseUp(int, int)","u":"onLeftMouseUp(int,int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"onLeftMouseUp(int, int)","u":"onLeftMouseUp(int,int)"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"onLeftMouseUp(int, int)","u":"onLeftMouseUp(int,int)"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"onLeftMouseUpOutside(int, int)","u":"onLeftMouseUpOutside(int,int)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"onLeftMouseUpOutside(int, int)","u":"onLeftMouseUpOutside(int,int)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"onLeftMouseUpOutside(int, int)","u":"onLeftMouseUpOutside(int,int)"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"onLeftMouseUpOutside(int, int)","u":"onLeftMouseUpOutside(int,int)"},{"p":"com.avrix.ui.widgets","c":"ScrollbarWidget","l":"onLeftMouseUpOutside(int, int)","u":"onLeftMouseUpOutside(int,int)"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"onLeftMouseUpOutside(int, int)","u":"onLeftMouseUpOutside(int,int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"onLeftMouseUpOutside(int, int)","u":"onLeftMouseUpOutside(int,int)"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"onLeftMouseUpOutside(int, int)","u":"onLeftMouseUpOutside(int,int)"},{"p":"com.avrix.events","c":"OnLevelPerkEvent","l":"OnLevelPerkEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnLoadedTileDefinitionsEvent","l":"OnLoadedTileDefinitionsEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnLoadEvent","l":"OnLoadEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnLoadGridsquareEvent","l":"OnLoadGridsquareEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnLoadMapZonesEvent","l":"OnLoadMapZonesEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnLoadModDataFromServerEvent","l":"OnLoadModDataFromServerEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnLoadRadioScriptsEvent","l":"OnLoadRadioScriptsEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnLoadSoundBanksEvent","l":"OnLoadSoundBanksEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnLuaFilesLoadedEvent","l":"OnLuaFilesLoadedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnLuaScriptExecuteEvent","l":"OnLuaScriptExecuteEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnMainMenuEnterEvent","l":"OnMainMenuEnterEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnMechanicActionDoneEvent","l":"OnMechanicActionDoneEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnMiniScoreboardUpdateEvent","l":"OnMiniScoreboardUpdateEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnMngInvReceiveItemsEvent","l":"OnMngInvReceiveItemsEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnModsModifiedEvent","l":"OnModsModifiedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnMouseDownEvent","l":"OnMouseDownEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"onMouseEnter(int, int)","u":"onMouseEnter(int,int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"onMouseExit(int, int)","u":"onMouseExit(int,int)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"onMouseMove(int, int)","u":"onMouseMove(int,int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"onMouseMove(int, int)","u":"onMouseMove(int,int)"},{"p":"com.avrix.events","c":"OnMouseMoveEvent","l":"OnMouseMoveEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"onMouseMoveOutside(int, int)","u":"onMouseMoveOutside(int,int)"},{"p":"com.avrix.events","c":"OnMouseUpEvent","l":"OnMouseUpEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"onMouseWheel(int, int, int)","u":"onMouseWheel(int,int,int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"onMouseWheelOutside(int, int, int)","u":"onMouseWheelOutside(int,int,int)"},{"p":"com.avrix.events","c":"OnMultiTriggerNPCEventEvent","l":"OnMultiTriggerNPCEventEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnNewFireEvent","l":"OnNewFireEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnNewGameEvent","l":"OnNewGameEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnObjectAboutToBeRemovedEvent","l":"OnObjectAboutToBeRemovedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnObjectAddedEvent","l":"OnObjectAddedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnObjectCollideEvent","l":"OnObjectCollideEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnObjectLeftMouseButtonDownEvent","l":"OnObjectLeftMouseButtonDownEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnObjectLeftMouseButtonUpEvent","l":"OnObjectLeftMouseButtonUpEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnObjectRightMouseButtonDownEvent","l":"OnObjectRightMouseButtonDownEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnObjectRightMouseButtonUpEvent","l":"OnObjectRightMouseButtonUpEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPlayerAttackFinishedEvent","l":"OnPlayerAttackFinishedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPlayerBanEvent","l":"OnPlayerBanEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPlayerConnectEvent","l":"OnPlayerConnectEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPlayerDeathEvent","l":"OnPlayerDeathEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPlayerDisconnectEvent","l":"OnPlayerDisconnectEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPlayerFullyConnectedEvent","l":"OnPlayerFullyConnectedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPlayerKickEvent","l":"OnPlayerKickEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPlayerMoveEvent","l":"OnPlayerMoveEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPlayerUnbanEvent","l":"OnPlayerUnbanEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPlayerUpdateEvent","l":"OnPlayerUpdateEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPostDistributionMergeEvent","l":"OnPostDistributionMergeEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPostFloorLayerDrawEvent","l":"OnPostFloorLayerDrawEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPostMapLoadEvent","l":"OnPostMapLoadEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPostRenderEvent","l":"OnPostRenderEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPostSaveEvent","l":"OnPostSaveEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPostUIDrawEvent","l":"OnPostUIDrawEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPostWidgetDrawEvent","l":"OnPostWidgetDrawEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPreAddCatDefsEvent","l":"OnPreAddCatDefsEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPreAddForageDefsEvent","l":"OnPreAddForageDefsEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPreAddItemDefsEvent","l":"OnPreAddItemDefsEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPreAddZoneDefsEvent","l":"OnPreAddZoneDefsEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPreDistributionMergeEvent","l":"OnPreDistributionMergeEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPreFillInventoryObjectContextMenuEvent","l":"OnPreFillInventoryObjectContextMenuEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPreFillWorldObjectContextMenuEvent","l":"OnPreFillWorldObjectContextMenuEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPreMapLoadEvent","l":"OnPreMapLoadEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPressRackButtonEvent","l":"OnPressRackButtonEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPressReloadButtonEvent","l":"OnPressReloadButtonEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPreUIDrawEvent","l":"OnPreUIDrawEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPreWidgetDrawEvent","l":"OnPreWidgetDrawEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnRainStopEvent","l":"OnRainStopEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnReceiveFactionInviteEvent","l":"OnReceiveFactionInviteEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnReceiveGlobalModDataEvent","l":"OnReceiveGlobalModDataEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnReceiveItemListNetEvent","l":"OnReceiveItemListNetEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnReceiveSafehouseInviteEvent","l":"OnReceiveSafehouseInviteEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnReceiveUserlogEvent","l":"OnReceiveUserlogEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui","c":"WidgetManager","l":"onRender()"},{"p":"com.avrix.events","c":"OnRenderTickEvent","l":"OnRenderTickEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnRequestTradeEvent","l":"OnRequestTradeEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnResetLuaEvent","l":"OnResetLuaEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnResolutionChangeEvent","l":"OnResolutionChangeEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnReuseGridsquareEvent","l":"OnReuseGridsquareEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"onRightMouseDown(int, int)","u":"onRightMouseDown(int,int)"},{"p":"com.avrix.events","c":"OnRightMouseDownEvent","l":"OnRightMouseDownEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui.widgets","c":"PopupWidget","l":"onRightMouseDownOutside(int, int)","u":"onRightMouseDownOutside(int,int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"onRightMouseDownOutside(int, int)","u":"onRightMouseDownOutside(int,int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"onRightMouseUp(int, int)","u":"onRightMouseUp(int,int)"},{"p":"com.avrix.events","c":"OnRightMouseUpEvent","l":"OnRightMouseUpEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"onRightMouseUpOutside(int, int)","u":"onRightMouseUpOutside(int,int)"},{"p":"com.avrix.events","c":"OnSafehousesChangedEvent","l":"OnSafehousesChangedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnSaveEvent","l":"OnSaveEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnScoreboardUpdateEvent","l":"OnScoreboardUpdateEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnSeeNewRoomEvent","l":"OnSeeNewRoomEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnSendChatCommandEvent","l":"OnSendChatCommandEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnSendConsoleCommandEvent","l":"OnSendConsoleCommandEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnSendCustomModDataEvent","l":"OnSendCustomModDataEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnServerCommandEvent","l":"OnServerCommandEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnServerFinishSavingEvent","l":"OnServerFinishSavingEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnServerInitializeEvent","l":"OnServerInitializeEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnServerPingedEvent","l":"OnServerPingedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnServerShutdownEvent","l":"OnServerShutdownEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnServerStartedEvent","l":"OnServerStartedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnServerStartSavingEvent","l":"OnServerStartSavingEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnServerStatisticReceivedEvent","l":"OnServerStatisticReceivedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnSetDefaultTabEvent","l":"OnSetDefaultTabEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnSGlobalObjectSystemInitEvent","l":"OnSGlobalObjectSystemInitEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"onSlideAction"},{"p":"com.avrix.events","c":"OnSpawnRegionsLoadedEvent","l":"OnSpawnRegionsLoadedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnSteamFriendStatusChangedEvent","l":"OnSteamFriendStatusChangedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnSteamGameJoinEvent","l":"OnSteamGameJoinEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnSteamRefreshInternetServersEvent","l":"OnSteamRefreshInternetServersEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnSteamRulesRefreshCompleteEvent","l":"OnSteamRulesRefreshCompleteEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnSteamServerFailedToRespond2Event","l":"OnSteamServerFailedToRespond2Event()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnSteamServerResponded2Event","l":"OnSteamServerResponded2Event()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnSteamServerRespondedEvent","l":"OnSteamServerRespondedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnSteamWorkshopItemCreatedEvent","l":"OnSteamWorkshopItemCreatedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnSteamWorkshopItemNotCreatedEvent","l":"OnSteamWorkshopItemNotCreatedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnSteamWorkshopItemNotUpdatedEvent","l":"OnSteamWorkshopItemNotUpdatedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnSteamWorkshopItemUpdatedEvent","l":"OnSteamWorkshopItemUpdatedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnSwitchChatStreamEvent","l":"OnSwitchChatStreamEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnSwitchVehicleSeatEvent","l":"OnSwitchVehicleSeatEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnSyncFactionEvent","l":"OnSyncFactionEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnTabAddedEvent","l":"OnTabAddedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnTabRemovedEvent","l":"OnTabRemovedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"onTextChangeAction"},{"p":"com.avrix.events","c":"OnThunderEventEvent","l":"OnThunderEventEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnTickEvenPausedEvent","l":"OnTickEvenPausedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnTickEvent","l":"OnTickEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnTickRenderThreadEvent","l":"OnTickRenderThreadEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnTileRemovedEvent","l":"OnTileRemovedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnToggleSearchModeEvent","l":"OnToggleSearchModeEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnTradingUIAddItemEvent","l":"OnTradingUIAddItemEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnTradingUIRemoveItemEvent","l":"OnTradingUIRemoveItemEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnTradingUIUpdateStateEvent","l":"OnTradingUIUpdateStateEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnTriggerNPCEventEvent","l":"OnTriggerNPCEventEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnUpdateIconEvent","l":"OnUpdateIconEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnUpdateModdedWeatherStageEvent","l":"OnUpdateModdedWeatherStageEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnUseVehicleEvent","l":"OnUseVehicleEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnVehicleDamageTextureEvent","l":"OnVehicleDamageTextureEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnVehicleHornEvent","l":"OnVehicleHornEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnViewTicketsEvent","l":"OnViewTicketsEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnWaterAmountChangeEvent","l":"OnWaterAmountChangeEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnWeaponHitCharacterEvent","l":"OnWeaponHitCharacterEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnWeaponHitTreeEvent","l":"OnWeaponHitTreeEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnWeaponHitXpEvent","l":"OnWeaponHitXpEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnWeaponSwingEvent","l":"OnWeaponSwingEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnWeaponSwingHitPointEvent","l":"OnWeaponSwingHitPointEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnWeatherPeriodCompleteEvent","l":"OnWeatherPeriodCompleteEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnWeatherPeriodStageEvent","l":"OnWeatherPeriodStageEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnWeatherPeriodStartEvent","l":"OnWeatherPeriodStartEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnWeatherPeriodStopEvent","l":"OnWeatherPeriodStopEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnWidgetManagerInitEvent","l":"OnWidgetManagerInitEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnWorldSoundEvent","l":"OnWorldSoundEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnZombieDeadEvent","l":"OnZombieDeadEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnZombieUpdateEvent","l":"OnZombieUpdateEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui","c":"NVGColor","l":"ORANGE"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"originalHeight"},{"p":"com.avrix.ui.widgets","c":"ScrollPanelWidget","l":"originalMaxScrollX"},{"p":"com.avrix.ui.widgets","c":"ScrollPanelWidget","l":"originalMaxScrollY"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"originalWidth"},{"p":"com.avrix.enums","c":"AccessLevel","l":"OVERSEER"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"PanelWidget(int, int, int, int)","u":"%3Cinit%3E(int,int,int,int)"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"PanelWidget(int, int, int, int, int, NVGColor)","u":"%3Cinit%3E(int,int,int,int,int,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"parent"},{"p":"com.avrix.patches","c":"PatchBanSteamIDCommand","l":"PatchBanSteamIDCommand()","u":"%3Cinit%3E()"},{"p":"com.avrix.patches","c":"PatchBanUserCommand","l":"PatchBanUserCommand()","u":"%3Cinit%3E()"},{"p":"com.avrix.patches","c":"PatchChatServer","l":"PatchChatServer()","u":"%3Cinit%3E()"},{"p":"com.avrix.patches","c":"PatchGameServer","l":"PatchGameServer()","u":"%3Cinit%3E()"},{"p":"com.avrix.patches","c":"PatchGameWindow","l":"PatchGameWindow()","u":"%3Cinit%3E()"},{"p":"com.avrix.patches","c":"PatchKickUserCommand","l":"PatchKickUserCommand()","u":"%3Cinit%3E()"},{"p":"com.avrix.plugin","c":"Metadata.MetadataBuilder","l":"patchList(List)","u":"patchList(java.util.List)"},{"p":"com.avrix.patches","c":"PatchLuaEventManager","l":"PatchLuaEventManager()","u":"%3Cinit%3E()"},{"p":"com.avrix.patches","c":"PatchLuaManager","l":"PatchLuaManager()","u":"%3Cinit%3E()"},{"p":"com.avrix.patches","c":"PatchLuaManagerExposer","l":"PatchLuaManagerExposer()","u":"%3Cinit%3E()"},{"p":"com.avrix.patches","c":"PatchQuitCommand","l":"PatchQuitCommand()","u":"%3Cinit%3E()"},{"p":"com.avrix.patches","c":"PatchRenderThread","l":"PatchRenderThread()","u":"%3Cinit%3E()"},{"p":"com.avrix.patches","c":"PatchSpriteRenderer","l":"PatchSpriteRenderer()","u":"%3Cinit%3E()"},{"p":"com.avrix.patches","c":"PatchTranslator","l":"PatchTranslator()","u":"%3Cinit%3E()"},{"p":"com.avrix.patches","c":"PatchUIManager","l":"PatchUIManager()","u":"%3Cinit%3E()"},{"p":"com.avrix.patches","c":"PatchUnbanSteamIDCommand","l":"PatchUnbanSteamIDCommand()","u":"%3Cinit%3E()"},{"p":"com.avrix.patches","c":"PatchUnbanUserCommand","l":"PatchUnbanUserCommand()","u":"%3Cinit%3E()"},{"p":"com.avrix.utils","c":"PatchUtils","l":"PatchUtils()","u":"%3Cinit%3E()"},{"p":"com.avrix.patches","c":"PatchZLogger","l":"PatchZLogger()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui","c":"NVGColor","l":"PINK"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"placeholder"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"placeholderColor"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"PlayerUtils()","u":"%3Cinit%3E()"},{"p":"com.avrix.plugin","c":"Plugin","l":"Plugin(Metadata)","u":"%3Cinit%3E(com.avrix.plugin.Metadata)"},{"p":"com.avrix.plugin","c":"PluginClassLoader","l":"PluginClassLoader(String, URL[], ClassLoader)","u":"%3Cinit%3E(java.lang.String,java.net.URL[],java.lang.ClassLoader)"},{"p":"com.avrix.plugin","c":"Metadata.MetadataBuilder","l":"pluginFile(File)","u":"pluginFile(java.io.File)"},{"p":"com.avrix.plugin","c":"PluginManager","l":"PluginManager()","u":"%3Cinit%3E()"},{"p":"com.avrix.utils","c":"Constants","l":"PLUGINS_DEFAULT_CONFIG_NAME"},{"p":"com.avrix.utils","c":"Constants","l":"PLUGINS_FOLDER_NAME"},{"p":"com.avrix.utils","c":"Constants","l":"PLUGINS_METADATA_NAME"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"popupButtonHeight"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"popupHeight"},{"p":"com.avrix.ui.widgets","c":"PopupWidget","l":"PopupWidget(int, int, int, int)","u":"%3Cinit%3E(int,int,int,int)"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"postRender()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"postRender()"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"postRender()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"preRender()"},{"p":"com.avrix.enums","c":"KeyEventType","l":"PRESS"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"pressed"},{"p":"com.avrix.events","c":"EventManager.EventListener","l":"priority()"},{"p":"com.avrix.ui","c":"NVGColor","l":"RED"},{"p":"com.avrix.ui","c":"NVGColor","l":"red(float)"},{"p":"com.avrix.plugin","c":"ServiceManager","l":"register(Class, T)","u":"register(java.lang.Class,T)"},{"p":"com.avrix.enums","c":"KeyEventType","l":"RELEASE"},{"p":"com.avrix.utils","c":"YamlFile","l":"remove(String)","u":"remove(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"BoxLayoutWidget","l":"removeChild(Widget)","u":"removeChild(com.avrix.ui.widgets.Widget)"},{"p":"com.avrix.ui.widgets","c":"ScrollPanelWidget","l":"removeChild(Widget)","u":"removeChild(com.avrix.ui.widgets.Widget)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"removeChild(Widget)","u":"removeChild(com.avrix.ui.widgets.Widget)"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"removeChild(Widget)","u":"removeChild(com.avrix.ui.widgets.Widget)"},{"p":"com.avrix.lua","c":"LuaExposer","l":"removeExposedClass(Class)","u":"removeExposedClass(java.lang.Class)"},{"p":"com.avrix.lua","c":"LuaExposer","l":"removeExposedGlobalObject(Object)","u":"removeExposedGlobalObject(java.lang.Object)"},{"p":"com.avrix.resources","c":"ResourceManager","l":"removeFileExtension(String)","u":"removeFileExtension(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"removeFromScreen()"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"removeItem(IsoPlayer, int)","u":"removeItem(zombie.characters.IsoPlayer,int)"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"removeItem(IsoPlayer, InventoryItem)","u":"removeItem(zombie.characters.IsoPlayer,zombie.inventory.InventoryItem)"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"removeItem(IsoPlayer, String)","u":"removeItem(zombie.characters.IsoPlayer,java.lang.String)"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"removeItem(UdpConnection, int)","u":"removeItem(zombie.core.raknet.UdpConnection,int)"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"removeItem(UdpConnection, InventoryItem)","u":"removeItem(zombie.core.raknet.UdpConnection,zombie.inventory.InventoryItem)"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"removeItem(UdpConnection, String)","u":"removeItem(zombie.core.raknet.UdpConnection,java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"removeValue(int)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"removeValue(String)","u":"removeValue(java.lang.String)"},{"p":"com.avrix.ui","c":"WidgetManager","l":"removeWidget(Widget)","u":"removeWidget(com.avrix.ui.widgets.Widget)"},{"p":"com.avrix.ui.widgets","c":"BoxLayoutWidget","l":"render()"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"render()"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"render()"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget.ComboPopupButton","l":"render()"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"render()"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"render()"},{"p":"com.avrix.ui.widgets","c":"LabelWidget","l":"render()"},{"p":"com.avrix.ui.widgets","c":"ModalWidget","l":"render()"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"render()"},{"p":"com.avrix.ui.widgets","c":"PopupWidget","l":"render()"},{"p":"com.avrix.ui.widgets","c":"ScrollbarWidget","l":"render()"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"render()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"render()"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"render()"},{"p":"com.avrix.ui.widgets","c":"ScrollPanelWidget","l":"renderChildren()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"renderChildren()"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"renderChildren()"},{"p":"com.avrix.enums","c":"KeyEventType","l":"REPEAT"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"repeatDelay"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"resetRenderState()"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"resetScissor()"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"resizable"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"resizeIcon"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"resizeIconOffset"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"resizeIconSize"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"resizeOffsetX"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"resizeOffsetY"},{"p":"com.avrix.resources","c":"ResourceManager","l":"ResourceManager()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"restoreRenderState()"},{"p":"com.avrix.ui","c":"NVGColor","l":"rgbMatches(NVGColor)","u":"rgbMatches(com.avrix.ui.NVGColor)"},{"p":"com.avrix.lua","c":"LuaManager","l":"runLua(String, boolean)","u":"runLua(java.lang.String,boolean)"},{"p":"com.avrix.utils","c":"YamlFile","l":"save()"},{"p":"com.avrix.utils","c":"YamlFile","l":"save(String)","u":"save(java.lang.String)"},{"p":"com.avrix.agent","c":"ClassModifier.ClassModifierBuilder","l":"saveFile()"},{"p":"com.avrix.agent","c":"ClassModifier.ClassModifierBuilder","l":"saveFile(Path)","u":"saveFile(java.nio.file.Path)"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"saveRenderState()"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"scissor(int, int, int, int)","u":"scissor(int,int,int,int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"scrollable"},{"p":"com.avrix.ui.widgets","c":"ScrollbarWidget","l":"ScrollbarWidget()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui.widgets","c":"ScrollbarWidget","l":"ScrollbarWidget(boolean)","u":"%3Cinit%3E(boolean)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"scrollLock"},{"p":"com.avrix.ui.widgets","c":"ScrollPanelWidget","l":"ScrollPanelWidget(int, int, int, int)","u":"%3Cinit%3E(int,int,int,int)"},{"p":"com.avrix.ui.widgets","c":"ScrollPanelWidget","l":"ScrollPanelWidget(int, int, int, int, int, NVGColor)","u":"%3Cinit%3E(int,int,int,int,int,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"scrollSpeed"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"scrollX"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"scrollY"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"selecting"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"selectionColor"},{"p":"com.avrix.utils","c":"ChatUtils","l":"sendMessageToAdmins(String)","u":"sendMessageToAdmins(java.lang.String)"},{"p":"com.avrix.utils","c":"ChatUtils","l":"sendMessageToAll(String)","u":"sendMessageToAll(java.lang.String)"},{"p":"com.avrix.utils","c":"ChatUtils","l":"sendMessageToPlayer(UdpConnection, String)","u":"sendMessageToPlayer(zombie.core.raknet.UdpConnection,java.lang.String)"},{"p":"com.avrix.enums","c":"Environment","l":"SERVER"},{"p":"com.avrix.plugin","c":"ServiceManager","l":"ServiceManager()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui","c":"NVGColor","l":"set(float, float, float, float)","u":"set(float,float,float,float)"},{"p":"com.avrix.ui","c":"NVGColor","l":"set(NVGColor)","u":"set(com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"setAccentColor(NVGColor)","u":"setAccentColor(com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"setAccentColor(NVGColor)","u":"setAccentColor(com.avrix.ui.NVGColor)"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"setAccessLevel(IsoPlayer, AccessLevel)","u":"setAccessLevel(zombie.characters.IsoPlayer,com.avrix.enums.AccessLevel)"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"setAccessLevel(String, AccessLevel)","u":"setAccessLevel(java.lang.String,com.avrix.enums.AccessLevel)"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"setAccessLevel(UdpConnection, AccessLevel)","u":"setAccessLevel(zombie.core.raknet.UdpConnection,com.avrix.enums.AccessLevel)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"setActive(boolean)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"setAlwaysOnTop(boolean)"},{"p":"com.avrix.ui.widgets","c":"BoxLayoutWidget","l":"setAutoresize(boolean)"},{"p":"com.avrix.ui.widgets","c":"ModalWidget","l":"setBackgroundColor(NVGColor)","u":"setBackgroundColor(com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"setBackgroundColor(NVGColor)","u":"setBackgroundColor(com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"setBarColor(NVGColor)","u":"setBarColor(com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"setBarFillOffset(int)"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"setBarHeight(int)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setBoolean(String, boolean)","u":"setBoolean(java.lang.String,boolean)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setBooleanList(String, List)","u":"setBooleanList(java.lang.String,java.util.List)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setBooleanMap(String, Map)","u":"setBooleanMap(java.lang.String,java.util.Map)"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"setBorderColor(NVGColor)","u":"setBorderColor(com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"setBorderOffset(int)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"setBorderOffset(int)"},{"p":"com.avrix.ui.widgets","c":"ScrollbarWidget","l":"setBorderOffset(int)"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"setBorderRadius(int)"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"setBorderRadius(int)"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"setBorderWidth(int)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setByte(String, byte)","u":"setByte(java.lang.String,byte)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setByteList(String, List)","u":"setByteList(java.lang.String,java.util.List)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setChar(String, char)","u":"setChar(java.lang.String,char)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setCharacterList(String, List)","u":"setCharacterList(java.lang.String,java.util.List)"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"setCheckBoxSize(int)"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"setCheckColor(NVGColor)","u":"setCheckColor(com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"setChecked(boolean)"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"setCheckIcon(String)","u":"setCheckIcon(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"ScrollbarWidget","l":"setCompressedWidth(int)"},{"p":"com.avrix.ui.widgets","c":"ModalWidget","l":"setContentPanel(Widget)","u":"setContentPanel(com.avrix.ui.widgets.Widget)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"setCursorVisible(boolean)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setDouble(String, double)","u":"setDouble(java.lang.String,double)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setDoubleList(String, List)","u":"setDoubleList(java.lang.String,java.util.List)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setDoubleMap(String, Map)","u":"setDoubleMap(java.lang.String,java.util.Map)"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"setDraggable(boolean)"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"setDrawBorder(boolean)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"setDropButtonWidth(int)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"setDropIcon(String)","u":"setDropIcon(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"setEditable(boolean)"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"setEnable(boolean)"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"setEnable(boolean)"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"setEnable(boolean)"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"setFont(String)","u":"setFont(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"setFontName(String)","u":"setFontName(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"setFontName(String)","u":"setFontName(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"setFontName(String)","u":"setFontName(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"LabelWidget","l":"setFontName(String)","u":"setFontName(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"setFontName(String)","u":"setFontName(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"setFontSize(int)"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"setFontSize(int)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"setFontSize(int)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"setFontSize(int)"},{"p":"com.avrix.ui.widgets","c":"LabelWidget","l":"setFontSize(int)"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"setFontSize(int)"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"setHeaderColor(NVGColor)","u":"setHeaderColor(com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"setHeaderHeight(int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"setHeight(int)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"setIconColor(NVGColor)","u":"setIconColor(com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"setIconFontName(String)","u":"setIconFontName(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"setIconFontName(String)","u":"setIconFontName(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"setIconSize(int)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setInt(String, int)","u":"setInt(java.lang.String,int)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setIntegerList(String, List)","u":"setIntegerList(java.lang.String,java.util.List)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setIntMap(String, Map)","u":"setIntMap(java.lang.String,java.util.Map)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setList(String, List)","u":"setList(java.lang.String,java.util.List)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setLong(String, long)","u":"setLong(java.lang.String,long)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setLongList(String, List)","u":"setLongList(java.lang.String,java.util.List)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setMap(String, Map)","u":"setMap(java.lang.String,java.util.Map)"},{"p":"com.avrix.ui.widgets","c":"BoxLayoutWidget","l":"setMargin(int)"},{"p":"com.avrix.ui.widgets","c":"ScrollPanelWidget","l":"setMaxScrollX(int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"setMaxScrollX(int)"},{"p":"com.avrix.ui.widgets","c":"ScrollPanelWidget","l":"setMaxScrollY(int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"setMaxScrollY(int)"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"setMaxValue(int)"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"setMinSizeX(int)"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"setMinSizeY(int)"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"setMinValue(int)"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"setOnCheckAction(Consumer)","u":"setOnCheckAction(java.util.function.Consumer)"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"setOnClickMethod(Runnable)","u":"setOnClickMethod(java.lang.Runnable)"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"setOnSlideAction(Consumer)","u":"setOnSlideAction(java.util.function.Consumer)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"setOnTextChangeAction(Consumer)","u":"setOnTextChangeAction(java.util.function.Consumer)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"setPlaceholder(String)","u":"setPlaceholder(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"setPlaceholderColor(NVGColor)","u":"setPlaceholderColor(com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"setPopupButtonHeight(int)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"setPopupHeight(int)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"setRepeatDelay(int)"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"setResizable(boolean)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"setScrollable(boolean)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"setScrollLock(boolean)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"setScrollSpeed(int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"setScrollX(int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"setScrollY(int)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget.ComboPopupButton","l":"setSelected(boolean)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"setSelectionColor(NVGColor)","u":"setSelectionColor(com.avrix.ui.NVGColor)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setShort(String, short)","u":"setShort(java.lang.String,short)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setShortList(String, List)","u":"setShortList(java.lang.String,java.util.List)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setString(String, String)","u":"setString(java.lang.String,java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setStringList(String, List)","u":"setStringList(java.lang.String,java.util.List)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setStringMap(String, Map)","u":"setStringMap(java.lang.String,java.util.Map)"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"setText(String)","u":"setText(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"LabelWidget","l":"setText(String)","u":"setText(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"setTextColor(NVGColor)","u":"setTextColor(com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"setTextColor(NVGColor)","u":"setTextColor(com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"setTextColor(NVGColor)","u":"setTextColor(com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"LabelWidget","l":"setTextColor(NVGColor)","u":"setTextColor(com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"setTextFont(String)","u":"setTextFont(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"setTextOffset(int)"},{"p":"com.avrix.ui.widgets","c":"ScrollbarWidget","l":"setThumbColor(NVGColor)","u":"setThumbColor(com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"setThumbWidth(int)"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"setTitle(String)","u":"setTitle(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"setTitleColor(NVGColor)","u":"setTitleColor(com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"setTitleOffset(int)"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"setTitleText(String)","u":"setTitleText(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"BoxLayoutWidget","l":"setUpdatingLayout(boolean)"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"setValue(int)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"setValue(String)","u":"setValue(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setValue(String, Object)","u":"setValue(java.lang.String,java.lang.Object)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"setValueIndex(int)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"setValueList(List)","u":"setValueList(java.util.List)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"setVisible(boolean)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"setWidth(int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"setX(int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"setXA(int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"setY(int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"setYA(int)"},{"p":"com.avrix.ui.widgets","c":"ModalWidget","l":"show()"},{"p":"com.avrix.ui.widgets","c":"PopupWidget","l":"show()"},{"p":"com.avrix.ui","c":"NVGColor","l":"SILVER"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"SliderWidget(int, int, int, Consumer)","u":"%3Cinit%3E(int,int,int,java.util.function.Consumer)"},{"p":"com.avrix.plugin","c":"Metadata","l":"sortMetadata(List)","u":"sortMetadata(java.util.List)"},{"p":"com.avrix.utils","c":"ChatUtils","l":"SPACE_SYMBOL"},{"p":"com.avrix.ui","c":"NVGColor","l":"tallocNVG(NVGColor.ColorAction)","u":"tallocNVG(com.avrix.ui.NVGColor.ColorAction)"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"text"},{"p":"com.avrix.ui.widgets","c":"LabelWidget","l":"text"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"textColor"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"textColor"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"textColor"},{"p":"com.avrix.ui.widgets","c":"LabelWidget","l":"textColor"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"textFont"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"textOffset"},{"p":"com.avrix.utils","c":"TextUtils","l":"TextUtils()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui.widgets","c":"ScrollbarWidget","l":"thumbColor"},{"p":"com.avrix.ui.widgets","c":"ScrollbarWidget","l":"thumbOffset"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"thumbWidth"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"title"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"titleColor"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"titleFontSize"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"titleOffset"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"titleText"},{"p":"com.avrix.ui","c":"NVGColor","l":"toHEX()"},{"p":"com.avrix.events","c":"EventManager.EventListener","l":"toString()"},{"p":"com.avrix.agent","c":"AgentTransformer","l":"transform(ClassLoader, String, Class, ProtectionDomain, byte[])","u":"transform(java.lang.ClassLoader,java.lang.String,java.lang.Class,java.security.ProtectionDomain,byte[])"},{"p":"com.avrix.agent","c":"AgentManager","l":"transformClass(String, byte[])","u":"transformClass(java.lang.String,byte[])"},{"p":"com.avrix.ui","c":"NVGColor","l":"TRANSPARENT"},{"p":"com.avrix.plugin","c":"ServiceManager","l":"unregister(Class)","u":"unregister(java.lang.Class)"},{"p":"com.avrix.ui.widgets","c":"LabelWidget","l":"update()"},{"p":"com.avrix.ui.widgets","c":"ModalWidget","l":"update()"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"update()"},{"p":"com.avrix.ui.widgets","c":"ScrollbarWidget","l":"update()"},{"p":"com.avrix.ui.widgets","c":"ScrollPanelWidget","l":"update()"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"update()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"update()"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"update()"},{"p":"com.avrix.ui.widgets","c":"BoxLayoutWidget","l":"updateLayout()"},{"p":"com.avrix.ui.widgets","c":"HorizontalBoxWidget","l":"updateLayout()"},{"p":"com.avrix.ui.widgets","c":"VerticalBoxWidget","l":"updateLayout()"},{"p":"com.avrix.ui.widgets","c":"ScrollPanelWidget","l":"updateMaxScrollOffset()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"updateMaxScrollOffset()"},{"p":"com.avrix.ui","c":"InputWidgetHandler","l":"updateMouseEvent()"},{"p":"com.avrix.ui.widgets","c":"ScrollbarWidget","l":"updatePosition()"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"value"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"value"},{"p":"com.avrix.commands","c":"CommandAccessLevel","l":"value()"},{"p":"com.avrix.commands","c":"CommandDescription","l":"value()"},{"p":"com.avrix.commands","c":"CommandExecutionScope","l":"value()"},{"p":"com.avrix.commands","c":"CommandName","l":"value()"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"valueIndex"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"valueList"},{"p":"com.avrix.enums","c":"AccessLevel","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"com.avrix.enums","c":"CommandScope","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"com.avrix.enums","c":"Environment","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"com.avrix.enums","c":"KeyEventType","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"com.avrix.enums","c":"Priority","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"com.avrix.enums","c":"AccessLevel","l":"values()"},{"p":"com.avrix.enums","c":"CommandScope","l":"values()"},{"p":"com.avrix.enums","c":"Environment","l":"values()"},{"p":"com.avrix.enums","c":"KeyEventType","l":"values()"},{"p":"com.avrix.enums","c":"Priority","l":"values()"},{"p":"com.avrix.plugin","c":"Metadata.MetadataBuilder","l":"version(String)","u":"version(java.lang.String)"},{"p":"com.avrix.utils","c":"VersionChecker","l":"VersionChecker()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui.widgets","c":"VerticalBoxWidget","l":"VerticalBoxWidget(int, int, int, int, boolean)","u":"%3Cinit%3E(int,int,int,int,boolean)"},{"p":"com.avrix.ui.widgets","c":"ScrollPanelWidget","l":"verticalScrollbar"},{"p":"com.avrix.ui","c":"NVGColor","l":"VIOLET"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"visible"},{"p":"com.avrix.ui","c":"NVGColor","l":"WHITE"},{"p":"com.avrix.ui","c":"NVGColor","l":"WHITE_SMOKE"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"Widget(int, int, int, int)","u":"%3Cinit%3E(int,int,int,int)"},{"p":"com.avrix.ui","c":"WidgetManager","l":"WidgetManager()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"width"},{"p":"com.avrix.utils","c":"WindowUtils","l":"WindowUtils()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"WindowWidget(String, int, int, int, int)","u":"%3Cinit%3E(java.lang.String,int,int,int,int)"},{"p":"com.avrix.logs","c":"LineReadingOutputStream","l":"write(byte[], int, int)","u":"write(byte[],int,int)"},{"p":"com.avrix.logs","c":"LineReadingOutputStream","l":"write(int)"},{"p":"com.avrix.logs","c":"IsolatedConsoleWriter","l":"write(LogEntry)","u":"write(org.tinylog.core.LogEntry)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"x"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"y"},{"p":"com.avrix.utils","c":"YamlFile","l":"YamlFile(File)","u":"%3Cinit%3E(java.io.File)"},{"p":"com.avrix.utils","c":"YamlFile","l":"YamlFile(InputStream, Path, String)","u":"%3Cinit%3E(java.io.InputStream,java.nio.file.Path,java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"YamlFile(Path)","u":"%3Cinit%3E(java.nio.file.Path)"},{"p":"com.avrix.utils","c":"YamlFile","l":"YamlFile(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"YamlFile(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"YamlFile(URI)","u":"%3Cinit%3E(java.net.URI)"},{"p":"com.avrix.utils","c":"YamlFile","l":"YamlFile(URL)","u":"%3Cinit%3E(java.net.URL)"},{"p":"com.avrix.ui","c":"NVGColor","l":"YELLOW"}];updateSearchResults(); \ No newline at end of file +memberSearchIndex = [{"p":"com.avrix.ui.widgets","c":"Widget","l":"absoluteX"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"absoluteY"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"accentColor"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget","l":"accentColor"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"accentColor"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"active"},{"p":"com.avrix.ui.widgets","c":"BoxLayoutWidget","l":"addChild(Widget)","u":"addChild(com.avrix.ui.widgets.Widget)"},{"p":"com.avrix.ui.widgets","c":"PopupWidget","l":"addChild(Widget)","u":"addChild(com.avrix.ui.widgets.Widget)"},{"p":"com.avrix.ui.widgets","c":"ScrollPanelWidget","l":"addChild(Widget)","u":"addChild(com.avrix.ui.widgets.Widget)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"addChild(Widget)","u":"addChild(com.avrix.ui.widgets.Widget)"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"addChild(Widget)","u":"addChild(com.avrix.ui.widgets.Widget)"},{"p":"com.avrix.agent","c":"Agent","l":"addClassPath(File)","u":"addClassPath(java.io.File)"},{"p":"com.avrix.commands","c":"CommandsManager","l":"addCommand(Command)","u":"addCommand(com.avrix.commands.Command)"},{"p":"com.avrix.lua","c":"LuaExposer","l":"addExposedClass(Class)","u":"addExposedClass(java.lang.Class)"},{"p":"com.avrix.lua","c":"LuaExposer","l":"addExposedGlobalObject(Object)","u":"addExposedGlobalObject(java.lang.Object)"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"addItem(IsoPlayer, InventoryItem, int)","u":"addItem(zombie.characters.IsoPlayer,zombie.inventory.InventoryItem,int)"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"addItem(IsoPlayer, String, int)","u":"addItem(zombie.characters.IsoPlayer,java.lang.String,int)"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"addItem(UdpConnection, InventoryItem, int)","u":"addItem(zombie.core.raknet.UdpConnection,zombie.inventory.InventoryItem,int)"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"addItem(UdpConnection, String, int)","u":"addItem(zombie.core.raknet.UdpConnection,java.lang.String,int)"},{"p":"com.avrix.events","c":"EventManager","l":"addListener(Event)","u":"addListener(com.avrix.events.Event)"},{"p":"com.avrix.events","c":"EventManager","l":"addListener(Event, Priority)","u":"addListener(com.avrix.events.Event,com.avrix.enums.Priority)"},{"p":"com.avrix.lua","c":"LuaManager","l":"addLuaActiveFolder(File)","u":"addLuaActiveFolder(java.io.File)"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget","l":"addRadio(String)","u":"addRadio(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"addToScreen()"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"addValue(String)","u":"addValue(java.lang.String)"},{"p":"com.avrix.ui","c":"WidgetManager","l":"addWidget(Widget)","u":"addWidget(com.avrix.ui.widgets.Widget)"},{"p":"com.avrix.enums","c":"AccessLevel","l":"ADMIN"},{"p":"com.avrix.agent","c":"Agent","l":"Agent()","u":"%3Cinit%3E()"},{"p":"com.avrix.agent","c":"AgentLoader","l":"AgentLoader()","u":"%3Cinit%3E()"},{"p":"com.avrix.agent","c":"Agent","l":"agentmain(String, Instrumentation)","u":"agentmain(java.lang.String,java.lang.instrument.Instrumentation)"},{"p":"com.avrix.agent","c":"AgentManager","l":"AgentManager()","u":"%3Cinit%3E()"},{"p":"com.avrix.agent","c":"AgentTransformer","l":"AgentTransformer()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui","c":"NVGColor","l":"alpha(float)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"alwaysOnTop"},{"p":"com.avrix.utils","c":"PatchUtils","l":"applyDefaultPatches()"},{"p":"com.avrix.agent","c":"ClassModifier","l":"applyModifications()"},{"p":"com.avrix.agent","c":"ClassTransformer","l":"applyModifications()"},{"p":"com.avrix.utils","c":"PatchUtils","l":"applyPluginPatches(Metadata, ClassLoader)","u":"applyPluginPatches(com.avrix.plugin.Metadata,java.lang.ClassLoader)"},{"p":"com.avrix.ui","c":"NVGColor","l":"AQUA"},{"p":"com.avrix.plugin","c":"Metadata.MetadataBuilder","l":"author(String)","u":"author(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"BoxLayoutWidget","l":"autoresize"},{"p":"com.avrix.utils","c":"Constants","l":"AVRIX_NAME"},{"p":"com.avrix.utils","c":"Constants","l":"AVRIX_VERSION"},{"p":"com.avrix.ui","c":"NVGColor","l":"BABY_BLUE"},{"p":"com.avrix.ui.widgets","c":"ModalWidget","l":"backgroundColor"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"backgroundColor"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"banPlayer(IsoPlayer, String, boolean, boolean)","u":"banPlayer(zombie.characters.IsoPlayer,java.lang.String,boolean,boolean)"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"banPlayer(UdpConnection, String, boolean, boolean)","u":"banPlayer(zombie.core.raknet.UdpConnection,java.lang.String,boolean,boolean)"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"barColor"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"barFillOffset"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"barHeight"},{"p":"com.avrix.ui","c":"NVGContext","l":"beginFrame(int, int)","u":"beginFrame(int,int)"},{"p":"com.avrix.ui","c":"NVGContext","l":"beginFrame(int, int, float)","u":"beginFrame(int,int,float)"},{"p":"com.avrix.ui","c":"NVGColor","l":"BLACK"},{"p":"com.avrix.ui","c":"NVGColor","l":"BLUE"},{"p":"com.avrix.ui","c":"NVGColor","l":"blue(float)"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"borderColor"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"borderOffset"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"borderOffset"},{"p":"com.avrix.ui.widgets","c":"ScrollbarWidget","l":"borderOffset"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"borderRadius"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"borderRadius"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"borderWidth"},{"p":"com.avrix.enums","c":"CommandScope","l":"BOTH"},{"p":"com.avrix.enums","c":"Environment","l":"BOTH"},{"p":"com.avrix.ui.widgets","c":"BoxLayoutWidget","l":"BoxLayoutWidget(int, int, int, int, boolean)","u":"%3Cinit%3E(int,int,int,int,boolean)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"bringToTop()"},{"p":"com.avrix.ui","c":"WidgetManager","l":"bringWidgetToTop(Widget)","u":"bringWidgetToTop(com.avrix.ui.widgets.Widget)"},{"p":"com.avrix.agent","c":"ClassModifier.ClassModifierBuilder","l":"build()"},{"p":"com.avrix.plugin","c":"Metadata.MetadataBuilder","l":"build()"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"ButtonWidget(String, int, int, int, int, int, NVGColor, Runnable)","u":"%3Cinit%3E(java.lang.String,int,int,int,int,int,com.avrix.ui.NVGColor,java.lang.Runnable)"},{"p":"com.avrix.utils","c":"Constants","l":"CACHE_DIR_NAME"},{"p":"com.avrix.resources","c":"ResourceManager","l":"cachePath"},{"p":"com.avrix.ui","c":"NVGColor","l":"callocNVG()"},{"p":"com.avrix.enums","c":"CommandScope","l":"CHAT"},{"p":"com.avrix.utils","c":"ChatUtils","l":"ChatUtils()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"checkBoxSize"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"CheckboxWidget(String, int, int, int, int, Consumer)","u":"%3Cinit%3E(java.lang.String,int,int,int,int,java.util.function.Consumer)"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"checkColor"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"checked"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"checkIcon"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"children"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget","l":"circleColor"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget","l":"circleRadius"},{"p":"com.avrix.agent","c":"ClassModifier.ClassModifierBuilder","l":"ClassModifierBuilder(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.avrix.agent","c":"ClassTransformer","l":"ClassTransformer(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"clear()"},{"p":"com.avrix.events","c":"EventManager","l":"clearAllListeners()"},{"p":"com.avrix.resources","c":"ResourceManager","l":"clearCache()"},{"p":"com.avrix.events","c":"EventManager","l":"clearListenersForEvent(String)","u":"clearListenersForEvent(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"clickSound"},{"p":"com.avrix.enums","c":"Environment","l":"CLIENT"},{"p":"com.avrix.logs","c":"IsolatedConsoleWriter","l":"close()"},{"p":"com.avrix.logs","c":"LineReadingOutputStream","l":"close()"},{"p":"com.avrix.ui.widgets","c":"ModalWidget","l":"close()"},{"p":"com.avrix.ui.widgets","c":"PopupWidget","l":"close()"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"closeWindow()"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"ComboBoxWidget(int, int, int, int)","u":"%3Cinit%3E(int,int,int,int)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget.ComboPopupButton","l":"ComboPopupButton(String, int, int, int, int, int, NVGColor, Runnable)","u":"%3Cinit%3E(java.lang.String,int,int,int,int,int,com.avrix.ui.NVGColor,java.lang.Runnable)"},{"p":"com.avrix.commands","c":"Command","l":"Command()","u":"%3Cinit%3E()"},{"p":"com.avrix.commands","c":"CommandsManager","l":"CommandsManager()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui.widgets","c":"ScrollbarWidget","l":"compressedWidth"},{"p":"com.avrix.enums","c":"CommandScope","l":"CONSOLE"},{"p":"com.avrix.utils","c":"Constants","l":"Constants()","u":"%3Cinit%3E()"},{"p":"com.avrix.plugin","c":"Metadata.MetadataBuilder","l":"contacts(String)","u":"contacts(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"contains(String)","u":"contains(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"ModalWidget","l":"contentPanel"},{"p":"com.avrix.ui","c":"NVGColor","l":"copy()"},{"p":"com.avrix.plugin","c":"Plugin","l":"copyConfigFromJar(String, File)","u":"copyConfigFromJar(java.lang.String,java.io.File)"},{"p":"com.avrix.ui","c":"NVGColor","l":"CORAL"},{"p":"com.avrix.utils","c":"YamlFile","l":"create(File)","u":"create(java.io.File)"},{"p":"com.avrix.utils","c":"YamlFile","l":"create(Path)","u":"create(java.nio.file.Path)"},{"p":"com.avrix.utils","c":"YamlFile","l":"create(String)","u":"create(java.lang.String)"},{"p":"com.avrix.ui","c":"NVGFont","l":"createFont(String, Path)","u":"createFont(java.lang.String,java.nio.file.Path)"},{"p":"com.avrix.ui","c":"NVGFont","l":"createFont(String, String, String)","u":"createFont(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.avrix.plugin","c":"Metadata","l":"createFromJar(File, String)","u":"createFromJar(java.io.File,java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"cursorVisible"},{"p":"com.avrix.ui","c":"NVGColor","l":"CYAN"},{"p":"com.avrix.ui","c":"NVGColor","l":"DARK_GRAY"},{"p":"com.avrix.ui","c":"NVGColor","l":"DARK_VIOLET"},{"p":"com.avrix.resources","c":"ResourceManager","l":"deleteFolderContents(File)","u":"deleteFolderContents(java.io.File)"},{"p":"com.avrix.plugin","c":"Metadata.MetadataBuilder","l":"dependencies(Map)","u":"dependencies(java.util.Map)"},{"p":"com.avrix.plugin","c":"Metadata.MetadataBuilder","l":"description(String)","u":"description(java.lang.String)"},{"p":"com.avrix.ui","c":"NVGContext","l":"dispose()"},{"p":"com.avrix.ui","c":"NVGColor","l":"divide(float)"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"draggable"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"dragging"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"dragging"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"dragOffsetX"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"dragOffsetY"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"drawArc(int, int, float, float, float, float, NVGColor)","u":"drawArc(int,int,float,float,float,float,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"drawArc(int, int, float, float, float, float, NVGColor)","u":"drawArc(int,int,float,float,float,float,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"drawArc(int, int, float, float, float, NVGColor)","u":"drawArc(int,int,float,float,float,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"drawArc(int, int, float, float, float, NVGColor)","u":"drawArc(int,int,float,float,float,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"drawBorder"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"drawCircle(int, int, float, NVGColor)","u":"drawCircle(int,int,float,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"drawCircle(int, int, float, NVGColor)","u":"drawCircle(int,int,float,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"drawEllipse(int, int, int, int, NVGColor)","u":"drawEllipse(int,int,int,int,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"drawEllipse(int, int, int, int, NVGColor)","u":"drawEllipse(int,int,int,int,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"drawImage(int, int, int, int, int, float)","u":"drawImage(int,int,int,int,int,float)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"drawImage(int, int, int, int, int, float)","u":"drawImage(int,int,int,int,int,float)"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"drawImage(Path, int, int, int, int, float)","u":"drawImage(java.nio.file.Path,int,int,int,int,float)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"drawImage(Path, int, int, int, int, float)","u":"drawImage(java.nio.file.Path,int,int,int,int,float)"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"drawImage(String, int, int, int, int, float)","u":"drawImage(java.lang.String,int,int,int,int,float)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"drawImage(String, int, int, int, int, float)","u":"drawImage(java.lang.String,int,int,int,int,float)"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"drawImage(String, String, int, int, int, int, float)","u":"drawImage(java.lang.String,java.lang.String,int,int,int,int,float)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"drawImage(String, String, int, int, int, int, float)","u":"drawImage(java.lang.String,java.lang.String,int,int,int,int,float)"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"drawLine(int, int, int, int, float, NVGColor)","u":"drawLine(int,int,int,int,float,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"drawLine(int, int, int, int, float, NVGColor)","u":"drawLine(int,int,int,int,float,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"drawRect(int, int, int, int, NVGColor)","u":"drawRect(int,int,int,int,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"drawRect(int, int, int, int, NVGColor)","u":"drawRect(int,int,int,int,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"drawRectOutline(int, int, int, int, float, NVGColor)","u":"drawRectOutline(int,int,int,int,float,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"drawRectOutline(int, int, int, int, float, NVGColor)","u":"drawRectOutline(int,int,int,int,float,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"drawRoundedRect(int, int, int, int, float, NVGColor)","u":"drawRoundedRect(int,int,int,int,float,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"drawRoundedRect(int, int, int, int, float, NVGColor)","u":"drawRoundedRect(int,int,int,int,float,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"drawRoundedRectOutline(int, int, int, int, int, float, NVGColor)","u":"drawRoundedRectOutline(int,int,int,int,int,float,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"drawRoundedRectOutline(int, int, int, int, int, float, NVGColor)","u":"drawRoundedRectOutline(int,int,int,int,int,float,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"drawText(String, String, int, int, int, NVGColor)","u":"drawText(java.lang.String,java.lang.String,int,int,int,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"drawText(String, String, int, int, int, NVGColor)","u":"drawText(java.lang.String,java.lang.String,int,int,int,com.avrix.ui.NVGColor)"},{"p":"com.avrix.utils","c":"TextUtils","l":"drawText(String, UIFont, int, int, Color)","u":"drawText(java.lang.String,zombie.ui.UIFont,int,int,zombie.core.Color)"},{"p":"com.avrix.utils","c":"TextUtils","l":"drawText(String, UIFont, int, int, float, float, float, float)","u":"drawText(java.lang.String,zombie.ui.UIFont,int,int,float,float,float,float)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"dropButtonWidth"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"dropIcon"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"editable"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"enable"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"enable"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"enable"},{"p":"com.avrix.resources","c":"ResourceManager","l":"encodeFileName(String)","u":"encodeFileName(java.lang.String)"},{"p":"com.avrix.ui","c":"NVGContext","l":"endFrame()"},{"p":"com.avrix.plugin","c":"Metadata.MetadataBuilder","l":"entryPointsList(List)","u":"entryPointsList(java.util.List)"},{"p":"com.avrix.plugin","c":"Metadata.MetadataBuilder","l":"environment(String)","u":"environment(java.lang.String)"},{"p":"com.avrix.events","c":"EventManager.EventListener","l":"equals(Object)","u":"equals(java.lang.Object)"},{"p":"com.avrix.events","c":"Event","l":"Event()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"EventManager.EventListener","l":"EventListener(Event, Priority)","u":"%3Cinit%3E(com.avrix.events.Event,com.avrix.enums.Priority)"},{"p":"com.avrix.events","c":"EventManager","l":"EventManager()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui","c":"NVGColor.ColorAction","l":"execute(NVGColor)","u":"execute(org.lwjgl.nanovg.NVGColor)"},{"p":"com.avrix.plugin","c":"PluginClassLoader","l":"findClass(String)","u":"findClass(java.lang.String)"},{"p":"com.avrix.plugin","c":"PluginClassLoader","l":"findClass(String, boolean)","u":"findClass(java.lang.String,boolean)"},{"p":"com.avrix.plugin","c":"PluginClassLoader","l":"findLoaded(String)","u":"findLoaded(java.lang.String)"},{"p":"com.avrix.logs","c":"IsolatedConsoleWriter","l":"flush()"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"fontName"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"fontName"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"fontName"},{"p":"com.avrix.ui.widgets","c":"LabelWidget","l":"fontName"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget","l":"fontName"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"fontName"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"fontName"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"fontSize"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"fontSize"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"fontSize"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"fontSize"},{"p":"com.avrix.ui.widgets","c":"LabelWidget","l":"fontSize"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget","l":"fontSize"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"fontSize"},{"p":"com.avrix.enums","c":"AccessLevel","l":"fromString(String)","u":"fromString(java.lang.String)"},{"p":"com.avrix.enums","c":"Environment","l":"fromString(String)","u":"fromString(java.lang.String)"},{"p":"com.avrix.ui","c":"NVGContext","l":"get()"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"getAccentColor()"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget","l":"getAccentColor()"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"getAccentColor()"},{"p":"com.avrix.commands","c":"Command","l":"getAccessLevel()"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"getAccessLevel(IsoPlayer)","u":"getAccessLevel(zombie.characters.IsoPlayer)"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"getAccessLevel(UdpConnection)","u":"getAccessLevel(zombie.core.raknet.UdpConnection)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getAll()"},{"p":"com.avrix.events","c":"EventManager","l":"getAllListeners()"},{"p":"com.avrix.ui","c":"NVGColor","l":"getAlpha()"},{"p":"com.avrix.plugin","c":"Metadata","l":"getAuthor()"},{"p":"com.avrix.ui.widgets","c":"ModalWidget","l":"getBackgroundColor()"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"getBarColor()"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"getBarFillOffset()"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"getBarHeight()"},{"p":"com.avrix.ui","c":"NVGColor","l":"getBlue()"},{"p":"com.avrix.utils","c":"YamlFile","l":"getBoolean(String)","u":"getBoolean(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getBooleanList(String)","u":"getBooleanList(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getBooleanMap(String)","u":"getBooleanMap(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"getBorderOffset()"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"getBorderOffset()"},{"p":"com.avrix.ui.widgets","c":"ScrollbarWidget","l":"getBorderOffset()"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"getBorderRadius()"},{"p":"com.avrix.utils","c":"YamlFile","l":"getByte(String)","u":"getByte(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getByteList(String)","u":"getByteList(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getChar(String)","u":"getChar(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getCharacterList(String)","u":"getCharacterList(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"getCheckBoxSize()"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"getCheckColor()"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"getCheckIcon()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"getChildren()"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget","l":"getCircleColor()"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget","l":"getCircleRadius()"},{"p":"com.avrix.plugin","c":"PluginClassLoader","l":"getClassByName(String)","u":"getClassByName(java.lang.String)"},{"p":"com.avrix.plugin","c":"PluginClassLoader","l":"getClasses()"},{"p":"com.avrix.agent","c":"ClassTransformer","l":"getClassName()"},{"p":"com.avrix.utils","c":"ChatUtils","l":"getColorCode(Color)","u":"getColorCode(zombie.core.Color)"},{"p":"com.avrix.utils","c":"ChatUtils","l":"getColorCode(float, float, float)","u":"getColorCode(float,float,float)"},{"p":"com.avrix.utils","c":"ChatUtils","l":"getColorCode(int, int, int)","u":"getColorCode(int,int,int)"},{"p":"com.avrix.commands","c":"CommandsManager","l":"getCommandArgs(String)","u":"getCommandArgs(java.lang.String)"},{"p":"com.avrix.commands","c":"CommandsManager","l":"getCommandArgs(String, String)","u":"getCommandArgs(java.lang.String,java.lang.String)"},{"p":"com.avrix.commands","c":"Command","l":"getCommandName()"},{"p":"com.avrix.ui.widgets","c":"ScrollbarWidget","l":"getCompressedWidth()"},{"p":"com.avrix.plugin","c":"Metadata","l":"getConfigFolder()"},{"p":"com.avrix.plugin","c":"Plugin","l":"getConfigFolder()"},{"p":"com.avrix.plugin","c":"Metadata","l":"getContacts()"},{"p":"com.avrix.ui.widgets","c":"ModalWidget","l":"getContentPanel()"},{"p":"com.avrix.ui","c":"WidgetManager","l":"getContext()"},{"p":"com.avrix.plugin","c":"Plugin","l":"getDefaultConfig()"},{"p":"com.avrix.plugin","c":"Metadata","l":"getDependencies()"},{"p":"com.avrix.commands","c":"Command","l":"getDescription()"},{"p":"com.avrix.plugin","c":"Metadata","l":"getDescription()"},{"p":"com.avrix.utils","c":"IsoObjectUtils","l":"getDistance(IsoObject, IsoObject)","u":"getDistance(zombie.iso.IsoObject,zombie.iso.IsoObject)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getDouble(String)","u":"getDouble(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getDoubleList(String)","u":"getDoubleList(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getDoubleMap(String)","u":"getDoubleMap(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"getDropButtonWidth()"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"getDropIcon()"},{"p":"com.avrix.plugin","c":"Metadata","l":"getEntryPoints()"},{"p":"com.avrix.plugin","c":"Metadata","l":"getEnvironment()"},{"p":"com.avrix.events","c":"Event","l":"getEventName()"},{"p":"com.avrix.events","c":"OnAcceptedFactionInviteEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnAcceptedSafehouseInviteEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnAcceptedTradeEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnAcceptInviteEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnAddForageDefsEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnAddIncomingEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnAddMessageEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnAddXPEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnAdminMessageEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnAIStateChangeEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnAmbientSoundEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnCGlobalObjectSystemInitEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnChallengeQueryEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnChangeLanguageEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnChangeWeatherEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnCharacterCollideEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnCharacterDeathEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnChatMessageProcessedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnChatWindowInitEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnClientCommandEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnClimateManagerInitEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnClimateTickDebugEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnClimateTickEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnClothingUpdatedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnConnectedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnConnectFailedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnConnectionStateChangedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnContainerUpdateEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnCoopJoinFailedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnCoopServerMessageEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnCreateLivingCharacterEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnCreatePlayerEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnCreateSurvivorEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnCreateUIEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnCustomUIKeyEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnCustomUIKeyPressedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnCustomUIKeyReleasedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnDawnEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnDestroyIsoThumpableEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnDeviceTextEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnDisableSearchModeEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnDisconnectEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnDistributionMergeEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnDoSpecialTooltipEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnDoTileBuilding2Event","l":"getEventName()"},{"p":"com.avrix.events","c":"OnDoTileBuilding3Event","l":"getEventName()"},{"p":"com.avrix.events","c":"OnDuskEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnDynamicMovableRecipeEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnEnableSearchModeEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnEnterVehicleEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnEquipPrimaryEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnEquipSecondaryEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnEveryDaysEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnEveryHoursEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnEveryOneMinuteEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnEveryTenMinutesEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnExitVehicleEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnFETickEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnFillContainerEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnFillInventoryObjectContextMenuEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnFillSearchIconContextMenuEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnFillWorldObjectContextMenuEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnGameBootEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnGamepadConnectEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnGamepadDisconnectEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnGameStartEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnGameTimeLoadedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnGameWindowInitializedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnGetDBSchemaEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnGetTableResultEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnGridBurntEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnHitZombieEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnInitGlobalModDataEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnInitModdedWeatherStageEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnInitRecordedMediaEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnInitSeasonsEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnInitWorldEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnItemFallEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnJoypadActivateEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnJoypadActivateUIEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnJoypadBeforeDeactivateEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnJoypadBeforeReactivateEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnJoypadDeactivateEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnJoypadReactivateEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnJoypadRenderUIEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnKeyKeepPressedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnKeyPressedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnKeyStartPressedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnLevelPerkEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnLoadedTileDefinitionsEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnLoadEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnLoadGridsquareEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnLoadMapZonesEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnLoadModDataFromServerEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnLoadRadioScriptsEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnLoadSoundBanksEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnLuaFilesLoadedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnLuaScriptExecuteEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnMainMenuEnterEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnMechanicActionDoneEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnMiniScoreboardUpdateEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnMngInvReceiveItemsEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnModsModifiedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnMouseDownEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnMouseMoveEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnMouseUpEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnMultiTriggerNPCEventEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnNewFireEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnNewGameEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnObjectAboutToBeRemovedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnObjectAddedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnObjectCollideEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnObjectLeftMouseButtonDownEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnObjectLeftMouseButtonUpEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnObjectRightMouseButtonDownEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnObjectRightMouseButtonUpEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPlayerAttackFinishedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPlayerBanEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPlayerConnectEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPlayerDeathEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPlayerDisconnectEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPlayerFullyConnectedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPlayerKickEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPlayerMoveEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPlayerUnbanEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPlayerUpdateEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPostDistributionMergeEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPostFloorLayerDrawEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPostMapLoadEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPostRenderEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPostSaveEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPostUIDrawEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPostWidgetDrawEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPreAddCatDefsEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPreAddForageDefsEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPreAddItemDefsEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPreAddZoneDefsEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPreDistributionMergeEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPreFillInventoryObjectContextMenuEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPreFillWorldObjectContextMenuEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPreMapLoadEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPressRackButtonEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPressReloadButtonEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPreUIDrawEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnPreWidgetDrawEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnRainStopEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnReceiveFactionInviteEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnReceiveGlobalModDataEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnReceiveItemListNetEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnReceiveSafehouseInviteEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnReceiveUserlogEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnRenderTickEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnRequestTradeEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnResetLuaEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnResolutionChangeEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnReuseGridsquareEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnRightMouseDownEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnRightMouseUpEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSafehousesChangedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSaveEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnScoreboardUpdateEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSeeNewRoomEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSendChatCommandEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSendConsoleCommandEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSendCustomModDataEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnServerCommandEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnServerFinishSavingEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnServerInitializeEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnServerPingedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnServerShutdownEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnServerStartedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnServerStartSavingEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnServerStatisticReceivedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSetDefaultTabEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSGlobalObjectSystemInitEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSpawnRegionsLoadedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSteamFriendStatusChangedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSteamGameJoinEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSteamRefreshInternetServersEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSteamRulesRefreshCompleteEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSteamServerFailedToRespond2Event","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSteamServerResponded2Event","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSteamServerRespondedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSteamWorkshopItemCreatedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSteamWorkshopItemNotCreatedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSteamWorkshopItemNotUpdatedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSteamWorkshopItemUpdatedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSwitchChatStreamEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSwitchVehicleSeatEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnSyncFactionEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnTabAddedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnTabRemovedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnThunderEventEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnTickEvenPausedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnTickEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnTickRenderThreadEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnTileRemovedEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnToggleSearchModeEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnTradingUIAddItemEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnTradingUIRemoveItemEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnTradingUIUpdateStateEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnTriggerNPCEventEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnUpdateIconEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnUpdateModdedWeatherStageEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnUseVehicleEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnVehicleDamageTextureEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnVehicleHornEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnViewTicketsEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnWaterAmountChangeEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnWeaponHitCharacterEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnWeaponHitTreeEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnWeaponHitXpEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnWeaponSwingEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnWeaponSwingHitPointEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnWeatherPeriodCompleteEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnWeatherPeriodStageEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnWeatherPeriodStartEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnWeatherPeriodStopEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnWidgetManagerInitEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnWorldSoundEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnZombieDeadEvent","l":"getEventName()"},{"p":"com.avrix.events","c":"OnZombieUpdateEvent","l":"getEventName()"},{"p":"com.avrix.commands","c":"Command","l":"getExecutionScope()"},{"p":"com.avrix.lua","c":"LuaExposer","l":"getExposedClasses()"},{"p":"com.avrix.lua","c":"LuaExposer","l":"getExposedGlobalObjects()"},{"p":"com.avrix.resources","c":"ResourceManager","l":"getFileExtension(String)","u":"getFileExtension(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getFileName()"},{"p":"com.avrix.utils","c":"YamlFile","l":"getFilePath()"},{"p":"com.avrix.resources","c":"ResourceManager","l":"getFolderSize(File)","u":"getFolderSize(java.io.File)"},{"p":"com.avrix.utils","c":"TextUtils","l":"getFontHeight(UIFont)","u":"getFontHeight(zombie.ui.UIFont)"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"getFontName()"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"getFontName()"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"getFontName()"},{"p":"com.avrix.ui.widgets","c":"LabelWidget","l":"getFontName()"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget","l":"getFontName()"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"getFontName()"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"getFontName()"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"getFontSize()"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"getFontSize()"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"getFontSize()"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"getFontSize()"},{"p":"com.avrix.ui.widgets","c":"LabelWidget","l":"getFontSize()"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget","l":"getFontSize()"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"getFontSize()"},{"p":"com.avrix.ui","c":"NVGColor","l":"getGreen()"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"getHeaderHeight()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"getHeight()"},{"p":"com.avrix.ui.widgets","c":"ScrollPanelWidget","l":"getHorizontalScrollbar()"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"getIconColor()"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"getIconFontName()"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"getIconFontName()"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"getIconSize()"},{"p":"com.avrix.plugin","c":"Metadata","l":"getId()"},{"p":"com.avrix.utils","c":"YamlFile","l":"getInt(String)","u":"getInt(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getIntegerList(String)","u":"getIntegerList(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getIntMap(String)","u":"getIntMap(java.lang.String)"},{"p":"com.avrix.plugin","c":"Metadata","l":"getLicense()"},{"p":"com.avrix.utils","c":"YamlFile","l":"getList(String)","u":"getList(java.lang.String)"},{"p":"com.avrix.events","c":"EventManager","l":"getListenersForEvent(String)","u":"getListenersForEvent(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getLong(String)","u":"getLong(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getLongList(String)","u":"getLongList(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getMap(String)","u":"getMap(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getMapKeys(String)","u":"getMapKeys(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getMapValues(String)","u":"getMapValues(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"BoxLayoutWidget","l":"getMargin()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"getMaxScrollX()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"getMaxScrollY()"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"getMaxValue()"},{"p":"com.avrix.plugin","c":"Plugin","l":"getMetadata()"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"getMinSizeX()"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"getMinSizeY()"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"getMinValue()"},{"p":"com.avrix.agent","c":"ClassTransformer","l":"getModifierBuilder()"},{"p":"com.avrix.agent","c":"AgentManager","l":"getModifyClass(String)","u":"getModifyClass(java.lang.String)"},{"p":"com.avrix.plugin","c":"Metadata","l":"getName()"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget","l":"getOffset()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"getParent()"},{"p":"com.avrix.plugin","c":"Metadata","l":"getPatchList()"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"getPlaceholder()"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"getPlaceholderColor()"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"getPlayerByPartialUsername(String)","u":"getPlayerByPartialUsername(java.lang.String)"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"getPlayerByUdpConnection(UdpConnection)","u":"getPlayerByUdpConnection(zombie.core.raknet.UdpConnection)"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"getPlayerByUsername(String)","u":"getPlayerByUsername(java.lang.String)"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"getPlayerIP(IsoPlayer)","u":"getPlayerIP(zombie.characters.IsoPlayer)"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"getPlayerSteamID(IsoPlayer)","u":"getPlayerSteamID(zombie.characters.IsoPlayer)"},{"p":"com.avrix.plugin","c":"Metadata","l":"getPluginFile()"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"getPopupButtonHeight()"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"getPopupHeight()"},{"p":"com.avrix.enums","c":"AccessLevel","l":"getPriority()"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget","l":"getRadioHeight()"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget","l":"getRadioWidth()"},{"p":"com.avrix.ui","c":"NVGColor","l":"getRed()"},{"p":"com.avrix.commands","c":"CommandsManager","l":"getRegisteredCommands()"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"getRepeatDelay()"},{"p":"com.avrix.logs","c":"IsolatedConsoleWriter","l":"getRequiredLogEntryValues()"},{"p":"com.avrix.enums","c":"AccessLevel","l":"getRoleName()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"getScrollSpeed()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"getScrollX()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"getScrollY()"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"getSelectionColor()"},{"p":"com.avrix.plugin","c":"ServiceManager","l":"getService(Class)","u":"getService(java.lang.Class)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getShort(String)","u":"getShort(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getShortList(String)","u":"getShortList(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getString(String)","u":"getString(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getStringList(String)","u":"getStringList(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getStringMap(String)","u":"getStringMap(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"getText()"},{"p":"com.avrix.ui.widgets","c":"LabelWidget","l":"getText()"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"getTextColor()"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"getTextColor()"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"getTextColor()"},{"p":"com.avrix.ui.widgets","c":"LabelWidget","l":"getTextColor()"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget","l":"getTextColor()"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"getTextFont()"},{"p":"com.avrix.utils","c":"TextUtils","l":"getTextHeight(String, UIFont)","u":"getTextHeight(java.lang.String,zombie.ui.UIFont)"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"getTextOffset()"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"getTextSize(String, String, int)","u":"getTextSize(java.lang.String,java.lang.String,int)"},{"p":"com.avrix.utils","c":"TextUtils","l":"getTextWidth(String, UIFont)","u":"getTextWidth(java.lang.String,zombie.ui.UIFont)"},{"p":"com.avrix.ui.widgets","c":"ScrollbarWidget","l":"getThumbColor()"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"getThumbWidth()"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"getTitle()"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"getTitleColor()"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"getTitleOffset()"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"getTitleText()"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"getUdpConnectionByPlayer(IsoPlayer)","u":"getUdpConnectionByPlayer(zombie.characters.IsoPlayer)"},{"p":"com.avrix.enums","c":"Environment","l":"getValue()"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"getValue()"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"getValue()"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"getValue()"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"getValue(int)"},{"p":"com.avrix.utils","c":"YamlFile","l":"getValue(String)","u":"getValue(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"getValueIndex()"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget","l":"getValueIndex()"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"getValueList()"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget","l":"getValues()"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget","l":"getValueText()"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget","l":"getValueText(int)"},{"p":"com.avrix.plugin","c":"Metadata","l":"getVersion()"},{"p":"com.avrix.ui.widgets","c":"ScrollPanelWidget","l":"getVerticalScrollbar()"},{"p":"com.avrix.ui","c":"WidgetManager","l":"getWidgetList()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"getWidth()"},{"p":"com.avrix.utils","c":"WindowUtils","l":"getWindowHeight()"},{"p":"com.avrix.utils","c":"WindowUtils","l":"getWindowWidth()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"getX()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"getXA()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"getY()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"getYA()"},{"p":"com.avrix.enums","c":"AccessLevel","l":"GM"},{"p":"com.avrix.ui","c":"NVGColor","l":"GRAY"},{"p":"com.avrix.ui","c":"NVGColor","l":"GREEN"},{"p":"com.avrix.ui","c":"NVGColor","l":"green(float)"},{"p":"com.avrix.commands","c":"CommandsManager","l":"handleCustomCommand(UdpConnection, String)","u":"handleCustomCommand(zombie.core.raknet.UdpConnection,java.lang.String)"},{"p":"com.avrix.events","c":"OnCGlobalObjectSystemInitEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnChallengeQueryEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnChatWindowInitEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnConnectedEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnCreateUIEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnDawnEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnDisconnectEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnDistributionMergeEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnDuskEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnEveryDaysEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnEveryHoursEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnEveryOneMinuteEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnEveryTenMinutesEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnGameBootEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnGameStartEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnGameTimeLoadedEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnGameWindowInitializedEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnInitWorldEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnJoypadRenderUIEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnLoadEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnLoadMapZonesEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnLoadSoundBanksEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnMainMenuEnterEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnMiniScoreboardUpdateEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnModsModifiedEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnMultiTriggerNPCEventEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnPostDistributionMergeEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnPostRenderEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnPostSaveEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnPostUIDrawEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnPreDistributionMergeEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnPreMapLoadEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnPreUIDrawEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnRainStopEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnRenderTickEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnSafehousesChangedEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnSaveEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnSendCustomModDataEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnServerFinishSavingEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnServerInitializeEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnServerShutdownEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnServerStartedEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnServerStartSavingEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnServerStatisticReceivedEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnSGlobalObjectSystemInitEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnSteamGameJoinEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnSteamRefreshInternetServersEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnSwitchChatStreamEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnTickRenderThreadEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnTriggerNPCEventEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnUpdateIconEvent","l":"handleEvent()"},{"p":"com.avrix.events","c":"OnScoreboardUpdateEvent","l":"handleEvent(ArrayList, ArrayList, ArrayList)","u":"handleEvent(java.util.ArrayList,java.util.ArrayList,java.util.ArrayList)"},{"p":"com.avrix.events","c":"OnGetTableResultEvent","l":"handleEvent(ArrayList, Integer, String)","u":"handleEvent(java.util.ArrayList,java.lang.Integer,java.lang.String)"},{"p":"com.avrix.events","c":"OnAcceptedTradeEvent","l":"handleEvent(Boolean)","u":"handleEvent(java.lang.Boolean)"},{"p":"com.avrix.events","c":"OnInitGlobalModDataEvent","l":"handleEvent(Boolean)","u":"handleEvent(java.lang.Boolean)"},{"p":"com.avrix.events","c":"OnSteamWorkshopItemUpdatedEvent","l":"handleEvent(Boolean)","u":"handleEvent(java.lang.Boolean)"},{"p":"com.avrix.events","c":"OnPlayerConnectEvent","l":"handleEvent(ByteBuffer, UdpConnection, String)","u":"handleEvent(java.nio.ByteBuffer,zombie.core.raknet.UdpConnection,java.lang.String)"},{"p":"com.avrix.events","c":"OnPlayerFullyConnectedEvent","l":"handleEvent(ByteBuffer, UdpConnection, String)","u":"handleEvent(java.nio.ByteBuffer,zombie.core.raknet.UdpConnection,java.lang.String)"},{"p":"com.avrix.events","c":"OnViewTicketsEvent","l":"handleEvent(ByteBufferWriter)","u":"handleEvent(zombie.core.network.ByteBufferWriter)"},{"p":"com.avrix.events","c":"OnChatMessageProcessedEvent","l":"handleEvent(ChatBase, ChatMessage)","u":"handleEvent(zombie.chat.ChatBase,zombie.chat.ChatMessage)"},{"p":"com.avrix.events","c":"OnAddMessageEvent","l":"handleEvent(ChatMessage, Short)","u":"handleEvent(zombie.chat.ChatMessage,java.lang.Short)"},{"p":"com.avrix.events","c":"OnSetDefaultTabEvent","l":"handleEvent(ChatTab)","u":"handleEvent(zombie.chat.ChatTab)"},{"p":"com.avrix.events","c":"OnClimateManagerInitEvent","l":"handleEvent(ClimateManager)","u":"handleEvent(zombie.iso.weather.ClimateManager)"},{"p":"com.avrix.events","c":"OnClimateTickDebugEvent","l":"handleEvent(ClimateManager)","u":"handleEvent(zombie.iso.weather.ClimateManager)"},{"p":"com.avrix.events","c":"OnClimateTickEvent","l":"handleEvent(ClimateManager)","u":"handleEvent(zombie.iso.weather.ClimateManager)"},{"p":"com.avrix.events","c":"OnFETickEvent","l":"handleEvent(Double)","u":"handleEvent(java.lang.Double)"},{"p":"com.avrix.events","c":"OnJoypadBeforeDeactivateEvent","l":"handleEvent(Double)","u":"handleEvent(java.lang.Double)"},{"p":"com.avrix.events","c":"OnJoypadBeforeReactivateEvent","l":"handleEvent(Double)","u":"handleEvent(java.lang.Double)"},{"p":"com.avrix.events","c":"OnJoypadDeactivateEvent","l":"handleEvent(Double)","u":"handleEvent(java.lang.Double)"},{"p":"com.avrix.events","c":"OnJoypadReactivateEvent","l":"handleEvent(Double)","u":"handleEvent(java.lang.Double)"},{"p":"com.avrix.events","c":"OnTickEvenPausedEvent","l":"handleEvent(Double)","u":"handleEvent(java.lang.Double)"},{"p":"com.avrix.events","c":"OnTickEvent","l":"handleEvent(Double)","u":"handleEvent(java.lang.Double)"},{"p":"com.avrix.events","c":"OnInitSeasonsEvent","l":"handleEvent(ErosionSeason)","u":"handleEvent(zombie.erosion.season.ErosionSeason)"},{"p":"com.avrix.events","c":"OnContainerUpdateEvent","l":"handleEvent(Food)","u":"handleEvent(zombie.inventory.types.Food)"},{"p":"com.avrix.events","c":"OnCoopJoinFailedEvent","l":"handleEvent(Integer)","u":"handleEvent(java.lang.Integer)"},{"p":"com.avrix.events","c":"OnCustomUIKeyEvent","l":"handleEvent(Integer)","u":"handleEvent(java.lang.Integer)"},{"p":"com.avrix.events","c":"OnCustomUIKeyPressedEvent","l":"handleEvent(Integer)","u":"handleEvent(java.lang.Integer)"},{"p":"com.avrix.events","c":"OnCustomUIKeyReleasedEvent","l":"handleEvent(Integer)","u":"handleEvent(java.lang.Integer)"},{"p":"com.avrix.events","c":"OnGamepadConnectEvent","l":"handleEvent(Integer)","u":"handleEvent(java.lang.Integer)"},{"p":"com.avrix.events","c":"OnGamepadDisconnectEvent","l":"handleEvent(Integer)","u":"handleEvent(java.lang.Integer)"},{"p":"com.avrix.events","c":"OnJoypadActivateEvent","l":"handleEvent(Integer)","u":"handleEvent(java.lang.Integer)"},{"p":"com.avrix.events","c":"OnJoypadActivateUIEvent","l":"handleEvent(Integer)","u":"handleEvent(java.lang.Integer)"},{"p":"com.avrix.events","c":"OnKeyKeepPressedEvent","l":"handleEvent(Integer)","u":"handleEvent(java.lang.Integer)"},{"p":"com.avrix.events","c":"OnKeyPressedEvent","l":"handleEvent(Integer)","u":"handleEvent(java.lang.Integer)"},{"p":"com.avrix.events","c":"OnKeyStartPressedEvent","l":"handleEvent(Integer)","u":"handleEvent(java.lang.Integer)"},{"p":"com.avrix.events","c":"OnPostFloorLayerDrawEvent","l":"handleEvent(Integer)","u":"handleEvent(java.lang.Integer)"},{"p":"com.avrix.events","c":"OnSteamServerRespondedEvent","l":"handleEvent(Integer)","u":"handleEvent(java.lang.Integer)"},{"p":"com.avrix.events","c":"OnSteamWorkshopItemNotCreatedEvent","l":"handleEvent(Integer)","u":"handleEvent(java.lang.Integer)"},{"p":"com.avrix.events","c":"OnSteamWorkshopItemNotUpdatedEvent","l":"handleEvent(Integer)","u":"handleEvent(java.lang.Integer)"},{"p":"com.avrix.events","c":"OnMouseDownEvent","l":"handleEvent(Integer, Integer)","u":"handleEvent(java.lang.Integer,java.lang.Integer)"},{"p":"com.avrix.events","c":"OnMouseUpEvent","l":"handleEvent(Integer, Integer)","u":"handleEvent(java.lang.Integer,java.lang.Integer)"},{"p":"com.avrix.events","c":"OnRightMouseDownEvent","l":"handleEvent(Integer, Integer)","u":"handleEvent(java.lang.Integer,java.lang.Integer)"},{"p":"com.avrix.events","c":"OnRightMouseUpEvent","l":"handleEvent(Integer, Integer)","u":"handleEvent(java.lang.Integer,java.lang.Integer)"},{"p":"com.avrix.events","c":"OnThunderEventEvent","l":"handleEvent(Integer, Integer, Boolean, Boolean, Boolean)","u":"handleEvent(java.lang.Integer,java.lang.Integer,java.lang.Boolean,java.lang.Boolean,java.lang.Boolean)"},{"p":"com.avrix.events","c":"OnMouseMoveEvent","l":"handleEvent(Integer, Integer, Integer, Integer)","u":"handleEvent(java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer)"},{"p":"com.avrix.events","c":"OnResolutionChangeEvent","l":"handleEvent(Integer, Integer, Integer, Integer)","u":"handleEvent(java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer)"},{"p":"com.avrix.events","c":"OnWorldSoundEvent","l":"handleEvent(Integer, Integer, Integer, Integer, Integer, IsoObject)","u":"handleEvent(java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,zombie.iso.IsoObject)"},{"p":"com.avrix.events","c":"OnCreatePlayerEvent","l":"handleEvent(Integer, IsoPlayer)","u":"handleEvent(java.lang.Integer,zombie.characters.IsoPlayer)"},{"p":"com.avrix.events","c":"OnFillInventoryObjectContextMenuEvent","l":"handleEvent(Integer, KahluaTable, KahluaTable)","u":"handleEvent(java.lang.Integer,se.krka.kahlua.vm.KahluaTable,se.krka.kahlua.vm.KahluaTable)"},{"p":"com.avrix.events","c":"OnPreFillInventoryObjectContextMenuEvent","l":"handleEvent(Integer, KahluaTable, KahluaTable)","u":"handleEvent(java.lang.Integer,se.krka.kahlua.vm.KahluaTable,se.krka.kahlua.vm.KahluaTable)"},{"p":"com.avrix.events","c":"OnFillWorldObjectContextMenuEvent","l":"handleEvent(Integer, KahluaTable, KahluaTable, Boolean)","u":"handleEvent(java.lang.Integer,se.krka.kahlua.vm.KahluaTable,se.krka.kahlua.vm.KahluaTable,java.lang.Boolean)"},{"p":"com.avrix.events","c":"OnItemFallEvent","l":"handleEvent(InventoryItem)","u":"handleEvent(zombie.inventory.InventoryItem)"},{"p":"com.avrix.events","c":"OnPostMapLoadEvent","l":"handleEvent(IsoCell, Integer, Integer)","u":"handleEvent(zombie.iso.IsoCell,java.lang.Integer,java.lang.Integer)"},{"p":"com.avrix.events","c":"OnDoTileBuilding3Event","l":"handleEvent(IsoChunk, Boolean, Integer, Integer, Integer)","u":"handleEvent(zombie.iso.IsoChunk,java.lang.Boolean,java.lang.Integer,java.lang.Integer,java.lang.Integer)"},{"p":"com.avrix.events","c":"OnDoTileBuilding2Event","l":"handleEvent(IsoChunk, Boolean, Integer, Integer, Integer, IsoGridSquare)","u":"handleEvent(zombie.iso.IsoChunk,java.lang.Boolean,java.lang.Integer,java.lang.Integer,java.lang.Integer,zombie.iso.IsoGridSquare)"},{"p":"com.avrix.events","c":"OnContainerUpdateEvent","l":"handleEvent(IsoDeadBody)","u":"handleEvent(zombie.iso.objects.IsoDeadBody)"},{"p":"com.avrix.events","c":"OnNewFireEvent","l":"handleEvent(IsoFire)","u":"handleEvent(zombie.iso.objects.IsoFire)"},{"p":"com.avrix.events","c":"OnCharacterDeathEvent","l":"handleEvent(IsoGameCharacter)","u":"handleEvent(zombie.characters.IsoGameCharacter)"},{"p":"com.avrix.events","c":"OnEnterVehicleEvent","l":"handleEvent(IsoGameCharacter)","u":"handleEvent(zombie.characters.IsoGameCharacter)"},{"p":"com.avrix.events","c":"OnExitVehicleEvent","l":"handleEvent(IsoGameCharacter)","u":"handleEvent(zombie.characters.IsoGameCharacter)"},{"p":"com.avrix.events","c":"OnVehicleDamageTextureEvent","l":"handleEvent(IsoGameCharacter)","u":"handleEvent(zombie.characters.IsoGameCharacter)"},{"p":"com.avrix.events","c":"OnMechanicActionDoneEvent","l":"handleEvent(IsoGameCharacter, Boolean, Integer, String, Long, Boolean)","u":"handleEvent(zombie.characters.IsoGameCharacter,java.lang.Boolean,java.lang.Integer,java.lang.String,java.lang.Long,java.lang.Boolean)"},{"p":"com.avrix.events","c":"OnPlayerAttackFinishedEvent","l":"handleEvent(IsoGameCharacter, HandWeapon)","u":"handleEvent(zombie.characters.IsoGameCharacter,zombie.inventory.types.HandWeapon)"},{"p":"com.avrix.events","c":"OnWeaponHitTreeEvent","l":"handleEvent(IsoGameCharacter, HandWeapon)","u":"handleEvent(zombie.characters.IsoGameCharacter,zombie.inventory.types.HandWeapon)"},{"p":"com.avrix.events","c":"OnWeaponSwingEvent","l":"handleEvent(IsoGameCharacter, HandWeapon)","u":"handleEvent(zombie.characters.IsoGameCharacter,zombie.inventory.types.HandWeapon)"},{"p":"com.avrix.events","c":"OnWeaponSwingHitPointEvent","l":"handleEvent(IsoGameCharacter, HandWeapon)","u":"handleEvent(zombie.characters.IsoGameCharacter,zombie.inventory.types.HandWeapon)"},{"p":"com.avrix.events","c":"OnEquipPrimaryEvent","l":"handleEvent(IsoGameCharacter, InventoryItem)","u":"handleEvent(zombie.characters.IsoGameCharacter,zombie.inventory.InventoryItem)"},{"p":"com.avrix.events","c":"OnEquipSecondaryEvent","l":"handleEvent(IsoGameCharacter, InventoryItem)","u":"handleEvent(zombie.characters.IsoGameCharacter,zombie.inventory.InventoryItem)"},{"p":"com.avrix.events","c":"OnObjectCollideEvent","l":"handleEvent(IsoGameCharacter, IsoDoor)","u":"handleEvent(zombie.characters.IsoGameCharacter,zombie.iso.objects.IsoDoor)"},{"p":"com.avrix.events","c":"OnCharacterCollideEvent","l":"handleEvent(IsoGameCharacter, IsoGameCharacter)","u":"handleEvent(zombie.characters.IsoGameCharacter,zombie.characters.IsoGameCharacter)"},{"p":"com.avrix.events","c":"OnWeaponHitCharacterEvent","l":"handleEvent(IsoGameCharacter, IsoGameCharacter, HandWeapon, Float)","u":"handleEvent(zombie.characters.IsoGameCharacter,zombie.characters.IsoGameCharacter,zombie.inventory.types.HandWeapon,java.lang.Float)"},{"p":"com.avrix.events","c":"OnObjectCollideEvent","l":"handleEvent(IsoGameCharacter, IsoGridSquare)","u":"handleEvent(zombie.characters.IsoGameCharacter,zombie.iso.IsoGridSquare)"},{"p":"com.avrix.events","c":"OnObjectCollideEvent","l":"handleEvent(IsoGameCharacter, IsoThumpable)","u":"handleEvent(zombie.characters.IsoGameCharacter,zombie.iso.objects.IsoThumpable)"},{"p":"com.avrix.events","c":"OnObjectCollideEvent","l":"handleEvent(IsoGameCharacter, IsoWindow)","u":"handleEvent(zombie.characters.IsoGameCharacter,zombie.iso.objects.IsoWindow)"},{"p":"com.avrix.events","c":"OnObjectCollideEvent","l":"handleEvent(IsoGameCharacter, IsoZombie)","u":"handleEvent(zombie.characters.IsoGameCharacter,zombie.characters.IsoZombie)"},{"p":"com.avrix.events","c":"OnAddXPEvent","l":"handleEvent(IsoGameCharacter, PerkFactory.Perk, Float)","u":"handleEvent(zombie.characters.IsoGameCharacter,zombie.characters.skills.PerkFactory.Perk,java.lang.Float)"},{"p":"com.avrix.events","c":"OnLevelPerkEvent","l":"handleEvent(IsoGameCharacter, PerkFactory.Perk, Integer, Boolean)","u":"handleEvent(zombie.characters.IsoGameCharacter,zombie.characters.skills.PerkFactory.Perk,java.lang.Integer,java.lang.Boolean)"},{"p":"com.avrix.events","c":"OnAIStateChangeEvent","l":"handleEvent(IsoGameCharacter, State, State)","u":"handleEvent(zombie.characters.IsoGameCharacter,zombie.ai.State,zombie.ai.State)"},{"p":"com.avrix.events","c":"OnContainerUpdateEvent","l":"handleEvent(IsoGridSquare)","u":"handleEvent(zombie.iso.IsoGridSquare)"},{"p":"com.avrix.events","c":"OnGridBurntEvent","l":"handleEvent(IsoGridSquare)","u":"handleEvent(zombie.iso.IsoGridSquare)"},{"p":"com.avrix.events","c":"OnLoadGridsquareEvent","l":"handleEvent(IsoGridSquare)","u":"handleEvent(zombie.iso.IsoGridSquare)"},{"p":"com.avrix.events","c":"OnLoadModDataFromServerEvent","l":"handleEvent(IsoGridSquare)","u":"handleEvent(zombie.iso.IsoGridSquare)"},{"p":"com.avrix.events","c":"OnReuseGridsquareEvent","l":"handleEvent(IsoGridSquare)","u":"handleEvent(zombie.iso.IsoGridSquare)"},{"p":"com.avrix.events","c":"OnObjectAboutToBeRemovedEvent","l":"handleEvent(IsoObject)","u":"handleEvent(zombie.iso.IsoObject)"},{"p":"com.avrix.events","c":"OnObjectAddedEvent","l":"handleEvent(IsoObject)","u":"handleEvent(zombie.iso.IsoObject)"},{"p":"com.avrix.events","c":"OnTileRemovedEvent","l":"handleEvent(IsoObject)","u":"handleEvent(zombie.iso.IsoObject)"},{"p":"com.avrix.events","c":"OnWaterAmountChangeEvent","l":"handleEvent(IsoObject, Integer)","u":"handleEvent(zombie.iso.IsoObject,java.lang.Integer)"},{"p":"com.avrix.events","c":"OnObjectLeftMouseButtonDownEvent","l":"handleEvent(IsoObject, Integer, Integer)","u":"handleEvent(zombie.iso.IsoObject,java.lang.Integer,java.lang.Integer)"},{"p":"com.avrix.events","c":"OnObjectLeftMouseButtonUpEvent","l":"handleEvent(IsoObject, Integer, Integer)","u":"handleEvent(zombie.iso.IsoObject,java.lang.Integer,java.lang.Integer)"},{"p":"com.avrix.events","c":"OnObjectRightMouseButtonDownEvent","l":"handleEvent(IsoObject, Integer, Integer)","u":"handleEvent(zombie.iso.IsoObject,java.lang.Integer,java.lang.Integer)"},{"p":"com.avrix.events","c":"OnObjectRightMouseButtonUpEvent","l":"handleEvent(IsoObject, Integer, Integer)","u":"handleEvent(zombie.iso.IsoObject,java.lang.Integer,java.lang.Integer)"},{"p":"com.avrix.events","c":"OnClothingUpdatedEvent","l":"handleEvent(IsoPlayer)","u":"handleEvent(zombie.characters.IsoPlayer)"},{"p":"com.avrix.events","c":"OnPlayerDeathEvent","l":"handleEvent(IsoPlayer)","u":"handleEvent(zombie.characters.IsoPlayer)"},{"p":"com.avrix.events","c":"OnPlayerMoveEvent","l":"handleEvent(IsoPlayer)","u":"handleEvent(zombie.characters.IsoPlayer)"},{"p":"com.avrix.events","c":"OnPlayerUpdateEvent","l":"handleEvent(IsoPlayer)","u":"handleEvent(zombie.characters.IsoPlayer)"},{"p":"com.avrix.events","c":"OnRequestTradeEvent","l":"handleEvent(IsoPlayer)","u":"handleEvent(zombie.characters.IsoPlayer)"},{"p":"com.avrix.events","c":"OnSwitchVehicleSeatEvent","l":"handleEvent(IsoPlayer)","u":"handleEvent(zombie.characters.IsoPlayer)"},{"p":"com.avrix.events","c":"OnReceiveItemListNetEvent","l":"handleEvent(IsoPlayer, ArrayList, IsoPlayer, String, String)","u":"handleEvent(zombie.characters.IsoPlayer,java.util.ArrayList,zombie.characters.IsoPlayer,java.lang.String,java.lang.String)"},{"p":"com.avrix.events","c":"OnUseVehicleEvent","l":"handleEvent(IsoPlayer, BaseVehicle, Boolean)","u":"handleEvent(zombie.characters.IsoPlayer,zombie.vehicles.BaseVehicle,java.lang.Boolean)"},{"p":"com.avrix.events","c":"OnVehicleHornEvent","l":"handleEvent(IsoPlayer, BaseVehicle, Boolean)","u":"handleEvent(zombie.characters.IsoPlayer,zombie.vehicles.BaseVehicle,java.lang.Boolean)"},{"p":"com.avrix.events","c":"OnDisableSearchModeEvent","l":"handleEvent(IsoPlayer, Boolean)","u":"handleEvent(zombie.characters.IsoPlayer,java.lang.Boolean)"},{"p":"com.avrix.events","c":"OnEnableSearchModeEvent","l":"handleEvent(IsoPlayer, Boolean)","u":"handleEvent(zombie.characters.IsoPlayer,java.lang.Boolean)"},{"p":"com.avrix.events","c":"OnToggleSearchModeEvent","l":"handleEvent(IsoPlayer, Boolean)","u":"handleEvent(zombie.characters.IsoPlayer,java.lang.Boolean)"},{"p":"com.avrix.events","c":"OnPressRackButtonEvent","l":"handleEvent(IsoPlayer, HandWeapon)","u":"handleEvent(zombie.characters.IsoPlayer,zombie.inventory.types.HandWeapon)"},{"p":"com.avrix.events","c":"OnPressReloadButtonEvent","l":"handleEvent(IsoPlayer, HandWeapon)","u":"handleEvent(zombie.characters.IsoPlayer,zombie.inventory.types.HandWeapon)"},{"p":"com.avrix.events","c":"OnWeaponHitXpEvent","l":"handleEvent(IsoPlayer, HandWeapon, IsoGameCharacter, Float)","u":"handleEvent(zombie.characters.IsoPlayer,zombie.inventory.types.HandWeapon,zombie.characters.IsoGameCharacter,java.lang.Float)"},{"p":"com.avrix.events","c":"OnTradingUIRemoveItemEvent","l":"handleEvent(IsoPlayer, Integer)","u":"handleEvent(zombie.characters.IsoPlayer,java.lang.Integer)"},{"p":"com.avrix.events","c":"OnTradingUIUpdateStateEvent","l":"handleEvent(IsoPlayer, Integer)","u":"handleEvent(zombie.characters.IsoPlayer,java.lang.Integer)"},{"p":"com.avrix.events","c":"OnTradingUIAddItemEvent","l":"handleEvent(IsoPlayer, InventoryItem)","u":"handleEvent(zombie.characters.IsoPlayer,zombie.inventory.InventoryItem)"},{"p":"com.avrix.events","c":"OnNewGameEvent","l":"handleEvent(IsoPlayer, IsoGridSquare)","u":"handleEvent(zombie.characters.IsoPlayer,zombie.iso.IsoGridSquare)"},{"p":"com.avrix.events","c":"OnPreFillWorldObjectContextMenuEvent","l":"handleEvent(IsoPlayer, KahluaTable, KahluaTable, Boolean)","u":"handleEvent(zombie.characters.IsoPlayer,se.krka.kahlua.vm.KahluaTable,se.krka.kahlua.vm.KahluaTable,java.lang.Boolean)"},{"p":"com.avrix.events","c":"OnCreateLivingCharacterEvent","l":"handleEvent(IsoPlayer, SurvivorDesc)","u":"handleEvent(zombie.characters.IsoPlayer,zombie.characters.SurvivorDesc)"},{"p":"com.avrix.events","c":"OnPlayerDisconnectEvent","l":"handleEvent(IsoPlayer, UdpConnection)","u":"handleEvent(zombie.characters.IsoPlayer,zombie.core.raknet.UdpConnection)"},{"p":"com.avrix.events","c":"OnSeeNewRoomEvent","l":"handleEvent(IsoRoom)","u":"handleEvent(zombie.iso.areas.IsoRoom)"},{"p":"com.avrix.events","c":"OnLoadedTileDefinitionsEvent","l":"handleEvent(IsoSpriteManager)","u":"handleEvent(zombie.iso.sprite.IsoSpriteManager)"},{"p":"com.avrix.events","c":"OnCreateSurvivorEvent","l":"handleEvent(IsoSurvivor)","u":"handleEvent(zombie.characters.IsoSurvivor)"},{"p":"com.avrix.events","c":"OnCreateLivingCharacterEvent","l":"handleEvent(IsoSurvivor, SurvivorDesc)","u":"handleEvent(zombie.characters.IsoSurvivor,zombie.characters.SurvivorDesc)"},{"p":"com.avrix.events","c":"OnDestroyIsoThumpableEvent","l":"handleEvent(IsoThumpable)","u":"handleEvent(zombie.iso.objects.IsoThumpable)"},{"p":"com.avrix.events","c":"OnContainerUpdateEvent","l":"handleEvent(IsoWorldInventoryObject)","u":"handleEvent(zombie.iso.objects.IsoWorldInventoryObject)"},{"p":"com.avrix.events","c":"OnZombieDeadEvent","l":"handleEvent(IsoZombie)","u":"handleEvent(zombie.characters.IsoZombie)"},{"p":"com.avrix.events","c":"OnZombieUpdateEvent","l":"handleEvent(IsoZombie)","u":"handleEvent(zombie.characters.IsoZombie)"},{"p":"com.avrix.events","c":"OnHitZombieEvent","l":"handleEvent(IsoZombie, IsoGameCharacter, BodyPartType, HandWeapon)","u":"handleEvent(zombie.characters.IsoZombie,zombie.characters.IsoGameCharacter,zombie.characters.BodyDamage.BodyPartType,zombie.inventory.types.HandWeapon)"},{"p":"com.avrix.events","c":"OnAddForageDefsEvent","l":"handleEvent(KahluaTable)","u":"handleEvent(se.krka.kahlua.vm.KahluaTable)"},{"p":"com.avrix.events","c":"OnGetDBSchemaEvent","l":"handleEvent(KahluaTable)","u":"handleEvent(se.krka.kahlua.vm.KahluaTable)"},{"p":"com.avrix.events","c":"OnMngInvReceiveItemsEvent","l":"handleEvent(KahluaTable)","u":"handleEvent(se.krka.kahlua.vm.KahluaTable)"},{"p":"com.avrix.events","c":"OnPreAddCatDefsEvent","l":"handleEvent(KahluaTable)","u":"handleEvent(se.krka.kahlua.vm.KahluaTable)"},{"p":"com.avrix.events","c":"OnPreAddForageDefsEvent","l":"handleEvent(KahluaTable)","u":"handleEvent(se.krka.kahlua.vm.KahluaTable)"},{"p":"com.avrix.events","c":"OnPreAddItemDefsEvent","l":"handleEvent(KahluaTable)","u":"handleEvent(se.krka.kahlua.vm.KahluaTable)"},{"p":"com.avrix.events","c":"OnPreAddZoneDefsEvent","l":"handleEvent(KahluaTable)","u":"handleEvent(se.krka.kahlua.vm.KahluaTable)"},{"p":"com.avrix.events","c":"OnSpawnRegionsLoadedEvent","l":"handleEvent(KahluaTable)","u":"handleEvent(se.krka.kahlua.vm.KahluaTable)"},{"p":"com.avrix.events","c":"OnFillSearchIconContextMenuEvent","l":"handleEvent(KahluaTable, KahluaTable)","u":"handleEvent(se.krka.kahlua.vm.KahluaTable,se.krka.kahlua.vm.KahluaTable)"},{"p":"com.avrix.events","c":"OnChangeLanguageEvent","l":"handleEvent(Language)","u":"handleEvent(zombie.core.Language)"},{"p":"com.avrix.events","c":"OnDynamicMovableRecipeEvent","l":"handleEvent(Moveable, MovableRecipe, InventoryItem, IsoGameCharacter)","u":"handleEvent(zombie.inventory.types.Moveable,zombie.scripting.objects.MovableRecipe,zombie.inventory.InventoryItem,zombie.characters.IsoGameCharacter)"},{"p":"com.avrix.events","c":"OnPostWidgetDrawEvent","l":"handleEvent(NVGContext)","u":"handleEvent(com.avrix.ui.NVGContext)"},{"p":"com.avrix.events","c":"OnPreWidgetDrawEvent","l":"handleEvent(NVGContext)","u":"handleEvent(com.avrix.ui.NVGContext)"},{"p":"com.avrix.events","c":"OnWidgetManagerInitEvent","l":"handleEvent(NVGContext)","u":"handleEvent(com.avrix.ui.NVGContext)"},{"p":"com.avrix.events","c":"OnDoSpecialTooltipEvent","l":"handleEvent(ObjectTooltip, IsoGridSquare)","u":"handleEvent(zombie.ui.ObjectTooltip,zombie.iso.IsoGridSquare)"},{"p":"com.avrix.events","c":"OnLoadRadioScriptsEvent","l":"handleEvent(RadioScriptManager, Boolean)","u":"handleEvent(zombie.radio.scripting.RadioScriptManager,java.lang.Boolean)"},{"p":"com.avrix.events","c":"OnInitRecordedMediaEvent","l":"handleEvent(RecordedMedia)","u":"handleEvent(zombie.radio.media.RecordedMedia)"},{"p":"com.avrix.events","c":"OnReceiveSafehouseInviteEvent","l":"handleEvent(SafeHouse, String)","u":"handleEvent(zombie.iso.areas.SafeHouse,java.lang.String)"},{"p":"com.avrix.events","c":"OnAddIncomingEvent","l":"handleEvent(Short, ByteBuffer, UdpConnection)","u":"handleEvent(java.lang.Short,java.nio.ByteBuffer,zombie.core.raknet.UdpConnection)"},{"p":"com.avrix.events","c":"OnAcceptInviteEvent","l":"handleEvent(String)","u":"handleEvent(java.lang.String)"},{"p":"com.avrix.events","c":"OnChangeWeatherEvent","l":"handleEvent(String)","u":"handleEvent(java.lang.String)"},{"p":"com.avrix.events","c":"OnConnectFailedEvent","l":"handleEvent(String)","u":"handleEvent(java.lang.String)"},{"p":"com.avrix.events","c":"OnLuaFilesLoadedEvent","l":"handleEvent(String)","u":"handleEvent(java.lang.String)"},{"p":"com.avrix.events","c":"OnResetLuaEvent","l":"handleEvent(String)","u":"handleEvent(java.lang.String)"},{"p":"com.avrix.events","c":"OnSendConsoleCommandEvent","l":"handleEvent(String)","u":"handleEvent(java.lang.String)"},{"p":"com.avrix.events","c":"OnSteamFriendStatusChangedEvent","l":"handleEvent(String)","u":"handleEvent(java.lang.String)"},{"p":"com.avrix.events","c":"OnSyncFactionEvent","l":"handleEvent(String)","u":"handleEvent(java.lang.String)"},{"p":"com.avrix.events","c":"OnLuaScriptExecuteEvent","l":"handleEvent(String, boolean)","u":"handleEvent(java.lang.String,boolean)"},{"p":"com.avrix.events","c":"OnSteamWorkshopItemCreatedEvent","l":"handleEvent(String, Boolean)","u":"handleEvent(java.lang.String,java.lang.Boolean)"},{"p":"com.avrix.events","c":"OnReceiveUserlogEvent","l":"handleEvent(String, ByteBuffer)","u":"handleEvent(java.lang.String,java.nio.ByteBuffer)"},{"p":"com.avrix.events","c":"OnAmbientSoundEvent","l":"handleEvent(String, Float, Float)","u":"handleEvent(java.lang.String,java.lang.Float,java.lang.Float)"},{"p":"com.avrix.events","c":"OnDeviceTextEvent","l":"handleEvent(String, Float, Float, Float, String, IsoWaveSignal)","u":"handleEvent(java.lang.String,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.String,zombie.iso.objects.IsoWaveSignal)"},{"p":"com.avrix.events","c":"OnDeviceTextEvent","l":"handleEvent(String, Float, Float, Float, String, Radio)","u":"handleEvent(java.lang.String,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.String,zombie.inventory.types.Radio)"},{"p":"com.avrix.events","c":"OnDeviceTextEvent","l":"handleEvent(String, Float, Float, Float, String, VehiclePart)","u":"handleEvent(java.lang.String,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.String,zombie.vehicles.VehiclePart)"},{"p":"com.avrix.events","c":"OnSteamServerFailedToRespond2Event","l":"handleEvent(String, Integer)","u":"handleEvent(java.lang.String,java.lang.Integer)"},{"p":"com.avrix.events","c":"OnTabAddedEvent","l":"handleEvent(String, Integer)","u":"handleEvent(java.lang.String,java.lang.Integer)"},{"p":"com.avrix.events","c":"OnTabRemovedEvent","l":"handleEvent(String, Integer)","u":"handleEvent(java.lang.String,java.lang.Integer)"},{"p":"com.avrix.events","c":"OnAdminMessageEvent","l":"handleEvent(String, Integer, Integer, Integer)","u":"handleEvent(java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.Integer)"},{"p":"com.avrix.events","c":"OnSteamRulesRefreshCompleteEvent","l":"handleEvent(String, Integer, KahluaTable)","u":"handleEvent(java.lang.String,java.lang.Integer,se.krka.kahlua.vm.KahluaTable)"},{"p":"com.avrix.events","c":"OnSteamServerResponded2Event","l":"handleEvent(String, Integer, Server)","u":"handleEvent(java.lang.String,java.lang.Integer,zombie.network.Server)"},{"p":"com.avrix.events","c":"OnReceiveGlobalModDataEvent","l":"handleEvent(String, KahluaTable)","u":"handleEvent(java.lang.String,se.krka.kahlua.vm.KahluaTable)"},{"p":"com.avrix.events","c":"OnAcceptedFactionInviteEvent","l":"handleEvent(String, String)","u":"handleEvent(java.lang.String,java.lang.String)"},{"p":"com.avrix.events","c":"OnAcceptedSafehouseInviteEvent","l":"handleEvent(String, String)","u":"handleEvent(java.lang.String,java.lang.String)"},{"p":"com.avrix.events","c":"OnConnectionStateChangedEvent","l":"handleEvent(String, String)","u":"handleEvent(java.lang.String,java.lang.String)"},{"p":"com.avrix.events","c":"OnPlayerUnbanEvent","l":"handleEvent(String, String)","u":"handleEvent(java.lang.String,java.lang.String)"},{"p":"com.avrix.events","c":"OnReceiveFactionInviteEvent","l":"handleEvent(String, String)","u":"handleEvent(java.lang.String,java.lang.String)"},{"p":"com.avrix.events","c":"OnServerPingedEvent","l":"handleEvent(String, String)","u":"handleEvent(java.lang.String,java.lang.String)"},{"p":"com.avrix.events","c":"OnClientCommandEvent","l":"handleEvent(String, String, IsoPlayer, KahluaTable)","u":"handleEvent(java.lang.String,java.lang.String,zombie.characters.IsoPlayer,se.krka.kahlua.vm.KahluaTable)"},{"p":"com.avrix.events","c":"OnFillContainerEvent","l":"handleEvent(String, String, ItemContainer)","u":"handleEvent(java.lang.String,java.lang.String,zombie.inventory.ItemContainer)"},{"p":"com.avrix.events","c":"OnServerCommandEvent","l":"handleEvent(String, String, KahluaTable)","u":"handleEvent(java.lang.String,java.lang.String,se.krka.kahlua.vm.KahluaTable)"},{"p":"com.avrix.events","c":"OnCoopServerMessageEvent","l":"handleEvent(String, String, String)","u":"handleEvent(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.avrix.events","c":"OnSendChatCommandEvent","l":"handleEvent(UdpConnection, String)","u":"handleEvent(zombie.core.raknet.UdpConnection,java.lang.String)"},{"p":"com.avrix.events","c":"OnPlayerBanEvent","l":"handleEvent(UdpConnection, String, String)","u":"handleEvent(zombie.core.raknet.UdpConnection,java.lang.String,java.lang.String)"},{"p":"com.avrix.events","c":"OnPlayerKickEvent","l":"handleEvent(UdpConnection, String, String)","u":"handleEvent(zombie.core.raknet.UdpConnection,java.lang.String,java.lang.String)"},{"p":"com.avrix.events","c":"OnWeatherPeriodCompleteEvent","l":"handleEvent(WeatherPeriod)","u":"handleEvent(zombie.iso.weather.WeatherPeriod)"},{"p":"com.avrix.events","c":"OnWeatherPeriodStageEvent","l":"handleEvent(WeatherPeriod)","u":"handleEvent(zombie.iso.weather.WeatherPeriod)"},{"p":"com.avrix.events","c":"OnWeatherPeriodStartEvent","l":"handleEvent(WeatherPeriod)","u":"handleEvent(zombie.iso.weather.WeatherPeriod)"},{"p":"com.avrix.events","c":"OnWeatherPeriodStopEvent","l":"handleEvent(WeatherPeriod)","u":"handleEvent(zombie.iso.weather.WeatherPeriod)"},{"p":"com.avrix.events","c":"OnInitModdedWeatherStageEvent","l":"handleEvent(WeatherPeriod, WeatherPeriod.WeatherStage, Float)","u":"handleEvent(zombie.iso.weather.WeatherPeriod,zombie.iso.weather.WeatherPeriod.WeatherStage,java.lang.Float)"},{"p":"com.avrix.events","c":"OnUpdateModdedWeatherStageEvent","l":"handleEvent(WeatherPeriod, WeatherPeriod.WeatherStage, Float)","u":"handleEvent(zombie.iso.weather.WeatherPeriod,zombie.iso.weather.WeatherPeriod.WeatherStage,java.lang.Float)"},{"p":"com.avrix.events","c":"EventManager.EventListener","l":"handler()"},{"p":"com.avrix.events","c":"EventManager.EventListener","l":"hashCode()"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"headerColor"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"headerHeight"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"height"},{"p":"com.avrix.enums","c":"Priority","l":"HIGH"},{"p":"com.avrix.enums","c":"Priority","l":"HIGHEST"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget","l":"horizontal"},{"p":"com.avrix.ui.widgets","c":"ScrollbarWidget","l":"horizontal"},{"p":"com.avrix.ui.widgets","c":"HorizontalBoxWidget","l":"HorizontalBoxWidget(int, int, int, int, boolean)","u":"%3Cinit%3E(int,int,int,int,boolean)"},{"p":"com.avrix.ui.widgets","c":"ScrollPanelWidget","l":"horizontalScrollbar"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"hovered"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"iconColor"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"iconFontName"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"iconFontName"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"iconFontName"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"iconSize"},{"p":"com.avrix.plugin","c":"Metadata.MetadataBuilder","l":"id(String)","u":"id(java.lang.String)"},{"p":"com.avrix.resources","c":"ImageLoader","l":"ImageLoader()","u":"%3Cinit%3E()"},{"p":"com.avrix.resources","c":"ImageLoader","l":"imagesCacheMap"},{"p":"com.avrix.resources","c":"ImageLoader","l":"imagesCachePath"},{"p":"com.avrix.ui","c":"NVGColor","l":"immutable()"},{"p":"com.avrix.resources","c":"ResourceManager","l":"init()"},{"p":"com.avrix.ui","c":"WidgetManager","l":"init()"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"InputTextWidget(int, int, int, int)","u":"%3Cinit%3E(int,int,int,int)"},{"p":"com.avrix.ui","c":"InputWidgetHandler","l":"InputWidgetHandler()","u":"%3Cinit%3E()"},{"p":"com.avrix.agent","c":"Agent","l":"instrumentation"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"intersectScissor(int, int, int, int)","u":"intersectScissor(int,int,int,int)"},{"p":"com.avrix.events","c":"EventManager","l":"invokeEvent(String, Object...)","u":"invokeEvent(java.lang.String,java.lang.Object...)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"isActive()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"isAlwaysOnTop()"},{"p":"com.avrix.ui.widgets","c":"BoxLayoutWidget","l":"isAutoresize()"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"isChecked()"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"isCursorVisible()"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"isDraggable()"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"isEditable()"},{"p":"com.avrix.utils","c":"YamlFile","l":"isEmpty()"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"isEnable()"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"isEnable()"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"isEnable()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"isHovered()"},{"p":"com.avrix.resources","c":"ImageLoader","l":"isImageFile(String)","u":"isImageFile(java.lang.String)"},{"p":"com.avrix.ui","c":"NVGContext","l":"isModernOpenGL()"},{"p":"com.avrix.logs","c":"IsolatedConsoleWriter","l":"IsolatedConsoleWriter()","u":"%3Cinit%3E()"},{"p":"com.avrix.logs","c":"IsolatedConsoleWriter","l":"IsolatedConsoleWriter(Map)","u":"%3Cinit%3E(java.util.Map)"},{"p":"com.avrix.utils","c":"IsoObjectUtils","l":"IsoObjectUtils()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui","c":"WidgetManager","l":"isOverCustomUI()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"isPointOver(int, int)","u":"isPointOver(int,int)"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"isResizable()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"isScrollable()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"isScrollLock()"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget.ComboPopupButton","l":"isSelected()"},{"p":"com.avrix.ui.widgets","c":"BoxLayoutWidget","l":"isUpdatingLayout()"},{"p":"com.avrix.utils","c":"VersionChecker","l":"isVersionCompatible(String, String)","u":"isVersionCompatible(java.lang.String,java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"isVisible()"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"kickPlayer(IsoPlayer, String)","u":"kickPlayer(zombie.characters.IsoPlayer,java.lang.String)"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"kickPlayer(UdpConnection, String)","u":"kickPlayer(zombie.core.raknet.UdpConnection,java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"LabelWidget","l":"LabelWidget(String, String, int, int, int, NVGColor)","u":"%3Cinit%3E(java.lang.String,java.lang.String,int,int,int,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"BoxLayoutWidget","l":"lastHeight"},{"p":"com.avrix.ui.widgets","c":"BoxLayoutWidget","l":"lastWidth"},{"p":"com.avrix","c":"Launcher","l":"Launcher()","u":"%3Cinit%3E()"},{"p":"com.avrix.plugin","c":"Metadata.MetadataBuilder","l":"license(String)","u":"license(java.lang.String)"},{"p":"com.avrix.ui","c":"NVGColor","l":"LIGHT_BLACK"},{"p":"com.avrix.ui","c":"NVGColor","l":"LIGHT_BLUE"},{"p":"com.avrix.ui","c":"NVGColor","l":"LIGHT_GRAY"},{"p":"com.avrix.ui","c":"NVGColor","l":"LIGHT_YELLOW"},{"p":"com.avrix.logs","c":"LineReadingOutputStream","l":"LineReadingOutputStream(Consumer)","u":"%3Cinit%3E(java.util.function.Consumer)"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"LMBDown"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"LMBDown"},{"p":"com.avrix.utils","c":"YamlFile","l":"load(File)","u":"load(java.io.File)"},{"p":"com.avrix.utils","c":"YamlFile","l":"load(Path)","u":"load(java.nio.file.Path)"},{"p":"com.avrix.utils","c":"YamlFile","l":"load(String)","u":"load(java.lang.String)"},{"p":"com.avrix.agent","c":"AgentLoader","l":"loadAgent()"},{"p":"com.avrix.agent","c":"AgentLoader","l":"loadAgent(String)","u":"loadAgent(java.lang.String)"},{"p":"com.avrix.plugin","c":"Plugin","l":"loadConfig(String)","u":"loadConfig(java.lang.String)"},{"p":"com.avrix.plugin","c":"Plugin","l":"loadDefaultConfig()"},{"p":"com.avrix.ui","c":"NVGFont","l":"loadDefaultFonts()"},{"p":"com.avrix.resources","c":"ImageLoader","l":"loadImage(Path)","u":"loadImage(java.nio.file.Path)"},{"p":"com.avrix.resources","c":"ImageLoader","l":"loadImage(String)","u":"loadImage(java.lang.String)"},{"p":"com.avrix.resources","c":"ImageLoader","l":"loadImage(String, String)","u":"loadImage(java.lang.String,java.lang.String)"},{"p":"com.avrix.resources","c":"ImageLoader","l":"loadImages(NVGContext)","u":"loadImages(com.avrix.ui.NVGContext)"},{"p":"com.avrix.lua","c":"LuaManager","l":"loadLuaFromFolder(String, boolean)","u":"loadLuaFromFolder(java.lang.String,boolean)"},{"p":"com.avrix.plugin","c":"PluginManager","l":"loadPlugins()"},{"p":"com.avrix.enums","c":"Priority","l":"LOW"},{"p":"com.avrix.enums","c":"Priority","l":"LOWEST"},{"p":"com.avrix.lua","c":"LuaExposer","l":"LuaExposer()","u":"%3Cinit%3E()"},{"p":"com.avrix.lua","c":"LuaManager","l":"LuaManager()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui","c":"NVGColor","l":"MAGENTA"},{"p":"com.avrix","c":"Launcher","l":"main(String[])","u":"main(java.lang.String[])"},{"p":"com.avrix.ui","c":"NVGColor","l":"mallocNVG(MemoryStack)","u":"mallocNVG(org.lwjgl.system.MemoryStack)"},{"p":"com.avrix.ui.widgets","c":"BoxLayoutWidget","l":"margin"},{"p":"com.avrix.utils","c":"Constants","l":"MAX_CACHE_SIZE"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"maxScrollX"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"maxScrollY"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"maxTitleWidth"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"maxValue"},{"p":"com.avrix.utils","c":"YamlFile","l":"merge(Map)","u":"merge(java.util.Map)"},{"p":"com.avrix.utils","c":"YamlFile","l":"merge(YamlFile)","u":"merge(com.avrix.utils.YamlFile)"},{"p":"com.avrix.plugin","c":"Metadata.MetadataBuilder","l":"MetadataBuilder()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"minSizeX"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"minSizeY"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"minValue"},{"p":"com.avrix.ui.widgets","c":"ModalWidget","l":"ModalWidget(int, int)","u":"%3Cinit%3E(int,int)"},{"p":"com.avrix.ui.widgets","c":"ModalWidget","l":"ModalWidget(int, int, Widget)","u":"%3Cinit%3E(int,int,com.avrix.ui.widgets.Widget)"},{"p":"com.avrix.enums","c":"AccessLevel","l":"MODERATOR"},{"p":"com.avrix.agent","c":"ClassTransformer","l":"modifyClass()"},{"p":"com.avrix.patches","c":"PatchBanSteamIDCommand","l":"modifyClass()"},{"p":"com.avrix.patches","c":"PatchBanUserCommand","l":"modifyClass()"},{"p":"com.avrix.patches","c":"PatchChatServer","l":"modifyClass()"},{"p":"com.avrix.patches","c":"PatchGameServer","l":"modifyClass()"},{"p":"com.avrix.patches","c":"PatchGameWindow","l":"modifyClass()"},{"p":"com.avrix.patches","c":"PatchKickUserCommand","l":"modifyClass()"},{"p":"com.avrix.patches","c":"PatchLuaEventManager","l":"modifyClass()"},{"p":"com.avrix.patches","c":"PatchLuaManager","l":"modifyClass()"},{"p":"com.avrix.patches","c":"PatchLuaManagerExposer","l":"modifyClass()"},{"p":"com.avrix.patches","c":"PatchQuitCommand","l":"modifyClass()"},{"p":"com.avrix.patches","c":"PatchRenderThread","l":"modifyClass()"},{"p":"com.avrix.patches","c":"PatchSpriteRenderer","l":"modifyClass()"},{"p":"com.avrix.patches","c":"PatchTranslator","l":"modifyClass()"},{"p":"com.avrix.patches","c":"PatchUIManager","l":"modifyClass()"},{"p":"com.avrix.patches","c":"PatchUnbanSteamIDCommand","l":"modifyClass()"},{"p":"com.avrix.patches","c":"PatchUnbanUserCommand","l":"modifyClass()"},{"p":"com.avrix.patches","c":"PatchZLogger","l":"modifyClass()"},{"p":"com.avrix.agent","c":"ClassModifier.ClassModifierBuilder","l":"modifyMethod(String, BiConsumer)","u":"modifyMethod(java.lang.String,java.util.function.BiConsumer)"},{"p":"com.avrix.agent","c":"ClassModifier.ClassModifierBuilder","l":"modifyMethod(String, String, BiConsumer)","u":"modifyMethod(java.lang.String,java.lang.String,java.util.function.BiConsumer)"},{"p":"com.avrix.ui","c":"NVGColor","l":"multiply(float)"},{"p":"com.avrix.plugin","c":"Metadata.MetadataBuilder","l":"name(String)","u":"name(java.lang.String)"},{"p":"com.avrix.enums","c":"AccessLevel","l":"NONE"},{"p":"com.avrix.enums","c":"Priority","l":"NORMAL"},{"p":"com.avrix.ui","c":"NVGColor","l":"NVGColor(float, float, float, float)","u":"%3Cinit%3E(float,float,float,float)"},{"p":"com.avrix.ui","c":"NVGColor","l":"NVGColor(int, int, int, int)","u":"%3Cinit%3E(int,int,int,int)"},{"p":"com.avrix.ui","c":"NVGColor","l":"NVGColor(NVGColor)","u":"%3Cinit%3E(com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui","c":"NVGColor","l":"NVGColor(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.avrix.ui","c":"NVGContext","l":"NVGContext()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"NVGDrawer()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui","c":"NVGFont","l":"NVGFont()","u":"%3Cinit%3E()"},{"p":"com.avrix.enums","c":"AccessLevel","l":"OBSERVER"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget","l":"offset"},{"p":"com.avrix.events","c":"OnAcceptedFactionInviteEvent","l":"OnAcceptedFactionInviteEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnAcceptedSafehouseInviteEvent","l":"OnAcceptedSafehouseInviteEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnAcceptedTradeEvent","l":"OnAcceptedTradeEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnAcceptInviteEvent","l":"OnAcceptInviteEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnAddForageDefsEvent","l":"OnAddForageDefsEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnAddIncomingEvent","l":"OnAddIncomingEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnAddMessageEvent","l":"OnAddMessageEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnAddXPEvent","l":"OnAddXPEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnAdminMessageEvent","l":"OnAdminMessageEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnAIStateChangeEvent","l":"OnAIStateChangeEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnAmbientSoundEvent","l":"OnAmbientSoundEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnCGlobalObjectSystemInitEvent","l":"OnCGlobalObjectSystemInitEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnChallengeQueryEvent","l":"OnChallengeQueryEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget","l":"onChangeAction"},{"p":"com.avrix.events","c":"OnChangeLanguageEvent","l":"OnChangeLanguageEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnChangeWeatherEvent","l":"OnChangeWeatherEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnCharacterCollideEvent","l":"OnCharacterCollideEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnCharacterDeathEvent","l":"OnCharacterDeathEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnChatMessageProcessedEvent","l":"OnChatMessageProcessedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnChatWindowInitEvent","l":"OnChatWindowInitEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"onCheckAction"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget.RadioValue","l":"onClickAction"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"onClickMethod"},{"p":"com.avrix.events","c":"OnClientCommandEvent","l":"OnClientCommandEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnClimateManagerInitEvent","l":"OnClimateManagerInitEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnClimateTickDebugEvent","l":"OnClimateTickDebugEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnClimateTickEvent","l":"OnClimateTickEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnClothingUpdatedEvent","l":"OnClothingUpdatedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnConnectedEvent","l":"OnConnectedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnConnectFailedEvent","l":"OnConnectFailedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnConnectionStateChangedEvent","l":"OnConnectionStateChangedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnContainerUpdateEvent","l":"OnContainerUpdateEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnCoopJoinFailedEvent","l":"OnCoopJoinFailedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnCoopServerMessageEvent","l":"OnCoopServerMessageEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnCreateLivingCharacterEvent","l":"OnCreateLivingCharacterEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnCreatePlayerEvent","l":"OnCreatePlayerEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnCreateSurvivorEvent","l":"OnCreateSurvivorEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnCreateUIEvent","l":"OnCreateUIEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnCustomUIKeyEvent","l":"OnCustomUIKeyEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnCustomUIKeyPressedEvent","l":"OnCustomUIKeyPressedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnCustomUIKeyReleasedEvent","l":"OnCustomUIKeyReleasedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnDawnEvent","l":"OnDawnEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnDestroyIsoThumpableEvent","l":"OnDestroyIsoThumpableEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnDeviceTextEvent","l":"OnDeviceTextEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnDisableSearchModeEvent","l":"OnDisableSearchModeEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnDisconnectEvent","l":"OnDisconnectEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnDistributionMergeEvent","l":"OnDistributionMergeEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnDoSpecialTooltipEvent","l":"OnDoSpecialTooltipEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnDoTileBuilding2Event","l":"OnDoTileBuilding2Event()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnDoTileBuilding3Event","l":"OnDoTileBuilding3Event()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnDuskEvent","l":"OnDuskEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnDynamicMovableRecipeEvent","l":"OnDynamicMovableRecipeEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnEnableSearchModeEvent","l":"OnEnableSearchModeEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnEnterVehicleEvent","l":"OnEnterVehicleEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnEquipPrimaryEvent","l":"OnEquipPrimaryEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnEquipSecondaryEvent","l":"OnEquipSecondaryEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnEveryDaysEvent","l":"OnEveryDaysEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnEveryHoursEvent","l":"OnEveryHoursEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnEveryOneMinuteEvent","l":"OnEveryOneMinuteEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnEveryTenMinutesEvent","l":"OnEveryTenMinutesEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnExitVehicleEvent","l":"OnExitVehicleEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnFETickEvent","l":"OnFETickEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnFillContainerEvent","l":"OnFillContainerEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnFillInventoryObjectContextMenuEvent","l":"OnFillInventoryObjectContextMenuEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnFillSearchIconContextMenuEvent","l":"OnFillSearchIconContextMenuEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnFillWorldObjectContextMenuEvent","l":"OnFillWorldObjectContextMenuEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnGameBootEvent","l":"OnGameBootEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnGamepadConnectEvent","l":"OnGamepadConnectEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnGamepadDisconnectEvent","l":"OnGamepadDisconnectEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnGameStartEvent","l":"OnGameStartEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnGameTimeLoadedEvent","l":"OnGameTimeLoadedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnGameWindowInitializedEvent","l":"OnGameWindowInitializedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnGetDBSchemaEvent","l":"OnGetDBSchemaEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnGetTableResultEvent","l":"OnGetTableResultEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnGridBurntEvent","l":"OnGridBurntEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnHitZombieEvent","l":"OnHitZombieEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnInitGlobalModDataEvent","l":"OnInitGlobalModDataEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.plugin","c":"Plugin","l":"onInitialize()"},{"p":"com.avrix.ui.widgets","c":"ScrollPanelWidget","l":"onInitialize()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"onInitialize()"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"onInitialize()"},{"p":"com.avrix.events","c":"OnInitModdedWeatherStageEvent","l":"OnInitModdedWeatherStageEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnInitRecordedMediaEvent","l":"OnInitRecordedMediaEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnInitSeasonsEvent","l":"OnInitSeasonsEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnInitWorldEvent","l":"OnInitWorldEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.commands","c":"Command","l":"onInvoke(UdpConnection, String[])","u":"onInvoke(zombie.core.raknet.UdpConnection,java.lang.String[])"},{"p":"com.avrix.events","c":"OnItemFallEvent","l":"OnItemFallEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnJoypadActivateEvent","l":"OnJoypadActivateEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnJoypadActivateUIEvent","l":"OnJoypadActivateUIEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnJoypadBeforeDeactivateEvent","l":"OnJoypadBeforeDeactivateEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnJoypadBeforeReactivateEvent","l":"OnJoypadBeforeReactivateEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnJoypadDeactivateEvent","l":"OnJoypadDeactivateEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnJoypadReactivateEvent","l":"OnJoypadReactivateEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnJoypadRenderUIEvent","l":"OnJoypadRenderUIEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnKeyKeepPressedEvent","l":"OnKeyKeepPressedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui","c":"InputWidgetHandler","l":"onKeyPress(int)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"onKeyPress(int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"onKeyPress(int)"},{"p":"com.avrix.events","c":"OnKeyPressedEvent","l":"OnKeyPressedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui","c":"InputWidgetHandler","l":"onKeyRelease(int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"onKeyRelease(int)"},{"p":"com.avrix.ui","c":"InputWidgetHandler","l":"onKeyRepeat(int)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"onKeyRepeat(int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"onKeyRepeat(int)"},{"p":"com.avrix.events","c":"OnKeyStartPressedEvent","l":"OnKeyStartPressedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"onLeftMouseDown(int, int)","u":"onLeftMouseDown(int,int)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"onLeftMouseDown(int, int)","u":"onLeftMouseDown(int,int)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"onLeftMouseDown(int, int)","u":"onLeftMouseDown(int,int)"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"onLeftMouseDown(int, int)","u":"onLeftMouseDown(int,int)"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget.RadioValue","l":"onLeftMouseDown(int, int)","u":"onLeftMouseDown(int,int)"},{"p":"com.avrix.ui.widgets","c":"ScrollbarWidget","l":"onLeftMouseDown(int, int)","u":"onLeftMouseDown(int,int)"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"onLeftMouseDown(int, int)","u":"onLeftMouseDown(int,int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"onLeftMouseDown(int, int)","u":"onLeftMouseDown(int,int)"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"onLeftMouseDown(int, int)","u":"onLeftMouseDown(int,int)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"onLeftMouseDownOutside(int, int)","u":"onLeftMouseDownOutside(int,int)"},{"p":"com.avrix.ui.widgets","c":"PopupWidget","l":"onLeftMouseDownOutside(int, int)","u":"onLeftMouseDownOutside(int,int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"onLeftMouseDownOutside(int, int)","u":"onLeftMouseDownOutside(int,int)"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"onLeftMouseUp(int, int)","u":"onLeftMouseUp(int,int)"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"onLeftMouseUp(int, int)","u":"onLeftMouseUp(int,int)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"onLeftMouseUp(int, int)","u":"onLeftMouseUp(int,int)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"onLeftMouseUp(int, int)","u":"onLeftMouseUp(int,int)"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"onLeftMouseUp(int, int)","u":"onLeftMouseUp(int,int)"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget.RadioValue","l":"onLeftMouseUp(int, int)","u":"onLeftMouseUp(int,int)"},{"p":"com.avrix.ui.widgets","c":"ScrollbarWidget","l":"onLeftMouseUp(int, int)","u":"onLeftMouseUp(int,int)"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"onLeftMouseUp(int, int)","u":"onLeftMouseUp(int,int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"onLeftMouseUp(int, int)","u":"onLeftMouseUp(int,int)"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"onLeftMouseUp(int, int)","u":"onLeftMouseUp(int,int)"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"onLeftMouseUpOutside(int, int)","u":"onLeftMouseUpOutside(int,int)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"onLeftMouseUpOutside(int, int)","u":"onLeftMouseUpOutside(int,int)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"onLeftMouseUpOutside(int, int)","u":"onLeftMouseUpOutside(int,int)"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"onLeftMouseUpOutside(int, int)","u":"onLeftMouseUpOutside(int,int)"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget.RadioValue","l":"onLeftMouseUpOutside(int, int)","u":"onLeftMouseUpOutside(int,int)"},{"p":"com.avrix.ui.widgets","c":"ScrollbarWidget","l":"onLeftMouseUpOutside(int, int)","u":"onLeftMouseUpOutside(int,int)"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"onLeftMouseUpOutside(int, int)","u":"onLeftMouseUpOutside(int,int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"onLeftMouseUpOutside(int, int)","u":"onLeftMouseUpOutside(int,int)"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"onLeftMouseUpOutside(int, int)","u":"onLeftMouseUpOutside(int,int)"},{"p":"com.avrix.events","c":"OnLevelPerkEvent","l":"OnLevelPerkEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnLoadedTileDefinitionsEvent","l":"OnLoadedTileDefinitionsEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnLoadEvent","l":"OnLoadEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnLoadGridsquareEvent","l":"OnLoadGridsquareEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnLoadMapZonesEvent","l":"OnLoadMapZonesEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnLoadModDataFromServerEvent","l":"OnLoadModDataFromServerEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnLoadRadioScriptsEvent","l":"OnLoadRadioScriptsEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnLoadSoundBanksEvent","l":"OnLoadSoundBanksEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnLuaFilesLoadedEvent","l":"OnLuaFilesLoadedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnLuaScriptExecuteEvent","l":"OnLuaScriptExecuteEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnMainMenuEnterEvent","l":"OnMainMenuEnterEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnMechanicActionDoneEvent","l":"OnMechanicActionDoneEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnMiniScoreboardUpdateEvent","l":"OnMiniScoreboardUpdateEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnMngInvReceiveItemsEvent","l":"OnMngInvReceiveItemsEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnModsModifiedEvent","l":"OnModsModifiedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnMouseDownEvent","l":"OnMouseDownEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"onMouseEnter(int, int)","u":"onMouseEnter(int,int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"onMouseExit(int, int)","u":"onMouseExit(int,int)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"onMouseMove(int, int)","u":"onMouseMove(int,int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"onMouseMove(int, int)","u":"onMouseMove(int,int)"},{"p":"com.avrix.events","c":"OnMouseMoveEvent","l":"OnMouseMoveEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"onMouseMoveOutside(int, int)","u":"onMouseMoveOutside(int,int)"},{"p":"com.avrix.events","c":"OnMouseUpEvent","l":"OnMouseUpEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"onMouseWheel(int, int, int)","u":"onMouseWheel(int,int,int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"onMouseWheelOutside(int, int, int)","u":"onMouseWheelOutside(int,int,int)"},{"p":"com.avrix.events","c":"OnMultiTriggerNPCEventEvent","l":"OnMultiTriggerNPCEventEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnNewFireEvent","l":"OnNewFireEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnNewGameEvent","l":"OnNewGameEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnObjectAboutToBeRemovedEvent","l":"OnObjectAboutToBeRemovedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnObjectAddedEvent","l":"OnObjectAddedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnObjectCollideEvent","l":"OnObjectCollideEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnObjectLeftMouseButtonDownEvent","l":"OnObjectLeftMouseButtonDownEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnObjectLeftMouseButtonUpEvent","l":"OnObjectLeftMouseButtonUpEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnObjectRightMouseButtonDownEvent","l":"OnObjectRightMouseButtonDownEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnObjectRightMouseButtonUpEvent","l":"OnObjectRightMouseButtonUpEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPlayerAttackFinishedEvent","l":"OnPlayerAttackFinishedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPlayerBanEvent","l":"OnPlayerBanEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPlayerConnectEvent","l":"OnPlayerConnectEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPlayerDeathEvent","l":"OnPlayerDeathEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPlayerDisconnectEvent","l":"OnPlayerDisconnectEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPlayerFullyConnectedEvent","l":"OnPlayerFullyConnectedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPlayerKickEvent","l":"OnPlayerKickEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPlayerMoveEvent","l":"OnPlayerMoveEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPlayerUnbanEvent","l":"OnPlayerUnbanEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPlayerUpdateEvent","l":"OnPlayerUpdateEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPostDistributionMergeEvent","l":"OnPostDistributionMergeEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPostFloorLayerDrawEvent","l":"OnPostFloorLayerDrawEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPostMapLoadEvent","l":"OnPostMapLoadEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPostRenderEvent","l":"OnPostRenderEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPostSaveEvent","l":"OnPostSaveEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPostUIDrawEvent","l":"OnPostUIDrawEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPostWidgetDrawEvent","l":"OnPostWidgetDrawEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPreAddCatDefsEvent","l":"OnPreAddCatDefsEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPreAddForageDefsEvent","l":"OnPreAddForageDefsEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPreAddItemDefsEvent","l":"OnPreAddItemDefsEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPreAddZoneDefsEvent","l":"OnPreAddZoneDefsEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPreDistributionMergeEvent","l":"OnPreDistributionMergeEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPreFillInventoryObjectContextMenuEvent","l":"OnPreFillInventoryObjectContextMenuEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPreFillWorldObjectContextMenuEvent","l":"OnPreFillWorldObjectContextMenuEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPreMapLoadEvent","l":"OnPreMapLoadEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPressRackButtonEvent","l":"OnPressRackButtonEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPressReloadButtonEvent","l":"OnPressReloadButtonEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPreUIDrawEvent","l":"OnPreUIDrawEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnPreWidgetDrawEvent","l":"OnPreWidgetDrawEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnRainStopEvent","l":"OnRainStopEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnReceiveFactionInviteEvent","l":"OnReceiveFactionInviteEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnReceiveGlobalModDataEvent","l":"OnReceiveGlobalModDataEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnReceiveItemListNetEvent","l":"OnReceiveItemListNetEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnReceiveSafehouseInviteEvent","l":"OnReceiveSafehouseInviteEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnReceiveUserlogEvent","l":"OnReceiveUserlogEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui","c":"WidgetManager","l":"onRender()"},{"p":"com.avrix.events","c":"OnRenderTickEvent","l":"OnRenderTickEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnRequestTradeEvent","l":"OnRequestTradeEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnResetLuaEvent","l":"OnResetLuaEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnResolutionChangeEvent","l":"OnResolutionChangeEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnReuseGridsquareEvent","l":"OnReuseGridsquareEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"onRightMouseDown(int, int)","u":"onRightMouseDown(int,int)"},{"p":"com.avrix.events","c":"OnRightMouseDownEvent","l":"OnRightMouseDownEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui.widgets","c":"PopupWidget","l":"onRightMouseDownOutside(int, int)","u":"onRightMouseDownOutside(int,int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"onRightMouseDownOutside(int, int)","u":"onRightMouseDownOutside(int,int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"onRightMouseUp(int, int)","u":"onRightMouseUp(int,int)"},{"p":"com.avrix.events","c":"OnRightMouseUpEvent","l":"OnRightMouseUpEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"onRightMouseUpOutside(int, int)","u":"onRightMouseUpOutside(int,int)"},{"p":"com.avrix.events","c":"OnSafehousesChangedEvent","l":"OnSafehousesChangedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnSaveEvent","l":"OnSaveEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnScoreboardUpdateEvent","l":"OnScoreboardUpdateEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnSeeNewRoomEvent","l":"OnSeeNewRoomEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnSendChatCommandEvent","l":"OnSendChatCommandEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnSendConsoleCommandEvent","l":"OnSendConsoleCommandEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnSendCustomModDataEvent","l":"OnSendCustomModDataEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnServerCommandEvent","l":"OnServerCommandEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnServerFinishSavingEvent","l":"OnServerFinishSavingEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnServerInitializeEvent","l":"OnServerInitializeEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnServerPingedEvent","l":"OnServerPingedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnServerShutdownEvent","l":"OnServerShutdownEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnServerStartedEvent","l":"OnServerStartedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnServerStartSavingEvent","l":"OnServerStartSavingEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnServerStatisticReceivedEvent","l":"OnServerStatisticReceivedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnSetDefaultTabEvent","l":"OnSetDefaultTabEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnSGlobalObjectSystemInitEvent","l":"OnSGlobalObjectSystemInitEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"onSlideAction"},{"p":"com.avrix.events","c":"OnSpawnRegionsLoadedEvent","l":"OnSpawnRegionsLoadedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnSteamFriendStatusChangedEvent","l":"OnSteamFriendStatusChangedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnSteamGameJoinEvent","l":"OnSteamGameJoinEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnSteamRefreshInternetServersEvent","l":"OnSteamRefreshInternetServersEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnSteamRulesRefreshCompleteEvent","l":"OnSteamRulesRefreshCompleteEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnSteamServerFailedToRespond2Event","l":"OnSteamServerFailedToRespond2Event()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnSteamServerResponded2Event","l":"OnSteamServerResponded2Event()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnSteamServerRespondedEvent","l":"OnSteamServerRespondedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnSteamWorkshopItemCreatedEvent","l":"OnSteamWorkshopItemCreatedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnSteamWorkshopItemNotCreatedEvent","l":"OnSteamWorkshopItemNotCreatedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnSteamWorkshopItemNotUpdatedEvent","l":"OnSteamWorkshopItemNotUpdatedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnSteamWorkshopItemUpdatedEvent","l":"OnSteamWorkshopItemUpdatedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnSwitchChatStreamEvent","l":"OnSwitchChatStreamEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnSwitchVehicleSeatEvent","l":"OnSwitchVehicleSeatEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnSyncFactionEvent","l":"OnSyncFactionEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnTabAddedEvent","l":"OnTabAddedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnTabRemovedEvent","l":"OnTabRemovedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"onTextChangeAction"},{"p":"com.avrix.events","c":"OnThunderEventEvent","l":"OnThunderEventEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnTickEvenPausedEvent","l":"OnTickEvenPausedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnTickEvent","l":"OnTickEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnTickRenderThreadEvent","l":"OnTickRenderThreadEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnTileRemovedEvent","l":"OnTileRemovedEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnToggleSearchModeEvent","l":"OnToggleSearchModeEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnTradingUIAddItemEvent","l":"OnTradingUIAddItemEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnTradingUIRemoveItemEvent","l":"OnTradingUIRemoveItemEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnTradingUIUpdateStateEvent","l":"OnTradingUIUpdateStateEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnTriggerNPCEventEvent","l":"OnTriggerNPCEventEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnUpdateIconEvent","l":"OnUpdateIconEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnUpdateModdedWeatherStageEvent","l":"OnUpdateModdedWeatherStageEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnUseVehicleEvent","l":"OnUseVehicleEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnVehicleDamageTextureEvent","l":"OnVehicleDamageTextureEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnVehicleHornEvent","l":"OnVehicleHornEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnViewTicketsEvent","l":"OnViewTicketsEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnWaterAmountChangeEvent","l":"OnWaterAmountChangeEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnWeaponHitCharacterEvent","l":"OnWeaponHitCharacterEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnWeaponHitTreeEvent","l":"OnWeaponHitTreeEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnWeaponHitXpEvent","l":"OnWeaponHitXpEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnWeaponSwingEvent","l":"OnWeaponSwingEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnWeaponSwingHitPointEvent","l":"OnWeaponSwingHitPointEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnWeatherPeriodCompleteEvent","l":"OnWeatherPeriodCompleteEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnWeatherPeriodStageEvent","l":"OnWeatherPeriodStageEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnWeatherPeriodStartEvent","l":"OnWeatherPeriodStartEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnWeatherPeriodStopEvent","l":"OnWeatherPeriodStopEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnWidgetManagerInitEvent","l":"OnWidgetManagerInitEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnWorldSoundEvent","l":"OnWorldSoundEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnZombieDeadEvent","l":"OnZombieDeadEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.events","c":"OnZombieUpdateEvent","l":"OnZombieUpdateEvent()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui","c":"NVGColor","l":"ORANGE"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"originalHeight"},{"p":"com.avrix.ui.widgets","c":"ScrollPanelWidget","l":"originalMaxScrollX"},{"p":"com.avrix.ui.widgets","c":"ScrollPanelWidget","l":"originalMaxScrollY"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"originalWidth"},{"p":"com.avrix.enums","c":"AccessLevel","l":"OVERSEER"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"PanelWidget(int, int, int, int)","u":"%3Cinit%3E(int,int,int,int)"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"PanelWidget(int, int, int, int, int, NVGColor)","u":"%3Cinit%3E(int,int,int,int,int,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"parent"},{"p":"com.avrix.patches","c":"PatchBanSteamIDCommand","l":"PatchBanSteamIDCommand()","u":"%3Cinit%3E()"},{"p":"com.avrix.patches","c":"PatchBanUserCommand","l":"PatchBanUserCommand()","u":"%3Cinit%3E()"},{"p":"com.avrix.patches","c":"PatchChatServer","l":"PatchChatServer()","u":"%3Cinit%3E()"},{"p":"com.avrix.patches","c":"PatchGameServer","l":"PatchGameServer()","u":"%3Cinit%3E()"},{"p":"com.avrix.patches","c":"PatchGameWindow","l":"PatchGameWindow()","u":"%3Cinit%3E()"},{"p":"com.avrix.patches","c":"PatchKickUserCommand","l":"PatchKickUserCommand()","u":"%3Cinit%3E()"},{"p":"com.avrix.plugin","c":"Metadata.MetadataBuilder","l":"patchList(List)","u":"patchList(java.util.List)"},{"p":"com.avrix.patches","c":"PatchLuaEventManager","l":"PatchLuaEventManager()","u":"%3Cinit%3E()"},{"p":"com.avrix.patches","c":"PatchLuaManager","l":"PatchLuaManager()","u":"%3Cinit%3E()"},{"p":"com.avrix.patches","c":"PatchLuaManagerExposer","l":"PatchLuaManagerExposer()","u":"%3Cinit%3E()"},{"p":"com.avrix.patches","c":"PatchQuitCommand","l":"PatchQuitCommand()","u":"%3Cinit%3E()"},{"p":"com.avrix.patches","c":"PatchRenderThread","l":"PatchRenderThread()","u":"%3Cinit%3E()"},{"p":"com.avrix.patches","c":"PatchSpriteRenderer","l":"PatchSpriteRenderer()","u":"%3Cinit%3E()"},{"p":"com.avrix.patches","c":"PatchTranslator","l":"PatchTranslator()","u":"%3Cinit%3E()"},{"p":"com.avrix.patches","c":"PatchUIManager","l":"PatchUIManager()","u":"%3Cinit%3E()"},{"p":"com.avrix.patches","c":"PatchUnbanSteamIDCommand","l":"PatchUnbanSteamIDCommand()","u":"%3Cinit%3E()"},{"p":"com.avrix.patches","c":"PatchUnbanUserCommand","l":"PatchUnbanUserCommand()","u":"%3Cinit%3E()"},{"p":"com.avrix.utils","c":"PatchUtils","l":"PatchUtils()","u":"%3Cinit%3E()"},{"p":"com.avrix.patches","c":"PatchZLogger","l":"PatchZLogger()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui","c":"NVGColor","l":"PINK"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"placeholder"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"placeholderColor"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"PlayerUtils()","u":"%3Cinit%3E()"},{"p":"com.avrix.plugin","c":"Plugin","l":"Plugin(Metadata)","u":"%3Cinit%3E(com.avrix.plugin.Metadata)"},{"p":"com.avrix.plugin","c":"PluginClassLoader","l":"PluginClassLoader(String, URL[], ClassLoader)","u":"%3Cinit%3E(java.lang.String,java.net.URL[],java.lang.ClassLoader)"},{"p":"com.avrix.plugin","c":"Metadata.MetadataBuilder","l":"pluginFile(File)","u":"pluginFile(java.io.File)"},{"p":"com.avrix.plugin","c":"PluginManager","l":"PluginManager()","u":"%3Cinit%3E()"},{"p":"com.avrix.utils","c":"Constants","l":"PLUGINS_DEFAULT_CONFIG_NAME"},{"p":"com.avrix.utils","c":"Constants","l":"PLUGINS_FOLDER_NAME"},{"p":"com.avrix.utils","c":"Constants","l":"PLUGINS_METADATA_NAME"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"popupButtonHeight"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"popupHeight"},{"p":"com.avrix.ui.widgets","c":"PopupWidget","l":"PopupWidget(int, int, int, int)","u":"%3Cinit%3E(int,int,int,int)"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"postRender()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"postRender()"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"postRender()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"preRender()"},{"p":"com.avrix.enums","c":"KeyEventType","l":"PRESS"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"pressed"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget.RadioValue","l":"pressed"},{"p":"com.avrix.events","c":"EventManager.EventListener","l":"priority()"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget","l":"RadioButtonWidget(int, int, int, int, boolean, BiConsumer)","u":"%3Cinit%3E(int,int,int,int,boolean,java.util.function.BiConsumer)"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget","l":"radioHeight"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget.RadioValue","l":"RadioValue(String, int, int, Consumer)","u":"%3Cinit%3E(java.lang.String,int,int,java.util.function.Consumer)"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget","l":"radioWidth"},{"p":"com.avrix.ui","c":"NVGColor","l":"RED"},{"p":"com.avrix.ui","c":"NVGColor","l":"red(float)"},{"p":"com.avrix.plugin","c":"ServiceManager","l":"register(Class, T)","u":"register(java.lang.Class,T)"},{"p":"com.avrix.enums","c":"KeyEventType","l":"RELEASE"},{"p":"com.avrix.utils","c":"YamlFile","l":"remove(String)","u":"remove(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"BoxLayoutWidget","l":"removeChild(Widget)","u":"removeChild(com.avrix.ui.widgets.Widget)"},{"p":"com.avrix.ui.widgets","c":"ScrollPanelWidget","l":"removeChild(Widget)","u":"removeChild(com.avrix.ui.widgets.Widget)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"removeChild(Widget)","u":"removeChild(com.avrix.ui.widgets.Widget)"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"removeChild(Widget)","u":"removeChild(com.avrix.ui.widgets.Widget)"},{"p":"com.avrix.lua","c":"LuaExposer","l":"removeExposedClass(Class)","u":"removeExposedClass(java.lang.Class)"},{"p":"com.avrix.lua","c":"LuaExposer","l":"removeExposedGlobalObject(Object)","u":"removeExposedGlobalObject(java.lang.Object)"},{"p":"com.avrix.resources","c":"ResourceManager","l":"removeFileExtension(String)","u":"removeFileExtension(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"removeFromScreen()"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"removeItem(IsoPlayer, int)","u":"removeItem(zombie.characters.IsoPlayer,int)"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"removeItem(IsoPlayer, InventoryItem)","u":"removeItem(zombie.characters.IsoPlayer,zombie.inventory.InventoryItem)"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"removeItem(IsoPlayer, String)","u":"removeItem(zombie.characters.IsoPlayer,java.lang.String)"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"removeItem(UdpConnection, int)","u":"removeItem(zombie.core.raknet.UdpConnection,int)"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"removeItem(UdpConnection, InventoryItem)","u":"removeItem(zombie.core.raknet.UdpConnection,zombie.inventory.InventoryItem)"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"removeItem(UdpConnection, String)","u":"removeItem(zombie.core.raknet.UdpConnection,java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"removeValue(int)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"removeValue(String)","u":"removeValue(java.lang.String)"},{"p":"com.avrix.ui","c":"WidgetManager","l":"removeWidget(Widget)","u":"removeWidget(com.avrix.ui.widgets.Widget)"},{"p":"com.avrix.ui.widgets","c":"BoxLayoutWidget","l":"render()"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"render()"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"render()"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget.ComboPopupButton","l":"render()"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"render()"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"render()"},{"p":"com.avrix.ui.widgets","c":"LabelWidget","l":"render()"},{"p":"com.avrix.ui.widgets","c":"ModalWidget","l":"render()"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"render()"},{"p":"com.avrix.ui.widgets","c":"PopupWidget","l":"render()"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget.RadioValue","l":"render()"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget","l":"render()"},{"p":"com.avrix.ui.widgets","c":"ScrollbarWidget","l":"render()"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"render()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"render()"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"render()"},{"p":"com.avrix.ui.widgets","c":"ScrollPanelWidget","l":"renderChildren()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"renderChildren()"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"renderChildren()"},{"p":"com.avrix.enums","c":"KeyEventType","l":"REPEAT"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"repeatDelay"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"resetRenderState()"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"resetScissor()"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"resizable"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"resizeIcon"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"resizeIconOffset"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"resizeIconSize"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"resizeOffsetX"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"resizeOffsetY"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget","l":"resizeToContent()"},{"p":"com.avrix.resources","c":"ResourceManager","l":"ResourceManager()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"restoreRenderState()"},{"p":"com.avrix.ui","c":"NVGColor","l":"rgbMatches(NVGColor)","u":"rgbMatches(com.avrix.ui.NVGColor)"},{"p":"com.avrix.lua","c":"LuaManager","l":"runLua(String, boolean)","u":"runLua(java.lang.String,boolean)"},{"p":"com.avrix.utils","c":"YamlFile","l":"save()"},{"p":"com.avrix.utils","c":"YamlFile","l":"save(String)","u":"save(java.lang.String)"},{"p":"com.avrix.agent","c":"ClassModifier.ClassModifierBuilder","l":"saveFile()"},{"p":"com.avrix.agent","c":"ClassModifier.ClassModifierBuilder","l":"saveFile(Path)","u":"saveFile(java.nio.file.Path)"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"saveRenderState()"},{"p":"com.avrix.ui","c":"NVGDrawer","l":"scissor(int, int, int, int)","u":"scissor(int,int,int,int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"scrollable"},{"p":"com.avrix.ui.widgets","c":"ScrollbarWidget","l":"ScrollbarWidget()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui.widgets","c":"ScrollbarWidget","l":"ScrollbarWidget(boolean)","u":"%3Cinit%3E(boolean)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"scrollLock"},{"p":"com.avrix.ui.widgets","c":"ScrollPanelWidget","l":"ScrollPanelWidget(int, int, int, int)","u":"%3Cinit%3E(int,int,int,int)"},{"p":"com.avrix.ui.widgets","c":"ScrollPanelWidget","l":"ScrollPanelWidget(int, int, int, int, int, NVGColor)","u":"%3Cinit%3E(int,int,int,int,int,com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"scrollSpeed"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"scrollX"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"scrollY"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget.RadioValue","l":"selected"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"selecting"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"selectionColor"},{"p":"com.avrix.utils","c":"ChatUtils","l":"sendMessageToAdmins(String)","u":"sendMessageToAdmins(java.lang.String)"},{"p":"com.avrix.utils","c":"ChatUtils","l":"sendMessageToAll(String)","u":"sendMessageToAll(java.lang.String)"},{"p":"com.avrix.utils","c":"ChatUtils","l":"sendMessageToPlayer(UdpConnection, String)","u":"sendMessageToPlayer(zombie.core.raknet.UdpConnection,java.lang.String)"},{"p":"com.avrix.enums","c":"Environment","l":"SERVER"},{"p":"com.avrix.plugin","c":"ServiceManager","l":"ServiceManager()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui","c":"NVGColor","l":"set(float, float, float, float)","u":"set(float,float,float,float)"},{"p":"com.avrix.ui","c":"NVGColor","l":"set(NVGColor)","u":"set(com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"setAccentColor(NVGColor)","u":"setAccentColor(com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget","l":"setAccentColor(NVGColor)","u":"setAccentColor(com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"setAccentColor(NVGColor)","u":"setAccentColor(com.avrix.ui.NVGColor)"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"setAccessLevel(IsoPlayer, AccessLevel)","u":"setAccessLevel(zombie.characters.IsoPlayer,com.avrix.enums.AccessLevel)"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"setAccessLevel(String, AccessLevel)","u":"setAccessLevel(java.lang.String,com.avrix.enums.AccessLevel)"},{"p":"com.avrix.utils","c":"PlayerUtils","l":"setAccessLevel(UdpConnection, AccessLevel)","u":"setAccessLevel(zombie.core.raknet.UdpConnection,com.avrix.enums.AccessLevel)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"setActive(boolean)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"setAlwaysOnTop(boolean)"},{"p":"com.avrix.ui.widgets","c":"BoxLayoutWidget","l":"setAutoresize(boolean)"},{"p":"com.avrix.ui.widgets","c":"ModalWidget","l":"setBackgroundColor(NVGColor)","u":"setBackgroundColor(com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"setBackgroundColor(NVGColor)","u":"setBackgroundColor(com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"setBarColor(NVGColor)","u":"setBarColor(com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"setBarFillOffset(int)"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"setBarHeight(int)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setBoolean(String, boolean)","u":"setBoolean(java.lang.String,boolean)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setBooleanList(String, List)","u":"setBooleanList(java.lang.String,java.util.List)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setBooleanMap(String, Map)","u":"setBooleanMap(java.lang.String,java.util.Map)"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"setBorderColor(NVGColor)","u":"setBorderColor(com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"setBorderOffset(int)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"setBorderOffset(int)"},{"p":"com.avrix.ui.widgets","c":"ScrollbarWidget","l":"setBorderOffset(int)"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"setBorderRadius(int)"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"setBorderRadius(int)"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"setBorderWidth(int)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setByte(String, byte)","u":"setByte(java.lang.String,byte)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setByteList(String, List)","u":"setByteList(java.lang.String,java.util.List)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setChar(String, char)","u":"setChar(java.lang.String,char)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setCharacterList(String, List)","u":"setCharacterList(java.lang.String,java.util.List)"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"setCheckBoxSize(int)"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"setCheckColor(NVGColor)","u":"setCheckColor(com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"setChecked(boolean)"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"setCheckIcon(String)","u":"setCheckIcon(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget","l":"setCircleColor(NVGColor)","u":"setCircleColor(com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget","l":"setCircleRadius(int)"},{"p":"com.avrix.ui.widgets","c":"ScrollbarWidget","l":"setCompressedWidth(int)"},{"p":"com.avrix.ui.widgets","c":"ModalWidget","l":"setContentPanel(Widget)","u":"setContentPanel(com.avrix.ui.widgets.Widget)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"setCursorVisible(boolean)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setDouble(String, double)","u":"setDouble(java.lang.String,double)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setDoubleList(String, List)","u":"setDoubleList(java.lang.String,java.util.List)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setDoubleMap(String, Map)","u":"setDoubleMap(java.lang.String,java.util.Map)"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"setDraggable(boolean)"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"setDrawBorder(boolean)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"setDropButtonWidth(int)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"setDropIcon(String)","u":"setDropIcon(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"setEditable(boolean)"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"setEnable(boolean)"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"setEnable(boolean)"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"setEnable(boolean)"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"setFont(String)","u":"setFont(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"setFontName(String)","u":"setFontName(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"setFontName(String)","u":"setFontName(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"setFontName(String)","u":"setFontName(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"LabelWidget","l":"setFontName(String)","u":"setFontName(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget","l":"setFontName(String)","u":"setFontName(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"setFontName(String)","u":"setFontName(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"setFontSize(int)"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"setFontSize(int)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"setFontSize(int)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"setFontSize(int)"},{"p":"com.avrix.ui.widgets","c":"LabelWidget","l":"setFontSize(int)"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget","l":"setFontSize(int)"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"setFontSize(int)"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"setHeaderColor(NVGColor)","u":"setHeaderColor(com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"setHeaderHeight(int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"setHeight(int)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"setIconColor(NVGColor)","u":"setIconColor(com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"setIconFontName(String)","u":"setIconFontName(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"setIconFontName(String)","u":"setIconFontName(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"setIconSize(int)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setInt(String, int)","u":"setInt(java.lang.String,int)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setIntegerList(String, List)","u":"setIntegerList(java.lang.String,java.util.List)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setIntMap(String, Map)","u":"setIntMap(java.lang.String,java.util.Map)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setList(String, List)","u":"setList(java.lang.String,java.util.List)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setLong(String, long)","u":"setLong(java.lang.String,long)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setLongList(String, List)","u":"setLongList(java.lang.String,java.util.List)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setMap(String, Map)","u":"setMap(java.lang.String,java.util.Map)"},{"p":"com.avrix.ui.widgets","c":"BoxLayoutWidget","l":"setMargin(int)"},{"p":"com.avrix.ui.widgets","c":"ScrollPanelWidget","l":"setMaxScrollX(int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"setMaxScrollX(int)"},{"p":"com.avrix.ui.widgets","c":"ScrollPanelWidget","l":"setMaxScrollY(int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"setMaxScrollY(int)"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"setMaxValue(int)"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"setMinSizeX(int)"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"setMinSizeY(int)"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"setMinValue(int)"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget","l":"setOffset(int)"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"setOnCheckAction(Consumer)","u":"setOnCheckAction(java.util.function.Consumer)"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"setOnClickMethod(Runnable)","u":"setOnClickMethod(java.lang.Runnable)"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"setOnSlideAction(Consumer)","u":"setOnSlideAction(java.util.function.Consumer)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"setOnTextChangeAction(Consumer)","u":"setOnTextChangeAction(java.util.function.Consumer)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"setPlaceholder(String)","u":"setPlaceholder(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"setPlaceholderColor(NVGColor)","u":"setPlaceholderColor(com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"setPopupButtonHeight(int)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"setPopupHeight(int)"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget","l":"setRadioHeight(int)"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget","l":"setRadioWidth(int)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"setRepeatDelay(int)"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"setResizable(boolean)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"setScrollable(boolean)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"setScrollLock(boolean)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"setScrollSpeed(int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"setScrollX(int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"setScrollY(int)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget.ComboPopupButton","l":"setSelected(boolean)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"setSelectionColor(NVGColor)","u":"setSelectionColor(com.avrix.ui.NVGColor)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setShort(String, short)","u":"setShort(java.lang.String,short)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setShortList(String, List)","u":"setShortList(java.lang.String,java.util.List)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setString(String, String)","u":"setString(java.lang.String,java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setStringList(String, List)","u":"setStringList(java.lang.String,java.util.List)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setStringMap(String, Map)","u":"setStringMap(java.lang.String,java.util.Map)"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"setText(String)","u":"setText(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"LabelWidget","l":"setText(String)","u":"setText(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"setTextColor(NVGColor)","u":"setTextColor(com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"setTextColor(NVGColor)","u":"setTextColor(com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"setTextColor(NVGColor)","u":"setTextColor(com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"LabelWidget","l":"setTextColor(NVGColor)","u":"setTextColor(com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget","l":"setTextColor(NVGColor)","u":"setTextColor(com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"setTextFont(String)","u":"setTextFont(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"setTextOffset(int)"},{"p":"com.avrix.ui.widgets","c":"ScrollbarWidget","l":"setThumbColor(NVGColor)","u":"setThumbColor(com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"setThumbWidth(int)"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"setTitle(String)","u":"setTitle(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"setTitleColor(NVGColor)","u":"setTitleColor(com.avrix.ui.NVGColor)"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"setTitleOffset(int)"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"setTitleText(String)","u":"setTitleText(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"BoxLayoutWidget","l":"setUpdatingLayout(boolean)"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"setValue(int)"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"setValue(String)","u":"setValue(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"setValue(String, Object)","u":"setValue(java.lang.String,java.lang.Object)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"setValueIndex(int)"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"setValueList(List)","u":"setValueList(java.util.List)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"setVisible(boolean)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"setWidth(int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"setX(int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"setXA(int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"setY(int)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"setYA(int)"},{"p":"com.avrix.ui.widgets","c":"ModalWidget","l":"show()"},{"p":"com.avrix.ui.widgets","c":"PopupWidget","l":"show()"},{"p":"com.avrix.ui","c":"NVGColor","l":"SILVER"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"SliderWidget(int, int, int, Consumer)","u":"%3Cinit%3E(int,int,int,java.util.function.Consumer)"},{"p":"com.avrix.plugin","c":"Metadata","l":"sortMetadata(List)","u":"sortMetadata(java.util.List)"},{"p":"com.avrix.utils","c":"ChatUtils","l":"SPACE_SYMBOL"},{"p":"com.avrix.ui","c":"NVGColor","l":"tallocNVG(NVGColor.ColorAction)","u":"tallocNVG(com.avrix.ui.NVGColor.ColorAction)"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"text"},{"p":"com.avrix.ui.widgets","c":"LabelWidget","l":"text"},{"p":"com.avrix.ui.widgets","c":"ButtonWidget","l":"textColor"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"textColor"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"textColor"},{"p":"com.avrix.ui.widgets","c":"LabelWidget","l":"textColor"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget","l":"textColor"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"textFont"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"textOffset"},{"p":"com.avrix.utils","c":"TextUtils","l":"TextUtils()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui.widgets","c":"ScrollbarWidget","l":"thumbColor"},{"p":"com.avrix.ui.widgets","c":"ScrollbarWidget","l":"thumbOffset"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"thumbWidth"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"title"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"titleColor"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"titleFontSize"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"titleOffset"},{"p":"com.avrix.ui.widgets","c":"CheckboxWidget","l":"titleText"},{"p":"com.avrix.ui","c":"NVGColor","l":"toHEX()"},{"p":"com.avrix.events","c":"EventManager.EventListener","l":"toString()"},{"p":"com.avrix.agent","c":"AgentTransformer","l":"transform(ClassLoader, String, Class, ProtectionDomain, byte[])","u":"transform(java.lang.ClassLoader,java.lang.String,java.lang.Class,java.security.ProtectionDomain,byte[])"},{"p":"com.avrix.agent","c":"AgentManager","l":"transformClass(String, byte[])","u":"transformClass(java.lang.String,byte[])"},{"p":"com.avrix.ui","c":"NVGColor","l":"TRANSPARENT"},{"p":"com.avrix.plugin","c":"ServiceManager","l":"unregister(Class)","u":"unregister(java.lang.Class)"},{"p":"com.avrix.ui.widgets","c":"LabelWidget","l":"update()"},{"p":"com.avrix.ui.widgets","c":"ModalWidget","l":"update()"},{"p":"com.avrix.ui.widgets","c":"PanelWidget","l":"update()"},{"p":"com.avrix.ui.widgets","c":"ScrollbarWidget","l":"update()"},{"p":"com.avrix.ui.widgets","c":"ScrollPanelWidget","l":"update()"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"update()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"update()"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"update()"},{"p":"com.avrix.ui.widgets","c":"BoxLayoutWidget","l":"updateLayout()"},{"p":"com.avrix.ui.widgets","c":"HorizontalBoxWidget","l":"updateLayout()"},{"p":"com.avrix.ui.widgets","c":"VerticalBoxWidget","l":"updateLayout()"},{"p":"com.avrix.ui.widgets","c":"ScrollPanelWidget","l":"updateMaxScrollOffset()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"updateMaxScrollOffset()"},{"p":"com.avrix.ui","c":"InputWidgetHandler","l":"updateMouseEvent()"},{"p":"com.avrix.ui.widgets","c":"ScrollbarWidget","l":"updatePosition()"},{"p":"com.avrix.ui.widgets","c":"InputTextWidget","l":"value"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget.RadioValue","l":"value"},{"p":"com.avrix.ui.widgets","c":"SliderWidget","l":"value"},{"p":"com.avrix.commands","c":"CommandAccessLevel","l":"value()"},{"p":"com.avrix.commands","c":"CommandDescription","l":"value()"},{"p":"com.avrix.commands","c":"CommandExecutionScope","l":"value()"},{"p":"com.avrix.commands","c":"CommandName","l":"value()"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"valueIndex"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget","l":"valueIndex"},{"p":"com.avrix.ui.widgets","c":"ComboBoxWidget","l":"valueList"},{"p":"com.avrix.enums","c":"AccessLevel","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"com.avrix.enums","c":"CommandScope","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"com.avrix.enums","c":"Environment","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"com.avrix.enums","c":"KeyEventType","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"com.avrix.enums","c":"Priority","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"com.avrix.ui.widgets","c":"RadioButtonWidget","l":"values"},{"p":"com.avrix.enums","c":"AccessLevel","l":"values()"},{"p":"com.avrix.enums","c":"CommandScope","l":"values()"},{"p":"com.avrix.enums","c":"Environment","l":"values()"},{"p":"com.avrix.enums","c":"KeyEventType","l":"values()"},{"p":"com.avrix.enums","c":"Priority","l":"values()"},{"p":"com.avrix.plugin","c":"Metadata.MetadataBuilder","l":"version(String)","u":"version(java.lang.String)"},{"p":"com.avrix.utils","c":"VersionChecker","l":"VersionChecker()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui.widgets","c":"VerticalBoxWidget","l":"VerticalBoxWidget(int, int, int, int, boolean)","u":"%3Cinit%3E(int,int,int,int,boolean)"},{"p":"com.avrix.ui.widgets","c":"ScrollPanelWidget","l":"verticalScrollbar"},{"p":"com.avrix.ui","c":"NVGColor","l":"VIOLET"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"visible"},{"p":"com.avrix.ui","c":"NVGColor","l":"WHITE"},{"p":"com.avrix.ui","c":"NVGColor","l":"WHITE_SMOKE"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"Widget(int, int, int, int)","u":"%3Cinit%3E(int,int,int,int)"},{"p":"com.avrix.ui","c":"WidgetManager","l":"WidgetManager()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"width"},{"p":"com.avrix.utils","c":"WindowUtils","l":"WindowUtils()","u":"%3Cinit%3E()"},{"p":"com.avrix.ui.widgets","c":"WindowWidget","l":"WindowWidget(String, int, int, int, int)","u":"%3Cinit%3E(java.lang.String,int,int,int,int)"},{"p":"com.avrix.logs","c":"LineReadingOutputStream","l":"write(byte[], int, int)","u":"write(byte[],int,int)"},{"p":"com.avrix.logs","c":"LineReadingOutputStream","l":"write(int)"},{"p":"com.avrix.logs","c":"IsolatedConsoleWriter","l":"write(LogEntry)","u":"write(org.tinylog.core.LogEntry)"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"x"},{"p":"com.avrix.ui.widgets","c":"Widget","l":"y"},{"p":"com.avrix.utils","c":"YamlFile","l":"YamlFile(File)","u":"%3Cinit%3E(java.io.File)"},{"p":"com.avrix.utils","c":"YamlFile","l":"YamlFile(InputStream, Path, String)","u":"%3Cinit%3E(java.io.InputStream,java.nio.file.Path,java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"YamlFile(Path)","u":"%3Cinit%3E(java.nio.file.Path)"},{"p":"com.avrix.utils","c":"YamlFile","l":"YamlFile(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"YamlFile(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.avrix.utils","c":"YamlFile","l":"YamlFile(URI)","u":"%3Cinit%3E(java.net.URI)"},{"p":"com.avrix.utils","c":"YamlFile","l":"YamlFile(URL)","u":"%3Cinit%3E(java.net.URL)"},{"p":"com.avrix.ui","c":"NVGColor","l":"YELLOW"}];updateSearchResults(); \ No newline at end of file diff --git a/docs/javadoc/overview-tree.html b/docs/javadoc/overview-tree.html index c567a56..523650e 100644 --- a/docs/javadoc/overview-tree.html +++ b/docs/javadoc/overview-tree.html @@ -404,6 +404,7 @@

    Class Hierarchy

  • com.avrix.ui.widgets.ComboBoxWidget
  • com.avrix.ui.widgets.InputTextWidget
  • +
  • com.avrix.ui.widgets.RadioButtonWidget.RadioValue
  • com.avrix.ui.widgets.ScrollbarWidget
  • com.avrix.ui.widgets.ScrollPanelWidget
      @@ -413,6 +414,7 @@

      Class Hierarchy

  • +
  • com.avrix.ui.widgets.RadioButtonWidget
  • com.avrix.ui.widgets.SliderWidget
  • diff --git a/docs/javadoc/type-search-index.js b/docs/javadoc/type-search-index.js index 6e932fb..69c73cb 100644 --- a/docs/javadoc/type-search-index.js +++ b/docs/javadoc/type-search-index.js @@ -1 +1 @@ -typeSearchIndex = [{"p":"com.avrix.enums","l":"AccessLevel"},{"p":"com.avrix.agent","l":"Agent"},{"p":"com.avrix.agent","l":"AgentLoader"},{"p":"com.avrix.agent","l":"AgentManager"},{"p":"com.avrix.agent","l":"AgentTransformer"},{"l":"All Classes and Interfaces","u":"allclasses-index.html"},{"p":"com.avrix.ui.widgets","l":"BoxLayoutWidget"},{"p":"com.avrix.ui.widgets","l":"ButtonWidget"},{"p":"com.avrix.utils","l":"ChatUtils"},{"p":"com.avrix.ui.widgets","l":"CheckboxWidget"},{"p":"com.avrix.agent","l":"ClassModifier"},{"p":"com.avrix.agent","l":"ClassModifier.ClassModifierBuilder"},{"p":"com.avrix.agent","l":"ClassTransformer"},{"p":"com.avrix.ui","l":"NVGColor.ColorAction"},{"p":"com.avrix.ui.widgets","l":"ComboBoxWidget"},{"p":"com.avrix.ui.widgets","l":"ComboBoxWidget.ComboPopupButton"},{"p":"com.avrix.commands","l":"Command"},{"p":"com.avrix.commands","l":"CommandAccessLevel"},{"p":"com.avrix.commands","l":"CommandDescription"},{"p":"com.avrix.commands","l":"CommandExecutionScope"},{"p":"com.avrix.commands","l":"CommandName"},{"p":"com.avrix.enums","l":"CommandScope"},{"p":"com.avrix.commands","l":"CommandsManager"},{"p":"com.avrix.utils","l":"Constants"},{"p":"com.avrix.enums","l":"Environment"},{"p":"com.avrix.events","l":"Event"},{"p":"com.avrix.events","l":"EventManager.EventListener"},{"p":"com.avrix.events","l":"EventManager"},{"p":"com.avrix.ui.widgets","l":"HorizontalBoxWidget"},{"p":"com.avrix.resources","l":"ImageLoader"},{"p":"com.avrix.ui.widgets","l":"InputTextWidget"},{"p":"com.avrix.ui","l":"InputWidgetHandler"},{"p":"com.avrix.logs","l":"IsolatedConsoleWriter"},{"p":"com.avrix.utils","l":"IsoObjectUtils"},{"p":"com.avrix.enums","l":"KeyEventType"},{"p":"com.avrix.ui.widgets","l":"LabelWidget"},{"p":"com.avrix","l":"Launcher"},{"p":"com.avrix.logs","l":"LineReadingOutputStream"},{"p":"com.avrix.lua","l":"LuaExposer"},{"p":"com.avrix.lua","l":"LuaManager"},{"p":"com.avrix.plugin","l":"Metadata"},{"p":"com.avrix.plugin","l":"Metadata.MetadataBuilder"},{"p":"com.avrix.ui.widgets","l":"ModalWidget"},{"p":"com.avrix.ui","l":"NVGColor"},{"p":"com.avrix.ui","l":"NVGContext"},{"p":"com.avrix.ui","l":"NVGDrawer"},{"p":"com.avrix.ui","l":"NVGFont"},{"p":"com.avrix.events","l":"OnAcceptedFactionInviteEvent"},{"p":"com.avrix.events","l":"OnAcceptedSafehouseInviteEvent"},{"p":"com.avrix.events","l":"OnAcceptedTradeEvent"},{"p":"com.avrix.events","l":"OnAcceptInviteEvent"},{"p":"com.avrix.events","l":"OnAddForageDefsEvent"},{"p":"com.avrix.events","l":"OnAddIncomingEvent"},{"p":"com.avrix.events","l":"OnAddMessageEvent"},{"p":"com.avrix.events","l":"OnAddXPEvent"},{"p":"com.avrix.events","l":"OnAdminMessageEvent"},{"p":"com.avrix.events","l":"OnAIStateChangeEvent"},{"p":"com.avrix.events","l":"OnAmbientSoundEvent"},{"p":"com.avrix.events","l":"OnCGlobalObjectSystemInitEvent"},{"p":"com.avrix.events","l":"OnChallengeQueryEvent"},{"p":"com.avrix.events","l":"OnChangeLanguageEvent"},{"p":"com.avrix.events","l":"OnChangeWeatherEvent"},{"p":"com.avrix.events","l":"OnCharacterCollideEvent"},{"p":"com.avrix.events","l":"OnCharacterDeathEvent"},{"p":"com.avrix.events","l":"OnChatMessageProcessedEvent"},{"p":"com.avrix.events","l":"OnChatWindowInitEvent"},{"p":"com.avrix.events","l":"OnClientCommandEvent"},{"p":"com.avrix.events","l":"OnClimateManagerInitEvent"},{"p":"com.avrix.events","l":"OnClimateTickDebugEvent"},{"p":"com.avrix.events","l":"OnClimateTickEvent"},{"p":"com.avrix.events","l":"OnClothingUpdatedEvent"},{"p":"com.avrix.events","l":"OnConnectedEvent"},{"p":"com.avrix.events","l":"OnConnectFailedEvent"},{"p":"com.avrix.events","l":"OnConnectionStateChangedEvent"},{"p":"com.avrix.events","l":"OnContainerUpdateEvent"},{"p":"com.avrix.events","l":"OnCoopJoinFailedEvent"},{"p":"com.avrix.events","l":"OnCoopServerMessageEvent"},{"p":"com.avrix.events","l":"OnCreateLivingCharacterEvent"},{"p":"com.avrix.events","l":"OnCreatePlayerEvent"},{"p":"com.avrix.events","l":"OnCreateSurvivorEvent"},{"p":"com.avrix.events","l":"OnCreateUIEvent"},{"p":"com.avrix.events","l":"OnCustomUIKeyEvent"},{"p":"com.avrix.events","l":"OnCustomUIKeyPressedEvent"},{"p":"com.avrix.events","l":"OnCustomUIKeyReleasedEvent"},{"p":"com.avrix.events","l":"OnDawnEvent"},{"p":"com.avrix.events","l":"OnDestroyIsoThumpableEvent"},{"p":"com.avrix.events","l":"OnDeviceTextEvent"},{"p":"com.avrix.events","l":"OnDisableSearchModeEvent"},{"p":"com.avrix.events","l":"OnDisconnectEvent"},{"p":"com.avrix.events","l":"OnDistributionMergeEvent"},{"p":"com.avrix.events","l":"OnDoSpecialTooltipEvent"},{"p":"com.avrix.events","l":"OnDoTileBuilding2Event"},{"p":"com.avrix.events","l":"OnDoTileBuilding3Event"},{"p":"com.avrix.events","l":"OnDuskEvent"},{"p":"com.avrix.events","l":"OnDynamicMovableRecipeEvent"},{"p":"com.avrix.events","l":"OnEnableSearchModeEvent"},{"p":"com.avrix.events","l":"OnEnterVehicleEvent"},{"p":"com.avrix.events","l":"OnEquipPrimaryEvent"},{"p":"com.avrix.events","l":"OnEquipSecondaryEvent"},{"p":"com.avrix.events","l":"OnEveryDaysEvent"},{"p":"com.avrix.events","l":"OnEveryHoursEvent"},{"p":"com.avrix.events","l":"OnEveryOneMinuteEvent"},{"p":"com.avrix.events","l":"OnEveryTenMinutesEvent"},{"p":"com.avrix.events","l":"OnExitVehicleEvent"},{"p":"com.avrix.events","l":"OnFETickEvent"},{"p":"com.avrix.events","l":"OnFillContainerEvent"},{"p":"com.avrix.events","l":"OnFillInventoryObjectContextMenuEvent"},{"p":"com.avrix.events","l":"OnFillSearchIconContextMenuEvent"},{"p":"com.avrix.events","l":"OnFillWorldObjectContextMenuEvent"},{"p":"com.avrix.events","l":"OnGameBootEvent"},{"p":"com.avrix.events","l":"OnGamepadConnectEvent"},{"p":"com.avrix.events","l":"OnGamepadDisconnectEvent"},{"p":"com.avrix.events","l":"OnGameStartEvent"},{"p":"com.avrix.events","l":"OnGameTimeLoadedEvent"},{"p":"com.avrix.events","l":"OnGameWindowInitializedEvent"},{"p":"com.avrix.events","l":"OnGetDBSchemaEvent"},{"p":"com.avrix.events","l":"OnGetTableResultEvent"},{"p":"com.avrix.events","l":"OnGridBurntEvent"},{"p":"com.avrix.events","l":"OnHitZombieEvent"},{"p":"com.avrix.events","l":"OnInitGlobalModDataEvent"},{"p":"com.avrix.events","l":"OnInitModdedWeatherStageEvent"},{"p":"com.avrix.events","l":"OnInitRecordedMediaEvent"},{"p":"com.avrix.events","l":"OnInitSeasonsEvent"},{"p":"com.avrix.events","l":"OnInitWorldEvent"},{"p":"com.avrix.events","l":"OnItemFallEvent"},{"p":"com.avrix.events","l":"OnJoypadActivateEvent"},{"p":"com.avrix.events","l":"OnJoypadActivateUIEvent"},{"p":"com.avrix.events","l":"OnJoypadBeforeDeactivateEvent"},{"p":"com.avrix.events","l":"OnJoypadBeforeReactivateEvent"},{"p":"com.avrix.events","l":"OnJoypadDeactivateEvent"},{"p":"com.avrix.events","l":"OnJoypadReactivateEvent"},{"p":"com.avrix.events","l":"OnJoypadRenderUIEvent"},{"p":"com.avrix.events","l":"OnKeyKeepPressedEvent"},{"p":"com.avrix.events","l":"OnKeyPressedEvent"},{"p":"com.avrix.events","l":"OnKeyStartPressedEvent"},{"p":"com.avrix.events","l":"OnLevelPerkEvent"},{"p":"com.avrix.events","l":"OnLoadedTileDefinitionsEvent"},{"p":"com.avrix.events","l":"OnLoadEvent"},{"p":"com.avrix.events","l":"OnLoadGridsquareEvent"},{"p":"com.avrix.events","l":"OnLoadMapZonesEvent"},{"p":"com.avrix.events","l":"OnLoadModDataFromServerEvent"},{"p":"com.avrix.events","l":"OnLoadRadioScriptsEvent"},{"p":"com.avrix.events","l":"OnLoadSoundBanksEvent"},{"p":"com.avrix.events","l":"OnLuaFilesLoadedEvent"},{"p":"com.avrix.events","l":"OnLuaScriptExecuteEvent"},{"p":"com.avrix.events","l":"OnMainMenuEnterEvent"},{"p":"com.avrix.events","l":"OnMechanicActionDoneEvent"},{"p":"com.avrix.events","l":"OnMiniScoreboardUpdateEvent"},{"p":"com.avrix.events","l":"OnMngInvReceiveItemsEvent"},{"p":"com.avrix.events","l":"OnModsModifiedEvent"},{"p":"com.avrix.events","l":"OnMouseDownEvent"},{"p":"com.avrix.events","l":"OnMouseMoveEvent"},{"p":"com.avrix.events","l":"OnMouseUpEvent"},{"p":"com.avrix.events","l":"OnMultiTriggerNPCEventEvent"},{"p":"com.avrix.events","l":"OnNewFireEvent"},{"p":"com.avrix.events","l":"OnNewGameEvent"},{"p":"com.avrix.events","l":"OnObjectAboutToBeRemovedEvent"},{"p":"com.avrix.events","l":"OnObjectAddedEvent"},{"p":"com.avrix.events","l":"OnObjectCollideEvent"},{"p":"com.avrix.events","l":"OnObjectLeftMouseButtonDownEvent"},{"p":"com.avrix.events","l":"OnObjectLeftMouseButtonUpEvent"},{"p":"com.avrix.events","l":"OnObjectRightMouseButtonDownEvent"},{"p":"com.avrix.events","l":"OnObjectRightMouseButtonUpEvent"},{"p":"com.avrix.events","l":"OnPlayerAttackFinishedEvent"},{"p":"com.avrix.events","l":"OnPlayerBanEvent"},{"p":"com.avrix.events","l":"OnPlayerConnectEvent"},{"p":"com.avrix.events","l":"OnPlayerDeathEvent"},{"p":"com.avrix.events","l":"OnPlayerDisconnectEvent"},{"p":"com.avrix.events","l":"OnPlayerFullyConnectedEvent"},{"p":"com.avrix.events","l":"OnPlayerKickEvent"},{"p":"com.avrix.events","l":"OnPlayerMoveEvent"},{"p":"com.avrix.events","l":"OnPlayerUnbanEvent"},{"p":"com.avrix.events","l":"OnPlayerUpdateEvent"},{"p":"com.avrix.events","l":"OnPostDistributionMergeEvent"},{"p":"com.avrix.events","l":"OnPostFloorLayerDrawEvent"},{"p":"com.avrix.events","l":"OnPostMapLoadEvent"},{"p":"com.avrix.events","l":"OnPostRenderEvent"},{"p":"com.avrix.events","l":"OnPostSaveEvent"},{"p":"com.avrix.events","l":"OnPostUIDrawEvent"},{"p":"com.avrix.events","l":"OnPostWidgetDrawEvent"},{"p":"com.avrix.events","l":"OnPreAddCatDefsEvent"},{"p":"com.avrix.events","l":"OnPreAddForageDefsEvent"},{"p":"com.avrix.events","l":"OnPreAddItemDefsEvent"},{"p":"com.avrix.events","l":"OnPreAddZoneDefsEvent"},{"p":"com.avrix.events","l":"OnPreDistributionMergeEvent"},{"p":"com.avrix.events","l":"OnPreFillInventoryObjectContextMenuEvent"},{"p":"com.avrix.events","l":"OnPreFillWorldObjectContextMenuEvent"},{"p":"com.avrix.events","l":"OnPreMapLoadEvent"},{"p":"com.avrix.events","l":"OnPressRackButtonEvent"},{"p":"com.avrix.events","l":"OnPressReloadButtonEvent"},{"p":"com.avrix.events","l":"OnPreUIDrawEvent"},{"p":"com.avrix.events","l":"OnPreWidgetDrawEvent"},{"p":"com.avrix.events","l":"OnRainStopEvent"},{"p":"com.avrix.events","l":"OnReceiveFactionInviteEvent"},{"p":"com.avrix.events","l":"OnReceiveGlobalModDataEvent"},{"p":"com.avrix.events","l":"OnReceiveItemListNetEvent"},{"p":"com.avrix.events","l":"OnReceiveSafehouseInviteEvent"},{"p":"com.avrix.events","l":"OnReceiveUserlogEvent"},{"p":"com.avrix.events","l":"OnRenderTickEvent"},{"p":"com.avrix.events","l":"OnRequestTradeEvent"},{"p":"com.avrix.events","l":"OnResetLuaEvent"},{"p":"com.avrix.events","l":"OnResolutionChangeEvent"},{"p":"com.avrix.events","l":"OnReuseGridsquareEvent"},{"p":"com.avrix.events","l":"OnRightMouseDownEvent"},{"p":"com.avrix.events","l":"OnRightMouseUpEvent"},{"p":"com.avrix.events","l":"OnSafehousesChangedEvent"},{"p":"com.avrix.events","l":"OnSaveEvent"},{"p":"com.avrix.events","l":"OnScoreboardUpdateEvent"},{"p":"com.avrix.events","l":"OnSeeNewRoomEvent"},{"p":"com.avrix.events","l":"OnSendChatCommandEvent"},{"p":"com.avrix.events","l":"OnSendConsoleCommandEvent"},{"p":"com.avrix.events","l":"OnSendCustomModDataEvent"},{"p":"com.avrix.events","l":"OnServerCommandEvent"},{"p":"com.avrix.events","l":"OnServerFinishSavingEvent"},{"p":"com.avrix.events","l":"OnServerInitializeEvent"},{"p":"com.avrix.events","l":"OnServerPingedEvent"},{"p":"com.avrix.events","l":"OnServerShutdownEvent"},{"p":"com.avrix.events","l":"OnServerStartedEvent"},{"p":"com.avrix.events","l":"OnServerStartSavingEvent"},{"p":"com.avrix.events","l":"OnServerStatisticReceivedEvent"},{"p":"com.avrix.events","l":"OnSetDefaultTabEvent"},{"p":"com.avrix.events","l":"OnSGlobalObjectSystemInitEvent"},{"p":"com.avrix.events","l":"OnSpawnRegionsLoadedEvent"},{"p":"com.avrix.events","l":"OnSteamFriendStatusChangedEvent"},{"p":"com.avrix.events","l":"OnSteamGameJoinEvent"},{"p":"com.avrix.events","l":"OnSteamRefreshInternetServersEvent"},{"p":"com.avrix.events","l":"OnSteamRulesRefreshCompleteEvent"},{"p":"com.avrix.events","l":"OnSteamServerFailedToRespond2Event"},{"p":"com.avrix.events","l":"OnSteamServerResponded2Event"},{"p":"com.avrix.events","l":"OnSteamServerRespondedEvent"},{"p":"com.avrix.events","l":"OnSteamWorkshopItemCreatedEvent"},{"p":"com.avrix.events","l":"OnSteamWorkshopItemNotCreatedEvent"},{"p":"com.avrix.events","l":"OnSteamWorkshopItemNotUpdatedEvent"},{"p":"com.avrix.events","l":"OnSteamWorkshopItemUpdatedEvent"},{"p":"com.avrix.events","l":"OnSwitchChatStreamEvent"},{"p":"com.avrix.events","l":"OnSwitchVehicleSeatEvent"},{"p":"com.avrix.events","l":"OnSyncFactionEvent"},{"p":"com.avrix.events","l":"OnTabAddedEvent"},{"p":"com.avrix.events","l":"OnTabRemovedEvent"},{"p":"com.avrix.events","l":"OnThunderEventEvent"},{"p":"com.avrix.events","l":"OnTickEvenPausedEvent"},{"p":"com.avrix.events","l":"OnTickEvent"},{"p":"com.avrix.events","l":"OnTickRenderThreadEvent"},{"p":"com.avrix.events","l":"OnTileRemovedEvent"},{"p":"com.avrix.events","l":"OnToggleSearchModeEvent"},{"p":"com.avrix.events","l":"OnTradingUIAddItemEvent"},{"p":"com.avrix.events","l":"OnTradingUIRemoveItemEvent"},{"p":"com.avrix.events","l":"OnTradingUIUpdateStateEvent"},{"p":"com.avrix.events","l":"OnTriggerNPCEventEvent"},{"p":"com.avrix.events","l":"OnUpdateIconEvent"},{"p":"com.avrix.events","l":"OnUpdateModdedWeatherStageEvent"},{"p":"com.avrix.events","l":"OnUseVehicleEvent"},{"p":"com.avrix.events","l":"OnVehicleDamageTextureEvent"},{"p":"com.avrix.events","l":"OnVehicleHornEvent"},{"p":"com.avrix.events","l":"OnViewTicketsEvent"},{"p":"com.avrix.events","l":"OnWaterAmountChangeEvent"},{"p":"com.avrix.events","l":"OnWeaponHitCharacterEvent"},{"p":"com.avrix.events","l":"OnWeaponHitTreeEvent"},{"p":"com.avrix.events","l":"OnWeaponHitXpEvent"},{"p":"com.avrix.events","l":"OnWeaponSwingEvent"},{"p":"com.avrix.events","l":"OnWeaponSwingHitPointEvent"},{"p":"com.avrix.events","l":"OnWeatherPeriodCompleteEvent"},{"p":"com.avrix.events","l":"OnWeatherPeriodStageEvent"},{"p":"com.avrix.events","l":"OnWeatherPeriodStartEvent"},{"p":"com.avrix.events","l":"OnWeatherPeriodStopEvent"},{"p":"com.avrix.events","l":"OnWidgetManagerInitEvent"},{"p":"com.avrix.events","l":"OnWorldSoundEvent"},{"p":"com.avrix.events","l":"OnZombieDeadEvent"},{"p":"com.avrix.events","l":"OnZombieUpdateEvent"},{"p":"com.avrix.ui.widgets","l":"PanelWidget"},{"p":"com.avrix.patches","l":"PatchBanSteamIDCommand"},{"p":"com.avrix.patches","l":"PatchBanUserCommand"},{"p":"com.avrix.patches","l":"PatchChatServer"},{"p":"com.avrix.patches","l":"PatchGameServer"},{"p":"com.avrix.patches","l":"PatchGameWindow"},{"p":"com.avrix.patches","l":"PatchKickUserCommand"},{"p":"com.avrix.patches","l":"PatchLuaEventManager"},{"p":"com.avrix.patches","l":"PatchLuaManager"},{"p":"com.avrix.patches","l":"PatchLuaManagerExposer"},{"p":"com.avrix.patches","l":"PatchQuitCommand"},{"p":"com.avrix.patches","l":"PatchRenderThread"},{"p":"com.avrix.patches","l":"PatchSpriteRenderer"},{"p":"com.avrix.patches","l":"PatchTranslator"},{"p":"com.avrix.patches","l":"PatchUIManager"},{"p":"com.avrix.patches","l":"PatchUnbanSteamIDCommand"},{"p":"com.avrix.patches","l":"PatchUnbanUserCommand"},{"p":"com.avrix.utils","l":"PatchUtils"},{"p":"com.avrix.patches","l":"PatchZLogger"},{"p":"com.avrix.utils","l":"PlayerUtils"},{"p":"com.avrix.plugin","l":"Plugin"},{"p":"com.avrix.plugin","l":"PluginClassLoader"},{"p":"com.avrix.plugin","l":"PluginManager"},{"p":"com.avrix.ui.widgets","l":"PopupWidget"},{"p":"com.avrix.enums","l":"Priority"},{"p":"com.avrix.resources","l":"ResourceManager"},{"p":"com.avrix.ui.widgets","l":"ScrollbarWidget"},{"p":"com.avrix.ui.widgets","l":"ScrollPanelWidget"},{"p":"com.avrix.plugin","l":"ServiceManager"},{"p":"com.avrix.ui.widgets","l":"SliderWidget"},{"p":"com.avrix.utils","l":"TextUtils"},{"p":"com.avrix.utils","l":"VersionChecker"},{"p":"com.avrix.ui.widgets","l":"VerticalBoxWidget"},{"p":"com.avrix.ui.widgets","l":"Widget"},{"p":"com.avrix.ui","l":"WidgetManager"},{"p":"com.avrix.utils","l":"WindowUtils"},{"p":"com.avrix.ui.widgets","l":"WindowWidget"},{"p":"com.avrix.utils","l":"YamlFile"}];updateSearchResults(); \ No newline at end of file +typeSearchIndex = [{"p":"com.avrix.enums","l":"AccessLevel"},{"p":"com.avrix.agent","l":"Agent"},{"p":"com.avrix.agent","l":"AgentLoader"},{"p":"com.avrix.agent","l":"AgentManager"},{"p":"com.avrix.agent","l":"AgentTransformer"},{"l":"All Classes and Interfaces","u":"allclasses-index.html"},{"p":"com.avrix.ui.widgets","l":"BoxLayoutWidget"},{"p":"com.avrix.ui.widgets","l":"ButtonWidget"},{"p":"com.avrix.utils","l":"ChatUtils"},{"p":"com.avrix.ui.widgets","l":"CheckboxWidget"},{"p":"com.avrix.agent","l":"ClassModifier"},{"p":"com.avrix.agent","l":"ClassModifier.ClassModifierBuilder"},{"p":"com.avrix.agent","l":"ClassTransformer"},{"p":"com.avrix.ui","l":"NVGColor.ColorAction"},{"p":"com.avrix.ui.widgets","l":"ComboBoxWidget"},{"p":"com.avrix.ui.widgets","l":"ComboBoxWidget.ComboPopupButton"},{"p":"com.avrix.commands","l":"Command"},{"p":"com.avrix.commands","l":"CommandAccessLevel"},{"p":"com.avrix.commands","l":"CommandDescription"},{"p":"com.avrix.commands","l":"CommandExecutionScope"},{"p":"com.avrix.commands","l":"CommandName"},{"p":"com.avrix.enums","l":"CommandScope"},{"p":"com.avrix.commands","l":"CommandsManager"},{"p":"com.avrix.utils","l":"Constants"},{"p":"com.avrix.enums","l":"Environment"},{"p":"com.avrix.events","l":"Event"},{"p":"com.avrix.events","l":"EventManager.EventListener"},{"p":"com.avrix.events","l":"EventManager"},{"p":"com.avrix.ui.widgets","l":"HorizontalBoxWidget"},{"p":"com.avrix.resources","l":"ImageLoader"},{"p":"com.avrix.ui.widgets","l":"InputTextWidget"},{"p":"com.avrix.ui","l":"InputWidgetHandler"},{"p":"com.avrix.logs","l":"IsolatedConsoleWriter"},{"p":"com.avrix.utils","l":"IsoObjectUtils"},{"p":"com.avrix.enums","l":"KeyEventType"},{"p":"com.avrix.ui.widgets","l":"LabelWidget"},{"p":"com.avrix","l":"Launcher"},{"p":"com.avrix.logs","l":"LineReadingOutputStream"},{"p":"com.avrix.lua","l":"LuaExposer"},{"p":"com.avrix.lua","l":"LuaManager"},{"p":"com.avrix.plugin","l":"Metadata"},{"p":"com.avrix.plugin","l":"Metadata.MetadataBuilder"},{"p":"com.avrix.ui.widgets","l":"ModalWidget"},{"p":"com.avrix.ui","l":"NVGColor"},{"p":"com.avrix.ui","l":"NVGContext"},{"p":"com.avrix.ui","l":"NVGDrawer"},{"p":"com.avrix.ui","l":"NVGFont"},{"p":"com.avrix.events","l":"OnAcceptedFactionInviteEvent"},{"p":"com.avrix.events","l":"OnAcceptedSafehouseInviteEvent"},{"p":"com.avrix.events","l":"OnAcceptedTradeEvent"},{"p":"com.avrix.events","l":"OnAcceptInviteEvent"},{"p":"com.avrix.events","l":"OnAddForageDefsEvent"},{"p":"com.avrix.events","l":"OnAddIncomingEvent"},{"p":"com.avrix.events","l":"OnAddMessageEvent"},{"p":"com.avrix.events","l":"OnAddXPEvent"},{"p":"com.avrix.events","l":"OnAdminMessageEvent"},{"p":"com.avrix.events","l":"OnAIStateChangeEvent"},{"p":"com.avrix.events","l":"OnAmbientSoundEvent"},{"p":"com.avrix.events","l":"OnCGlobalObjectSystemInitEvent"},{"p":"com.avrix.events","l":"OnChallengeQueryEvent"},{"p":"com.avrix.events","l":"OnChangeLanguageEvent"},{"p":"com.avrix.events","l":"OnChangeWeatherEvent"},{"p":"com.avrix.events","l":"OnCharacterCollideEvent"},{"p":"com.avrix.events","l":"OnCharacterDeathEvent"},{"p":"com.avrix.events","l":"OnChatMessageProcessedEvent"},{"p":"com.avrix.events","l":"OnChatWindowInitEvent"},{"p":"com.avrix.events","l":"OnClientCommandEvent"},{"p":"com.avrix.events","l":"OnClimateManagerInitEvent"},{"p":"com.avrix.events","l":"OnClimateTickDebugEvent"},{"p":"com.avrix.events","l":"OnClimateTickEvent"},{"p":"com.avrix.events","l":"OnClothingUpdatedEvent"},{"p":"com.avrix.events","l":"OnConnectedEvent"},{"p":"com.avrix.events","l":"OnConnectFailedEvent"},{"p":"com.avrix.events","l":"OnConnectionStateChangedEvent"},{"p":"com.avrix.events","l":"OnContainerUpdateEvent"},{"p":"com.avrix.events","l":"OnCoopJoinFailedEvent"},{"p":"com.avrix.events","l":"OnCoopServerMessageEvent"},{"p":"com.avrix.events","l":"OnCreateLivingCharacterEvent"},{"p":"com.avrix.events","l":"OnCreatePlayerEvent"},{"p":"com.avrix.events","l":"OnCreateSurvivorEvent"},{"p":"com.avrix.events","l":"OnCreateUIEvent"},{"p":"com.avrix.events","l":"OnCustomUIKeyEvent"},{"p":"com.avrix.events","l":"OnCustomUIKeyPressedEvent"},{"p":"com.avrix.events","l":"OnCustomUIKeyReleasedEvent"},{"p":"com.avrix.events","l":"OnDawnEvent"},{"p":"com.avrix.events","l":"OnDestroyIsoThumpableEvent"},{"p":"com.avrix.events","l":"OnDeviceTextEvent"},{"p":"com.avrix.events","l":"OnDisableSearchModeEvent"},{"p":"com.avrix.events","l":"OnDisconnectEvent"},{"p":"com.avrix.events","l":"OnDistributionMergeEvent"},{"p":"com.avrix.events","l":"OnDoSpecialTooltipEvent"},{"p":"com.avrix.events","l":"OnDoTileBuilding2Event"},{"p":"com.avrix.events","l":"OnDoTileBuilding3Event"},{"p":"com.avrix.events","l":"OnDuskEvent"},{"p":"com.avrix.events","l":"OnDynamicMovableRecipeEvent"},{"p":"com.avrix.events","l":"OnEnableSearchModeEvent"},{"p":"com.avrix.events","l":"OnEnterVehicleEvent"},{"p":"com.avrix.events","l":"OnEquipPrimaryEvent"},{"p":"com.avrix.events","l":"OnEquipSecondaryEvent"},{"p":"com.avrix.events","l":"OnEveryDaysEvent"},{"p":"com.avrix.events","l":"OnEveryHoursEvent"},{"p":"com.avrix.events","l":"OnEveryOneMinuteEvent"},{"p":"com.avrix.events","l":"OnEveryTenMinutesEvent"},{"p":"com.avrix.events","l":"OnExitVehicleEvent"},{"p":"com.avrix.events","l":"OnFETickEvent"},{"p":"com.avrix.events","l":"OnFillContainerEvent"},{"p":"com.avrix.events","l":"OnFillInventoryObjectContextMenuEvent"},{"p":"com.avrix.events","l":"OnFillSearchIconContextMenuEvent"},{"p":"com.avrix.events","l":"OnFillWorldObjectContextMenuEvent"},{"p":"com.avrix.events","l":"OnGameBootEvent"},{"p":"com.avrix.events","l":"OnGamepadConnectEvent"},{"p":"com.avrix.events","l":"OnGamepadDisconnectEvent"},{"p":"com.avrix.events","l":"OnGameStartEvent"},{"p":"com.avrix.events","l":"OnGameTimeLoadedEvent"},{"p":"com.avrix.events","l":"OnGameWindowInitializedEvent"},{"p":"com.avrix.events","l":"OnGetDBSchemaEvent"},{"p":"com.avrix.events","l":"OnGetTableResultEvent"},{"p":"com.avrix.events","l":"OnGridBurntEvent"},{"p":"com.avrix.events","l":"OnHitZombieEvent"},{"p":"com.avrix.events","l":"OnInitGlobalModDataEvent"},{"p":"com.avrix.events","l":"OnInitModdedWeatherStageEvent"},{"p":"com.avrix.events","l":"OnInitRecordedMediaEvent"},{"p":"com.avrix.events","l":"OnInitSeasonsEvent"},{"p":"com.avrix.events","l":"OnInitWorldEvent"},{"p":"com.avrix.events","l":"OnItemFallEvent"},{"p":"com.avrix.events","l":"OnJoypadActivateEvent"},{"p":"com.avrix.events","l":"OnJoypadActivateUIEvent"},{"p":"com.avrix.events","l":"OnJoypadBeforeDeactivateEvent"},{"p":"com.avrix.events","l":"OnJoypadBeforeReactivateEvent"},{"p":"com.avrix.events","l":"OnJoypadDeactivateEvent"},{"p":"com.avrix.events","l":"OnJoypadReactivateEvent"},{"p":"com.avrix.events","l":"OnJoypadRenderUIEvent"},{"p":"com.avrix.events","l":"OnKeyKeepPressedEvent"},{"p":"com.avrix.events","l":"OnKeyPressedEvent"},{"p":"com.avrix.events","l":"OnKeyStartPressedEvent"},{"p":"com.avrix.events","l":"OnLevelPerkEvent"},{"p":"com.avrix.events","l":"OnLoadedTileDefinitionsEvent"},{"p":"com.avrix.events","l":"OnLoadEvent"},{"p":"com.avrix.events","l":"OnLoadGridsquareEvent"},{"p":"com.avrix.events","l":"OnLoadMapZonesEvent"},{"p":"com.avrix.events","l":"OnLoadModDataFromServerEvent"},{"p":"com.avrix.events","l":"OnLoadRadioScriptsEvent"},{"p":"com.avrix.events","l":"OnLoadSoundBanksEvent"},{"p":"com.avrix.events","l":"OnLuaFilesLoadedEvent"},{"p":"com.avrix.events","l":"OnLuaScriptExecuteEvent"},{"p":"com.avrix.events","l":"OnMainMenuEnterEvent"},{"p":"com.avrix.events","l":"OnMechanicActionDoneEvent"},{"p":"com.avrix.events","l":"OnMiniScoreboardUpdateEvent"},{"p":"com.avrix.events","l":"OnMngInvReceiveItemsEvent"},{"p":"com.avrix.events","l":"OnModsModifiedEvent"},{"p":"com.avrix.events","l":"OnMouseDownEvent"},{"p":"com.avrix.events","l":"OnMouseMoveEvent"},{"p":"com.avrix.events","l":"OnMouseUpEvent"},{"p":"com.avrix.events","l":"OnMultiTriggerNPCEventEvent"},{"p":"com.avrix.events","l":"OnNewFireEvent"},{"p":"com.avrix.events","l":"OnNewGameEvent"},{"p":"com.avrix.events","l":"OnObjectAboutToBeRemovedEvent"},{"p":"com.avrix.events","l":"OnObjectAddedEvent"},{"p":"com.avrix.events","l":"OnObjectCollideEvent"},{"p":"com.avrix.events","l":"OnObjectLeftMouseButtonDownEvent"},{"p":"com.avrix.events","l":"OnObjectLeftMouseButtonUpEvent"},{"p":"com.avrix.events","l":"OnObjectRightMouseButtonDownEvent"},{"p":"com.avrix.events","l":"OnObjectRightMouseButtonUpEvent"},{"p":"com.avrix.events","l":"OnPlayerAttackFinishedEvent"},{"p":"com.avrix.events","l":"OnPlayerBanEvent"},{"p":"com.avrix.events","l":"OnPlayerConnectEvent"},{"p":"com.avrix.events","l":"OnPlayerDeathEvent"},{"p":"com.avrix.events","l":"OnPlayerDisconnectEvent"},{"p":"com.avrix.events","l":"OnPlayerFullyConnectedEvent"},{"p":"com.avrix.events","l":"OnPlayerKickEvent"},{"p":"com.avrix.events","l":"OnPlayerMoveEvent"},{"p":"com.avrix.events","l":"OnPlayerUnbanEvent"},{"p":"com.avrix.events","l":"OnPlayerUpdateEvent"},{"p":"com.avrix.events","l":"OnPostDistributionMergeEvent"},{"p":"com.avrix.events","l":"OnPostFloorLayerDrawEvent"},{"p":"com.avrix.events","l":"OnPostMapLoadEvent"},{"p":"com.avrix.events","l":"OnPostRenderEvent"},{"p":"com.avrix.events","l":"OnPostSaveEvent"},{"p":"com.avrix.events","l":"OnPostUIDrawEvent"},{"p":"com.avrix.events","l":"OnPostWidgetDrawEvent"},{"p":"com.avrix.events","l":"OnPreAddCatDefsEvent"},{"p":"com.avrix.events","l":"OnPreAddForageDefsEvent"},{"p":"com.avrix.events","l":"OnPreAddItemDefsEvent"},{"p":"com.avrix.events","l":"OnPreAddZoneDefsEvent"},{"p":"com.avrix.events","l":"OnPreDistributionMergeEvent"},{"p":"com.avrix.events","l":"OnPreFillInventoryObjectContextMenuEvent"},{"p":"com.avrix.events","l":"OnPreFillWorldObjectContextMenuEvent"},{"p":"com.avrix.events","l":"OnPreMapLoadEvent"},{"p":"com.avrix.events","l":"OnPressRackButtonEvent"},{"p":"com.avrix.events","l":"OnPressReloadButtonEvent"},{"p":"com.avrix.events","l":"OnPreUIDrawEvent"},{"p":"com.avrix.events","l":"OnPreWidgetDrawEvent"},{"p":"com.avrix.events","l":"OnRainStopEvent"},{"p":"com.avrix.events","l":"OnReceiveFactionInviteEvent"},{"p":"com.avrix.events","l":"OnReceiveGlobalModDataEvent"},{"p":"com.avrix.events","l":"OnReceiveItemListNetEvent"},{"p":"com.avrix.events","l":"OnReceiveSafehouseInviteEvent"},{"p":"com.avrix.events","l":"OnReceiveUserlogEvent"},{"p":"com.avrix.events","l":"OnRenderTickEvent"},{"p":"com.avrix.events","l":"OnRequestTradeEvent"},{"p":"com.avrix.events","l":"OnResetLuaEvent"},{"p":"com.avrix.events","l":"OnResolutionChangeEvent"},{"p":"com.avrix.events","l":"OnReuseGridsquareEvent"},{"p":"com.avrix.events","l":"OnRightMouseDownEvent"},{"p":"com.avrix.events","l":"OnRightMouseUpEvent"},{"p":"com.avrix.events","l":"OnSafehousesChangedEvent"},{"p":"com.avrix.events","l":"OnSaveEvent"},{"p":"com.avrix.events","l":"OnScoreboardUpdateEvent"},{"p":"com.avrix.events","l":"OnSeeNewRoomEvent"},{"p":"com.avrix.events","l":"OnSendChatCommandEvent"},{"p":"com.avrix.events","l":"OnSendConsoleCommandEvent"},{"p":"com.avrix.events","l":"OnSendCustomModDataEvent"},{"p":"com.avrix.events","l":"OnServerCommandEvent"},{"p":"com.avrix.events","l":"OnServerFinishSavingEvent"},{"p":"com.avrix.events","l":"OnServerInitializeEvent"},{"p":"com.avrix.events","l":"OnServerPingedEvent"},{"p":"com.avrix.events","l":"OnServerShutdownEvent"},{"p":"com.avrix.events","l":"OnServerStartedEvent"},{"p":"com.avrix.events","l":"OnServerStartSavingEvent"},{"p":"com.avrix.events","l":"OnServerStatisticReceivedEvent"},{"p":"com.avrix.events","l":"OnSetDefaultTabEvent"},{"p":"com.avrix.events","l":"OnSGlobalObjectSystemInitEvent"},{"p":"com.avrix.events","l":"OnSpawnRegionsLoadedEvent"},{"p":"com.avrix.events","l":"OnSteamFriendStatusChangedEvent"},{"p":"com.avrix.events","l":"OnSteamGameJoinEvent"},{"p":"com.avrix.events","l":"OnSteamRefreshInternetServersEvent"},{"p":"com.avrix.events","l":"OnSteamRulesRefreshCompleteEvent"},{"p":"com.avrix.events","l":"OnSteamServerFailedToRespond2Event"},{"p":"com.avrix.events","l":"OnSteamServerResponded2Event"},{"p":"com.avrix.events","l":"OnSteamServerRespondedEvent"},{"p":"com.avrix.events","l":"OnSteamWorkshopItemCreatedEvent"},{"p":"com.avrix.events","l":"OnSteamWorkshopItemNotCreatedEvent"},{"p":"com.avrix.events","l":"OnSteamWorkshopItemNotUpdatedEvent"},{"p":"com.avrix.events","l":"OnSteamWorkshopItemUpdatedEvent"},{"p":"com.avrix.events","l":"OnSwitchChatStreamEvent"},{"p":"com.avrix.events","l":"OnSwitchVehicleSeatEvent"},{"p":"com.avrix.events","l":"OnSyncFactionEvent"},{"p":"com.avrix.events","l":"OnTabAddedEvent"},{"p":"com.avrix.events","l":"OnTabRemovedEvent"},{"p":"com.avrix.events","l":"OnThunderEventEvent"},{"p":"com.avrix.events","l":"OnTickEvenPausedEvent"},{"p":"com.avrix.events","l":"OnTickEvent"},{"p":"com.avrix.events","l":"OnTickRenderThreadEvent"},{"p":"com.avrix.events","l":"OnTileRemovedEvent"},{"p":"com.avrix.events","l":"OnToggleSearchModeEvent"},{"p":"com.avrix.events","l":"OnTradingUIAddItemEvent"},{"p":"com.avrix.events","l":"OnTradingUIRemoveItemEvent"},{"p":"com.avrix.events","l":"OnTradingUIUpdateStateEvent"},{"p":"com.avrix.events","l":"OnTriggerNPCEventEvent"},{"p":"com.avrix.events","l":"OnUpdateIconEvent"},{"p":"com.avrix.events","l":"OnUpdateModdedWeatherStageEvent"},{"p":"com.avrix.events","l":"OnUseVehicleEvent"},{"p":"com.avrix.events","l":"OnVehicleDamageTextureEvent"},{"p":"com.avrix.events","l":"OnVehicleHornEvent"},{"p":"com.avrix.events","l":"OnViewTicketsEvent"},{"p":"com.avrix.events","l":"OnWaterAmountChangeEvent"},{"p":"com.avrix.events","l":"OnWeaponHitCharacterEvent"},{"p":"com.avrix.events","l":"OnWeaponHitTreeEvent"},{"p":"com.avrix.events","l":"OnWeaponHitXpEvent"},{"p":"com.avrix.events","l":"OnWeaponSwingEvent"},{"p":"com.avrix.events","l":"OnWeaponSwingHitPointEvent"},{"p":"com.avrix.events","l":"OnWeatherPeriodCompleteEvent"},{"p":"com.avrix.events","l":"OnWeatherPeriodStageEvent"},{"p":"com.avrix.events","l":"OnWeatherPeriodStartEvent"},{"p":"com.avrix.events","l":"OnWeatherPeriodStopEvent"},{"p":"com.avrix.events","l":"OnWidgetManagerInitEvent"},{"p":"com.avrix.events","l":"OnWorldSoundEvent"},{"p":"com.avrix.events","l":"OnZombieDeadEvent"},{"p":"com.avrix.events","l":"OnZombieUpdateEvent"},{"p":"com.avrix.ui.widgets","l":"PanelWidget"},{"p":"com.avrix.patches","l":"PatchBanSteamIDCommand"},{"p":"com.avrix.patches","l":"PatchBanUserCommand"},{"p":"com.avrix.patches","l":"PatchChatServer"},{"p":"com.avrix.patches","l":"PatchGameServer"},{"p":"com.avrix.patches","l":"PatchGameWindow"},{"p":"com.avrix.patches","l":"PatchKickUserCommand"},{"p":"com.avrix.patches","l":"PatchLuaEventManager"},{"p":"com.avrix.patches","l":"PatchLuaManager"},{"p":"com.avrix.patches","l":"PatchLuaManagerExposer"},{"p":"com.avrix.patches","l":"PatchQuitCommand"},{"p":"com.avrix.patches","l":"PatchRenderThread"},{"p":"com.avrix.patches","l":"PatchSpriteRenderer"},{"p":"com.avrix.patches","l":"PatchTranslator"},{"p":"com.avrix.patches","l":"PatchUIManager"},{"p":"com.avrix.patches","l":"PatchUnbanSteamIDCommand"},{"p":"com.avrix.patches","l":"PatchUnbanUserCommand"},{"p":"com.avrix.utils","l":"PatchUtils"},{"p":"com.avrix.patches","l":"PatchZLogger"},{"p":"com.avrix.utils","l":"PlayerUtils"},{"p":"com.avrix.plugin","l":"Plugin"},{"p":"com.avrix.plugin","l":"PluginClassLoader"},{"p":"com.avrix.plugin","l":"PluginManager"},{"p":"com.avrix.ui.widgets","l":"PopupWidget"},{"p":"com.avrix.enums","l":"Priority"},{"p":"com.avrix.ui.widgets","l":"RadioButtonWidget"},{"p":"com.avrix.ui.widgets","l":"RadioButtonWidget.RadioValue"},{"p":"com.avrix.resources","l":"ResourceManager"},{"p":"com.avrix.ui.widgets","l":"ScrollbarWidget"},{"p":"com.avrix.ui.widgets","l":"ScrollPanelWidget"},{"p":"com.avrix.plugin","l":"ServiceManager"},{"p":"com.avrix.ui.widgets","l":"SliderWidget"},{"p":"com.avrix.utils","l":"TextUtils"},{"p":"com.avrix.utils","l":"VersionChecker"},{"p":"com.avrix.ui.widgets","l":"VerticalBoxWidget"},{"p":"com.avrix.ui.widgets","l":"Widget"},{"p":"com.avrix.ui","l":"WidgetManager"},{"p":"com.avrix.utils","l":"WindowUtils"},{"p":"com.avrix.ui.widgets","l":"WindowWidget"},{"p":"com.avrix.utils","l":"YamlFile"}];updateSearchResults(); \ No newline at end of file diff --git a/examples/client-plugin/src/main/java/com/avrix/example/Main.java b/examples/client-plugin/src/main/java/com/avrix/example/Main.java index cd4fe0e..2c1554b 100644 --- a/examples/client-plugin/src/main/java/com/avrix/example/Main.java +++ b/examples/client-plugin/src/main/java/com/avrix/example/Main.java @@ -105,6 +105,15 @@ public void onInitialize() { cbw.addValue("####"); vb.addChild(cbw); + RadioButtonWidget rbw = new RadioButtonWidget(0, 0, 300, 300, false, (index, value) -> { + System.out.println("Radio #" + index + " value: " + value); + }); + rbw.addRadio("Option 1"); + rbw.addRadio("Option 2"); + rbw.addRadio("Option 3"); + rbw.resizeToContent(); + vb.addChild(rbw); + root.addToScreen(); } } \ No newline at end of file diff --git a/src/main/java/com/avrix/ui/widgets/RadioButtonWidget.java b/src/main/java/com/avrix/ui/widgets/RadioButtonWidget.java new file mode 100644 index 0000000..63babb8 --- /dev/null +++ b/src/main/java/com/avrix/ui/widgets/RadioButtonWidget.java @@ -0,0 +1,450 @@ +package com.avrix.ui.widgets; + +import com.avrix.ui.NVGColor; +import com.avrix.ui.NVGDrawer; +import org.joml.Vector2f; + +import java.util.List; +import java.util.concurrent.CopyOnWriteArrayList; +import java.util.function.BiConsumer; +import java.util.function.Consumer; + +/** + * A {@link Widget} that represents a set of radio buttons. + * The radio buttons can be arranged either horizontally or vertically. + */ +public class RadioButtonWidget extends Widget { + /** + * The font name used to render the text in the radio buttons. + */ + protected String fontName = "Montserrat-Regular"; + + /** + * The font size used to render the text in the radio buttons. + */ + protected int fontSize = 12; + + /** + * The index of the currently selected radio button. + */ + protected int valueIndex = -1; + + /** + * The offset between radio buttons. + */ + protected int offset = 5; + + /** + * The radius of the circles representing the radio buttons. + */ + protected int circleRadius = 8; + + /** + * The height of each radio button. + */ + protected int radioHeight = 20; + + /** + * The width of each radio button. + */ + protected int radioWidth = 100; + + /** + * Whether the radio buttons are arranged horizontally. + */ + protected boolean horizontal; + + /** + * The list of {@link RadioValue} objects representing the radio button options. + */ + protected List values = new CopyOnWriteArrayList<>(); + + /** + * The action to perform when the selected radio button changes. + */ + protected BiConsumer onChangeAction; + + /** + * The color of the text in the radio buttons. + */ + protected NVGColor textColor = NVGColor.WHITE; + + /** + * The color used to accent the selected radio button. + */ + protected NVGColor accentColor = new NVGColor("#2ecc71"); + + /** + * The color of the circles representing the radio buttons. + */ + protected NVGColor circleColor = new NVGColor("#2c3e50"); + + /** + * Constructs a {@link RadioButtonWidget} with the specified position, size, and arrangement. + * + * @param x the x-coordinate of the {@link Widget} + * @param y the y-coordinate of the {@link Widget} + * @param width the width of the {@link Widget} + * @param height the height of the {@link Widget} + * @param horizontal whether the radio buttons are arranged horizontally + * @param onChangeAction the action to perform when the selected radio button changes + */ + public RadioButtonWidget(int x, int y, int width, int height, boolean horizontal, BiConsumer onChangeAction) { + super(x, y, width, height); + this.horizontal = horizontal; + this.onChangeAction = onChangeAction; + } + + /** + * Resizes the {@link RadioButtonWidget} to fit its content based on the arrangement. + * Adjusts the width and height according to the number of radio buttons and their dimensions. + */ + public void resizeToContent() { + width = horizontal ? getChildren().size() * (radioWidth + offset) - offset : radioWidth; + height = horizontal ? radioHeight : getChildren().size() * (radioHeight + offset) - offset; + } + + /** + * Adds a new radio button to the {@link RadioButtonWidget}. + * + * @param titleText the text to display on the new radio button + */ + public void addRadio(String titleText) { + int radioX = horizontal ? getChildren().size() * (radioWidth + offset) : 0; + int radioY = horizontal ? 0 : getChildren().size() * (radioHeight + offset); + + RadioValue radioValue = new RadioValue(titleText, radioX, radioY, (value) -> { + for (int i = 0; i < values.size(); i++) { + RadioValue radio = values.get(i); + boolean selected = radio == value; + radio.selected = selected; + if (selected) { + valueIndex = i; + } + } + onChangeAction.accept(valueIndex, value.value); + }); + + values.add(radioValue); + addChild(radioValue); + } + + /** + * Returns the list of {@link RadioValue} objects representing the radio button options. + * + * @return the list of {@link RadioValue} objects + */ + public final List getValues() { + return values; + } + + /** + * Retrieves the text of the currently selected radio button. + * + * @return the text of the currently selected radio button, or {@code null} if no radio button is selected + */ + public final String getValueText() { + return getValueText(valueIndex); + } + + /** + * Retrieves the text of the radio button at the specified index. + * + * @param index the index of the radio button whose text is to be retrieved + * @return the text of the radio button at the specified index, or {@code null} if the index is out of bounds + */ + public final String getValueText(int index) { + return values.size() <= index ? null : values.get(index).value; + } + + /** + * Retrieves the index of the currently selected radio button. + * + * @return the index of the currently selected radio button, or {@code -1} if no radio button is selected + */ + public final int getValueIndex() { + return valueIndex; + } + + /** + * Returns the font name used to render the text in the radio buttons. + * + * @return the font name + */ + public final String getFontName() { + return fontName; + } + + /** + * Sets the font name used to render the text in the radio buttons. + * + * @param fontName the font name + */ + public final void setFontName(String fontName) { + this.fontName = fontName; + } + + /** + * Returns the font size used to render the text in the radio buttons. + * + * @return the font size + */ + public final int getFontSize() { + return fontSize; + } + + /** + * Sets the font size used to render the text in the radio buttons. + * + * @param fontSize the font size + */ + public final void setFontSize(int fontSize) { + this.fontSize = fontSize; + } + + /** + * Returns the offset between radio buttons. + * + * @return the offset + */ + public final int getOffset() { + return offset; + } + + /** + * Sets the offset between radio buttons. + * + * @param offset the offset + */ + public final void setOffset(int offset) { + this.offset = offset; + } + + /** + * Returns the radius of the circles representing the radio buttons. + * + * @return the circle radius + */ + public final int getCircleRadius() { + return circleRadius; + } + + /** + * Sets the radius of the circles representing the radio buttons. + * + * @param circleRadius the circle radius + */ + public final void setCircleRadius(int circleRadius) { + this.circleRadius = circleRadius; + } + + /** + * Returns the height of each radio button. + * + * @return the radio button height + */ + public final int getRadioHeight() { + return radioHeight; + } + + /** + * Sets the height of each radio button. + * + * @param radioHeight the radio button height + */ + public final void setRadioHeight(int radioHeight) { + this.radioHeight = radioHeight; + } + + /** + * Returns the width of each radio button. + * + * @return the radio button width + */ + public final int getRadioWidth() { + return radioWidth; + } + + /** + * Sets the width of each radio button. + * + * @param radioWidth the radio button width + */ + public final void setRadioWidth(int radioWidth) { + this.radioWidth = radioWidth; + } + + /** + * Returns the color of the text in the radio buttons. + * + * @return the text color + */ + public final NVGColor getTextColor() { + return textColor; + } + + /** + * Sets the color of the text in the radio buttons. + * + * @param textColor the text color + */ + public final void setTextColor(NVGColor textColor) { + this.textColor = textColor; + } + + /** + * Returns the color used to accent the selected radio button. + * + * @return the accent color + */ + public final NVGColor getAccentColor() { + return accentColor; + } + + /** + * Sets the color used to accent the selected radio button. + * + * @param accentColor the accent color + */ + public final void setAccentColor(NVGColor accentColor) { + this.accentColor = accentColor; + } + + /** + * Returns the color of the circles representing the radio buttons. + * + * @return the circle color + */ + public final NVGColor getCircleColor() { + return circleColor; + } + + /** + * Sets the color of the circles representing the radio buttons. + * + * @param circleColor the circle color + */ + public final void setCircleColor(NVGColor circleColor) { + this.circleColor = circleColor; + } + + /** + * Renders the {@link Widget}. This implementation does not perform rendering; + * rendering is handled by the nested {@link RadioValue} class. + */ + @Override + public void render() { + } + + /** + * Represents a single radio button within the {@link RadioButtonWidget}. + */ + public class RadioValue extends PanelWidget { + /** + * The text displayed on the radio button. + */ + protected String value; + + /** + * The action to perform when the radio button is clicked. + */ + protected Consumer onClickAction; + + /** + * Whether the radio button is currently selected. + */ + protected boolean selected = false; + + /** + * Whether the radio button is currently pressed. + */ + protected boolean pressed = false; + + /** + * Constructs a {@link RadioValue} with the specified text, position, and click action. + * This class represents a single radio button within the {@link RadioButtonWidget}. + * + * @param value the text to be displayed on the radio button + * @param x the x-coordinate of the {@link RadioValue} within its parent {@link Widget} + * @param y the y-coordinate of the {@link RadioValue} within its parent {@link Widget} + * @param onClickAction the action to perform when the radio button is clicked + */ + public RadioValue(String value, int x, int y, Consumer onClickAction) { + super(x, y, radioWidth, radioHeight); + + this.value = value; + this.onClickAction = onClickAction; + setDrawBorder(false); + setBackgroundColor(NVGColor.TRANSPARENT); + } + + /** + * Called when the left mouse button is pressed down over the {@link Widget}. + * + * @param x relative x-coordinate of the mouse position + * @param y relative y-coordinate of the mouse position + */ + @Override + public void onLeftMouseDown(int x, int y) { + super.onLeftMouseDown(x, y); + pressed = true; + } + + /** + * Handles the left mouse button up event outside any visible {@link Widget} + * + * @param x absolute x-coordinate of the mouse position + * @param y absolute y-coordinate of the mouse position + */ + @Override + public void onLeftMouseUpOutside(int x, int y) { + super.onLeftMouseUpOutside(x, y); + + pressed = false; + } + + /** + * Called when the left mouse button is released over the {@link Widget}. + * + * @param x relative x-coordinate of the mouse position + * @param y relative y-coordinate of the mouse position + */ + @Override + public void onLeftMouseUp(int x, int y) { + super.onLeftMouseUp(x, y); + + if (pressed) { + onClickAction.accept(this); + } + + pressed = false; + } + + /** + * Renders the {@link Widget} + */ + @Override + public void render() { + super.render(); + + NVGColor newTextColor = textColor; + Vector2f textSize = NVGDrawer.getTextSize(value, fontName, fontSize); + + drawCircle(circleRadius, height / 2, circleRadius, circleColor); + + if (selected) { + drawCircle(circleRadius, height / 2, (float) circleRadius / 2, accentColor); + } + + if (hovered) { + newTextColor = accentColor.multiply(0.8f); + + if (pressed) { + newTextColor = accentColor.multiply(0.5f); + } + } + + drawText(value, fontName, circleRadius * 2 + offset, (int) ((height - textSize.y) / 2 - fontSize / 4), fontSize, newTextColor); + } + } +} \ No newline at end of file