Auto verification

Статус
В этой теме нельзя размещать новые ответы.

MickeyMouse.cs

Новичок
Автор темы
16
0
hi guys, i have one problem , i need this Script for one RP server i need verification like on video , when i write
/verifikacija there apears an box where i have to write random numbers VIDEO ->Verification(http://sendvid.com/8yl6hf8f)
so i need only When i write /verifikacija , he reads text from box and write it and sends enter to.
that system works like Catpcha on Websites if u fail number u will get kicked.
 

ShuffleBoy

Известный
Друг
754
429
written in lua
dependencies: samp.lua
Lua:
local sampev = require 'lib.samp.events'

function sampev.onShowDialog(id,_,_,_,_,text)
    if text:find('kod: ') then
        sampSendDialogResponse(id, 0, '', text:match('kod: (%d+)'))
       return false
    end
end
 
Статус
В этой теме нельзя размещать новые ответы.