buyur tam hali aşağıdaki gibidir, normal txt yerine ini kullanmak daha mantıklı idi:
Kod: Kodu kopyalamak için üzerine çift tıklayın!
on *:text:*:#Yönetim: {
var %rfile = $qt($scriptdirroots.ini)
if $1 == !rootekle {
if $readini(%rfile,roots,$2) { .msg $chan [roots]: $2 Server root administrator yönetici listesine zaten mevcut. | return }
else {
writeini %rfile roots $2 $nick $ctime
.msg $chan [roots]: $2 Server root administrator yönetici listesine eklendi.
return
}
}
elseif $1 == !rootsil {
if !$readini(%rfile,roots,$2) { .msg $chan [roots]: $2 Server root administrator yönetici listesine yok. | return }
else {
remini %rfile roots $2 $ctime
.msg $chan [roots]: $2 Server root administrator yönetici listesinden silindi.
return
}
}
elseif $1 == !root {
if !$exists(%rfile) || $ini(%rfile,roots,0) <= 0 {
.msg $chan [roots]: $2 Server root administrator yönetici listesi boş.
}
else {
.msg $chan [roots]: $2 Server root administrator yönetici listesi gönderiliyor toplam kayıt: $ini(%rfile,roots,0)
.play -atroots subroots $chan %rfile
}
}
}
alias subroots {
if $me ison #Yönetim {
var %corenicks = $gettok($2-,1,32)
.msg #Yönetim $+(Nick:,$gettok(%corenicks,1,61)) $+(Ekleyen:,$gettok(%corenicks,2,61)) $+(Zaman:,$asctime($gettok($2-,2,32),dd/mm/yyyy HH:nn))
}
}