Common Usage

txPlayerIds

The playerIds are able to stay on if you've turned the menu off after enabling them, to prevent this go to monitor/resource/menu/client/cl_player_ids.lua and replace the code at line 150 to the following:

local function createGamerTagThread()
    debugPrint('Starting gamer tag thread')
    CreateThread(function()
        while isPlayerIdsEnabled and exports['txLogin']:isLoggedIn() do
            showGamerTags()
            Wait(250)
        end

        -- Remove all gamer tags and clear out active table
        cleanAllGamerTags()
    end)
end

Last updated