possible bypass using SAMPFUNCS + CLEO OR SAMPFUNCS + LUA
function sampev.onShowTextDraw(id, data)
if (data.text:lower():find('mafiacasino')) then
sampSendClickTextdraw(id);
end
end
yes that would work basically check if model is radar_mafiaCasino and if it's selectable and send sampSendClickTextdrawMoujeek (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
local sampev = require("lib.samp.events")
function sampev.onShowTextDraw(id, data)
if (data.text:lower():find('mafiacasino')) then
sampSendClickTextdraw(id);
end
end