Matt Posted July 31, 2015 Share Posted July 31, 2015 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...) Link to comment
aka Blue Posted July 31, 2015 Share Posted July 31, 2015 Mirate bien los errores, a mi me pasó varias veces eso y puede ser una tontería. Podrías publicar el código también para ver mejor. PD: Publica solo la parte en la que da el error si tienes miedo a que te roben o cosas así. Link to comment
Matt Posted July 31, 2015 Author Share Posted July 31, 2015 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
Recommended Posts