Error in console;
My save.lua in talkactions script
rep+
PHP:
[20:23:20.622] data/talkactions/scripts/save.lua:4: attempt to call global 'isNumber' (a nil value)
[20:23:20.622] stack traceback:
[20:23:20.622] data/talkactions/scripts/save.lua:4: in function <data/talkactions/scripts/save.lua:2>
My save.lua in talkactions script
PHP:
-- [( Script edited by: DoidinMapper )] --
function onSay(cid, words, param, channel)
local saving = 0
if(isNumber(param)) then
stopEvent(saving)
save(tonumber(param) * 60 * 1000)
else
doSaveServer()
end
return true
end
function save(delay)
doSaveServer()
if(delay > 0) then
saving = addEvent(save, delay, delay)
end
end
rep+