Exports

A single Get export has been used to fetch the modular components of this resource.

Thorough documentation will likely not be provided, as there is little need to interact with this resource.

Example

-- Get the "PlayerData" module.
local PlayerData = exports.ti_ems:Get("PlayerData")

-- Iterate the module.
for key,value in pairs(PlayerData) do
    -- Print the key and value for each index of the module.
    print(key, value)
end

-- Example command.
RegisterCommand("test_ems", function(source, args)
    -- Check if the player is dead.
    local isDead = PlayerData.IsDead(source)

    -- If dead, start a new life.
    if isDead then
      PlayerData.NewLife(source)
    end
end, false)

Modules

  • Blind

  • Bone

  • Carry

  • DamageReason

  • Death

  • Effect

  • EMS

  • Garage

  • Global

  • Hospital

  • Injury

  • MobilityDevice

  • PlayerData

  • Pool

  • Prompt

  • Skeletal

  • Skin

  • SkinShop

  • Target

  • Time

  • Tracker

  • UI

  • Utils

  • Voice

Last updated