Jump to content

Pequeño problema


Matt

Recommended Posts

Hola bueno estuve revisando el debugscript y me sale este error, pero lo unico raro y es por lo que no lo entiendo es que aveces me da el error aveces no.. Es del race y al dar ese error no me sale el rankingboard ni lo de "Next map in:"

(Es el ultimo ERROR: race...)

thump_9429402mtascreen20150731135.png

Link to comment

Este seria el codigo de las lineas que dan ese problema:

  
  
------------------------------------------ 
-- Calling function from the client's side 
------------------------------------------ 
  
function callClientFunction(funcname, ...) 
    local arg = { ... } 
    if (arg[1]) then 
        for key, value in next, arg do arg[key] = tonumber(value) or value end 
    end 
    loadstring("return "..funcname)()(unpack(arg)) 
end 
addEvent("onServerCallsClientFunction", true) 
addEventHandler("onServerCallsClientFunction", resourceRoot, callClientFunction) 
  
  
  
  
  
  
  
----------------------- 
-- Call server function 
----------------------- 
  
function callServerFunction(funcname, ...) 
    local arg = { ... } 
    if (arg[1]) then 
        for key, value in next, arg do 
            if (type(value) == "number") then arg[key] = tostring(value) end 
        end 
    end 
    triggerServerEvent("onClientCallsServerFunction", resourceRoot , funcname, unpack(arg)) 
end 
  

Link to comment
  • Recently Browsing   0 members

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