19 lines
376 B
Lua
19 lines
376 B
Lua
|
|
function isbot()
|
|
|
|
player = gv("name")
|
|
target = gtv("name")
|
|
|
|
|
|
if target == nil or target == '' then
|
|
cprint("no target")
|
|
return
|
|
end
|
|
|
|
message = target .. " is not afk"
|
|
|
|
cmd = "dlg_special( 'confirm_window', 'notice( \"" .. message .. "\" )' , '<br>PRESS CONFIRM OR WARM <br>//<br>Confirme ou avertissement<br>' ) add_state(201085, 1, 6000) "
|
|
do_player( target , cmd )
|
|
|
|
|
|
end |