I think, the random "plateia", and the random "msg" are wrong...
Please check? If are wrong, FIX?? 
:thumbup:
Code:
local plateia =
{{x=1111, y=222, z=33},
{x=4444, y=666, z=77},
{x=8888, y=999, z=11},
{x=2222, y=333, z=44},
{x=5555, y=666, z=55}}
local msg =
{"MATA!",
"PQP",
"AFF",
"LOL?",
"NOOBs"}
local funtcion plateiaArenaAreia(par)
addEvent(plateiaArenaAreia, 100, par)
if isInRange(getCreaturePosition(par.cid), {x=991, y=1067, z=7}, {x=1011, y=1087, z=7})
local rn = math.random(1, 10)
if rn > 0 and rn <= 3 then
doSendAnimatedText(plateia[math.random(#plateia)], msg[math.random(#msg)], TEXTCOLOR_ORANGE)
end
end
return TRUE
end
function onLogin(cid)
local par = {cid=cid}
addEvent(plateiaArenaAreia, 100, par)
return TRUE
end
:thumbup: