melalui chat :
!do deal >>> maka bot akan melakukan deal
!do c halo >>> maka bot akan berkata halo
!do e heh >>> maka bot akan mengeluarkan emoticon /heh
melalui whisp :
do deal >>> maka bot akan melakukan deal
c halo >>> maka bot akan berkata halo
e heh >>> maka bot akan mengeluarkan emoticon /heh
catatan :
*bot hanya akan merespon overallAuth, atau master yang terdaftar di overallAuth.txt
*untuk command melalui public chat dibatasi hanya untuk jarak kurang dari 8 kotak saja
automacro respon {
pm /^(do|c|e) (.*)$/
exclusive 1
call {
$nick = $.lastpm
$auth = @eval (defined $::overallAuth{"$nick"} ? $::overallAuth{"$nick"}:"None")
if ($auth == 1) goto ok
goto end
:ok
if ($.lastMatch1 == c) goto chat
if ($.lastMatch1 == e) goto emot
if ($.lastMatch1 == do) goto command
stop
release all
:chat
do c $.lastMatch2
goto end
:emot
do e $.lastMatch2
goto end
:command
do $.lastMatch2
goto end
:end
release all
}
}
automacro comanda{
pubm /^!do (.*)/ 8
exclusive 1
call {
$nick = $.lastpub
$auth = @eval (defined $::overallAuth{"$nick"} ? $::overallAuth{"$nick"}:"None")
if ($auth == 1) goto ok
stop
release all
:ok
do $.lastMatch1
release all
}
}
No comments:
Post a Comment