Jump to content

Swimer

Members
  • Posts

    27
  • Joined

  • Last visited

Everything posted by Swimer

  1. In the method below I don't use my functions but still "Stack overflow" Error on 3 line function updateValue(player, key, value) if not (player == nil) then local p = getPlayerSerial(player) if players[p] == nil then players[p] = {} end players[p][key] = value end end
  2. I don't know why, but the code below gives an error "Stack overflow" (line 4) function updateValue(player, key, value) if not (player == nil) then local p if type ( player ) == "string" and #player == 32 then p = player else p = getPlayerSerial(player) end if players[p] == nil then players[p] = {} end players[p][key] = value end end
×
×
  • Create New...