CLEO LUA Help Captcha Anti AFK Farm?

CLEO related

Hidend

Expert
Joined
Mar 4, 2013
Messages
665
Reaction score
50
Moujeek (BlastHX Moderator) sent me this:

Code:
function sampev.onShowTextDraw(id, data)
    if (data.text:lower():find('mafiacasino')) then
        sampSendClickTextdraw(id);
    end
end


I'm gonna try it
yes that would work basically check if model is radar_mafiaCasino and if it's selectable and send sampSendClickTextdraw
 

riley

New member
Joined
May 7, 2025
Messages
3
Reaction score
0
yes that would work basically check if model is radar_mafiaCasino and if it's selectable and send sampSendClickTextdraw

Worked

Code:
local sampev = require("lib.samp.events")
function sampev.onShowTextDraw(id, data)
    if (data.text:lower():find('mafiacasino')) then
        sampSendClickTextdraw(id);
    end
end
 
Top