Jump to content

[HELP] Client side table problem


Recommended Posts

Hello, I am trying to get cars from a table and output them as rows in a gui. The table "local vehicleTable = { }" is at the top of the code, but it still says that the ipairs thing expects a table but got nil... Any ideas?

Here is the code:

for key, value in ipairs(vehicleTable) do 
            local carID = getElementData(value, "WGRPG.carID") 
            local row = guiGridListAddRow(gVehs) 
            guiGridListSetItemText(gVehs, row, col, getVehicleName(value), false, false) 
            guiGridListSetItemText(gVehs, row, IDcolumn, tostring(carID), false, false) 
        end 

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...