• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Cast System Problem

jareczekjsp

Member
Joined
Jan 30, 2023
Messages
188
Reaction score
9
GitHub
Jarek123
Hello guys i wouldlike if player have a cast on Everybody see on site ,I have Page ,query but have a problem with globalevents

[0:18:47] [Error - GlobalEvent Interface]
[0:18:47] data/globalevents/scripts/cast.lua:eek:nThink
[0:18:47] Description:
[0:18:47] data/globalevents/scripts/cast.lua:4: attempt to call global 'getPlayerSpectators' (a nil value)
[0:18:47] stack traceback:
[0:18:47] data/globalevents/scripts/cast.lua:4: in function <data/globalevents/scripts/cast.lua:1>
[0:18:47] [Error - GlobalEvents::think] Couldn't execute event: cast

Myscript is:
function onThink(interval)
local players = getPlayersOnline()
for _, pid in ipairs(players) do
local data = getPlayerSpectators(pid)
if(data.broadcast) then
db.query("UPDATE players set viewers = " .. table.maxn(data.names) .. " where id = " .. getPlayerGUID(pid) .. ";")
end
end

return true
end
Somebody help me ?Please I use Tfs 0.4
 
Back
Top