Enumerations

Some usefull enumartions. Not included in API, you can copy them from this page.

Damage groups

Damage groups used by aim_shot, aim_ack callbacks.

local e_damagegroup = {
    head = 0,
    chest = 1,
    stomach = 2,
    arm = 3,
    leg = 4
}

UI Widget types

Widget type that you can get via widget:type().

local e_widget_type = {
    checkbox = 0,
    slider_int = 1,
    slider_float = 2,
    keybind = 3,
    label = 4,
    color_picker = 5,
    combo = 6,
    multi_combo = 7,
    button = 8,
    input = 9
}

Animation layers

Animation layer indexes. You can get anim. layers via player:get_anim_layer.

Pose parameters

Pose parameter indexes.

Last updated