Jump to content

[HELP] triggerClientEvent, tables


opnaiC

Recommended Posts

function startStats (player) 
    statTable = {} 
        for index, player in ipairs(getElementsByType("player")) do 
            local account = getPlayerAccount(player) 
            if account and not isGuestAccount(account) then 
                local playerName = getPlayerName(player) 
                local faction = getAccountData(account, "faction") or 0 
                local lvls = getAccountData(account, "lvl") or 0 
                table.insert(statTable,{playerName,faction,lvls}) 
            end 
        end 
        triggerClientEvent(player,"addItems", player, statTable) 
end 
addEventHandler ("onResourceStart", root, startStats) 

function addItems(statTable)         
        for i,v in pairs (statTable) do 
        windowMenuLable1 = guiCreateLabel(x*12, y*36, x*277, y*22, "Имя: "..v[1], false, windowMenu3) 
        windowMenuLable2 = guiCreateLabel(x*12, y*68, x*277, y*22, "Уровень: "..v[3], false, windowMenu3) 
        windowMenuLable3 = guiCreateLabel(x*12, y*100, x*277, y*22, "Фракция: "..v[2], false, windowMenu3) 
        end              
end 
addEvent ("addItems", true) 
addEventHandler ("addItems", root, addItems) 

Error:

q6izivx.png

What did I wrong?

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...