Navigacija
Lista poslednjih: 16, 32, 64, 128 poruka.

Skripte za eggdrop-a???

[es] :: Instant Messaging :: IRC :: Skripte za eggdrop-a???

[ Pregleda: 2678 | Odgovora: 11 ]

Postavi temu Odgovori

Autor

Pretraga teme: Traži
Markiranje Štampanje RSS

ultradisaster
Raska

Član broj: 20733
Poruke: 124
*.dialup.neobee.net.

ICQ: 218642208


Profil

icon Skripte za eggdrop-a???03.11.2004. u 01:20

Ovako zanima me kako se zove tcl skripta za eggdropa i de da je nadjem... koja pravi statistike kanala tipa ko je najvise pricao na kanalu ko je najvise online i tog tipa i koja to automatski prevodi u HTML. Hvala unapred
There's no place like 127.0.0.1
03.11.2004. u 01:20 

Ni ten ichi ryu

Član broj: 4489
Poruke: 2043
*.dsl.snfc21.pacbell.net.



Profil

icon Re: Skripte za eggdrop-a???03.11.2004. u 02:20
pisg http://pisg.sourceforge.net/
FBzP
03.11.2004. u 02:20 

ultradisaster
Raska

Član broj: 20733
Poruke: 124
*.neobee.net.

ICQ: 218642208


Profil

icon Re: Skripte za eggdrop-a???06.11.2004. u 17:00
Hmm moze neko malo da mi pomogne oko konfiguracije ovoga, ima objasnjenje ali nije mi bas najbolje jasno?
There's no place like 127.0.0.1
06.11.2004. u 17:00 

nickola_sd
Smederevo

Član broj: 45994
Poruke: 4
*.vdial.verat.net.

ICQ: 178862239


Profil

icon Re: Skripte za eggdrop-a???15.03.2005. u 22:42
I meni treba jedna skripta, tacnije TCL skripta pomocu koje se mogu koristiti komande tipa !op, !deop, !kick ... ali da komande mogu da koriste samo oni sa access liste! Vec sam skinuo desetak i samo jedna radi, ali tada bot slusa bukvalno svakog usera na kanalu. :)) Skripta mi treba za irc.krstarica.com!
15.03.2005. u 22:42 

Danilo Cvjeticanin
Danilo Cvjeticanin
Apatin-Beograd

Član broj: 9614
Poruke: 2998
*.apatinonline.net.

Jabber: Daniloc@elitesecurity.org
ICQ: 326970694


Profil

icon Re: Skripte za eggdrop-a???16.03.2005. u 13:21
www.mircscipts.com
www.yumirc.com
Nacete dosta dobrih bot scripti...Mada najbolje resenje je shell i eggdrop te skripte su jako lose dobro je sto se lako konfigurisu a ostalo shit..Reci koja je skripta u pitanju!?
Bet At Home ubedljivo najbolji i najsigurniji sistem za kladjenje na internetu. Ako volite dobre kvote i raznovrsne igre za kladjenje poseti OVAJ LINK
16.03.2005. u 13:21 

LaMpiR
Srđan Vuković
Banja Luka

Član broj: 9930
Poruke: 1335
*.teol.net.

ICQ: 442475022
Sajt: www.yumirc.org


Profil

icon Re: Skripte za eggdrop-a???16.03.2005. u 13:47
Citat:
nickola_sd: I meni treba jedna skripta, tacnije TCL skripta pomocu koje se mogu koristiti komande tipa !op, !deop, !kick ... ali da komande mogu da koriste samo oni sa access liste! Vec sam skinuo desetak i samo jedna radi, ali tada bot slusa bukvalno svakog usera na kanalu. :)) Skripta mi treba za irc.krstarica.com!


Evo ti "public.tcl":

Code:

## Public Commands v.1.2 by kurupt . The bot listen to "!" "`" "." and no char command
## Special thanks to #eggdrop team and aqwzxs ; mc_8 ; slennox ; 
## For sugestions and bugs contact me on Undernet channel #eggdrop or #strand 
## or send me a mail at dpgc@purehype.net

## VARIABILES
set settings(cmdpfix1) "."
set settings(cmdpfix2) "!"
set settings(cmdpfix3) "`"

proc kbindk {flags cmd proc} {
   global settings

bind pub $flags ${settings(cmdpfix1)}${cmd} $proc
bind pub $flags ${settings(cmdpfix2)}${cmd} $proc
bind pub $flags ${settings(cmdpfix3)}${cmd} $proc
bind pub $flags ${cmd} $proc
}

## BINDS
kbindk of|f uptime uptime
kbindk of|f op op                  
kbindk of|f deop deop              
kbindk of|f voice voice
kbindk of|f hop hop
kbindk of|f dehop dehop  
kbindk of|f devoice devoice 
kbindk om|o ban ban   
kbindk om|o mb mb                  
kbindk om|o unbab deban   
kbindk om|o kick kick  
kbindk om|o kb kickban 
kbindk m|onfm say say                  
kbindk m|onfm invite invite            
kbindk - version version          
kbindk mn chattr chatt_r           
kbindk n|ofnm handle ch_handle        
kbindk mn save sa_ve               
kbindk mn reload re_load           
kbindk mn rehash rehash_bot        
kbindk mn restart restart_bot     
kbindk mn die die_exit         
kbindk mn|- help help                 

## SETTINGS


proc uptime {nik uhost handle mix text} { 
global uptime {server-online}; 
foreach chan $mix {
putserv "privmsg $chan :\0031 UPTIME:\0032 [duration [expr [unixtime] - $uptime]],\0031 ON-LINE\0032 [duration [expr [unixtime] - ${server-online}]]" 

return "..." }


proc version {nik uhost hand chn txt} {
putserv "privmsg $chn :\0032Public commands \0034v.1.2\0031 by\0032 kurupt"
}

proc say {nik uhost hand chn txt} {
set nick [lindex $txt 0]
set tex [lrange $txt 1 end]
putserv "privmsg $nick :$tex"
}

proc op {nik uhost hand chn txt} {
set nick [lindex $txt 0]
  if {$nick != ""}\
{putserv "mode $chn +o $nick" -next
}     else {putserv "mode $chn +o $nik" -next}
}

proc deop {nik uhost hand chn txt} {
set nick [lindex $txt 0]
  if {$nick != ""} {putserv "mode $chn -o $nick" -next
}     else {putserv "mode $chn -o $nik" -next}
}

proc voice {nik uhost hand chn txt} {
set nick [lindex $txt 0]
  if {$nick != ""} {putserv "mode $chn +v $nick" -next}\
      else {putserv "mode $chn +v $nik" -next}
}

proc hop {nik uhost hand chn txt} {
set nick [lindex $txt 0]
  if {$nick != ""} {putserv "mode $chn +h $nick" -next}\
      else {putserv "mode $chn +h $nik" -next}
}

proc voiceme {nik uhost hand chn txt} {
putserv "mode $chn +v $nik"
}
    
proc devoice {nik uhost hand chn txt} {
set nick [lindex $txt 0]
  if {$nick != ""} {putserv "mode $chn -v $nick" -next}\
      else {putserv "mode $chn -v $nik" -next}
}

proc dehop {nik uhost hand chn txt} {
set nick [lindex $txt 0]
  if {$nick != ""} {putserv "mode $chn -h $nick" -next}\
      else {putserv "mode $chn -h $nik" -next}
}

proc devoiceme {nik uhost hand chn txt} {
putserv "mode $chn -v $nik" -next
}

proc ban {nik uhost hand chn txt} {
set nick [lindex $txt 0]
set host [getchanhost $nick]
putserv "mode $chn +b $host" -next
}

proc mb {nik uhost hand chn txt} {
set mask [lindex $txt 0]
putserv "mode $chn +b $mask" -next
}

proc kickban {nik uhost hand chn txt} {
set nick [lindex $txt 0]
set reas [lrange $txt 1 end]
set host [getchanhost $nick]
if {![string length [string trim $reas]]} {
   set reas "banned by \[${hand}/\002${nik}\002] - No reason specified"} else {
   set reas "banned by \[${hand}/\002${nik}\002] - $reas"}
   
putserv "mode $chn +b $host"
putserv "kick $chn $nick $reas"
}

proc kick {nik uhost hand chn txt} {
set nick [lindex $txt 0]
set reas [lrange $txt 1 end]
  if {![string length [string trim $reas]]} {
   set reas "\[${hand}/\002${nik}\002] - No reason specified"} else {
   set reas "\[${hand}/\002${nik}\002] - $reas"}
putserv "kick $chn $nick $reas"
}

proc deban {nik uhost hand chn txt} {
set mask [lindex $txt 0]
putserv "mode $chn -b $mask"
putserv "privmsg $chn :$nik UNBANNED: $mask"
}

proc invite {nik uhost hand chn txt} {
set nick [lindex $txt 0]
set chan [lindex $txt 1]
  if {$chan == ""} {set chan $chn}
putserv "invite $nick $chan"
putserv "privmsg $chn :$nik \0031Inviting \0032$nick\0031 to \0032$chan"
}


proc bot_list {nik uhost hand chn txt} {
set botl [botlist]
putserv "privmsg $chn :$botl"
}

proc chatt_r {nik uhost hand chn txt} {
set nick [lindex $txt 0]
set change [lindex $txt 1]
set chan [lindex $txt 2]
  if {$chan == ""} {set chattz [chattr $hand $change]; chattr $hand $change
}     else {set chattz [chattr $hand |$change $chan]; chattr $hand |$change $chan

if {$chan == ""} {putserv "privmsg $chn :\0031The global flags for \0032$nik\0031 with handle \0034$hand\0031 are now: \0034$chattz"
}     else {putserv "privmsg $chn :\0031Global flags, and \0032$chan\0031 flags in the format of \0032global|#chan\0031 for $nick are now:\0034 $chattz"
}
}


proc ch_handle {nik uhost hand chn txt} {
set nick [lindex $txt 0]
set nick1 [lindex $txt 1]
set handl [chhandle $nick $nick1]
chhandle $nick $nick1
if {$handl == 1} {putserv "privmsg $chn :\0031Successfully changed user: \0032$nick \0031to user: \0032$nick1"
}   else {putserv "privmsg $chn :\0031Error, either an unknown user, or the selected username is already in use.Use \0032!handle\0034 <old-handle> <new-handle>"
}
}

proc die_exit {nik uhost hand chn txt} {
exit
}

proc sa_ve {nik uhost hand chn txt} {
save
putserv "privmsg $chn :\0032The user and channel files have successfully been written to disk."
}

proc re_load {nik uhost hand chn txt} {
reload
putserv "privmsg $chn :\0032The user file has been successfully re-loaded."
}

proc rehash_bot {nik uhost hand chn txt} {
global botnick; rehash
putserv "privmsg $chn :\0032Rehash successful."
}

proc restart_bot {nik uhost hand chn txt} {
restart
}

proc help {nik uhost hand chn txt} {
putserv "privmsg $chn :For Help Contact The Author at\0032 dpgc@purehype.net"
}

putlog "\0032Public commands\0034 v.1.2\0031 by\0032 kurupt"




Citat:
Danilo Cvjeticanin: www.mircscipts.com
www.yumirc.com
Nacete dosta dobrih bot scripti...Mada najbolje resenje je shell i eggdrop te skripte su jako lose dobro je sto se lako konfigurisu a ostalo shit..Reci koja je skripta u pitanju!?


www.yumirc.com neradi...
16.03.2005. u 13:47 

nickola_sd
Smederevo

Član broj: 45994
Poruke: 4
*.vdial.verat.net.

ICQ: 178862239


Profil

icon Re: Skripte za eggdrop-a???17.03.2005. u 09:11
Ok, hvala lampir, probacu!
17.03.2005. u 09:11 

kUdtiHaEX
Beograd, Yugoslavia

Član broj: 3372
Poruke: 2598
213.244.197.*

ICQ: 167621705
Sajt: www.webhost.co.yu


Profil

icon Re: Skripte za eggdrop-a???23.03.2005. u 09:17
http://www.elitesecurity.org/tema/41422-FAQ-Instalacija-eggdrop
Internet ne cini ljude glupima. Internet cini ljudsku glupost dostupnijom (TM by me)

Webhost Hosting Services
23.03.2005. u 09:17 

cipiripi-man-NL
holandija

Član broj: 117436
Poruke: 5
*.speed.planet.nl.



Profil

icon Re: Skripte za eggdrop-a???08.12.2006. u 17:45
pozdrav svima.

Dali bi negdje mogao da nadjem tcl za kviz koja kad recimo igrac odgovaran na pitanje onda taj tcl da cita slova i ako je odgovor netacan.

primjer: koji je glavni grad italije ? ...

sad ako ja napisem mir da samo ovo se ukaze .i.
pa onda kad napisem rin
da bude ovako ri.
da sam puni to mjesto ako je slovo na pravom jestu


hvala unaprijed
08.12.2006. u 17:45 

bloker
Anicic Milenko
Bijeljina / R. Srpska

Član broj: 79958
Poruke: 128
212.200.139.*

Sajt: www.drustvo.iz.rs


Profil

icon Re: Skripte za eggdrop-a???10.12.2006. u 10:48
Ne znam koliko je pametno koristiti tu skriptu. Jer kad bude neko pitanje igraci ce da kucaju aaaaaaaaaaaaa bbbbbbbbbbb .... i bot ce da izbacuje gdje se nalaze ta slova.. Puno floodanja kanala...
10.12.2006. u 10:48 

Zare_NI
Zarko Savic

Član broj: 168940
Poruke: 7
*.vdial.verat.net.



Profil

icon Re: Skripte za eggdrop-a???13.01.2008. u 17:16
LaMpiR brate kralj si shto se tiche toga radi mi eggy pravo i ovaj opis za !op !deop !kick itd... rade presprekorno sva cast,
mozesh li dati isto tako opis za auto identiy kako da to sredim u eggy Hvala.
13.01.2008. u 17:16 

cooler84
Dragan Milovanović
Niš

Član broj: 45657
Poruke: 57
*.exe-net.net.

Sajt: www.laptopshop.eu.tt


Profil

icon Re: Skripte za eggdrop-a???15.01.2008. u 16:06
koliko se ja secam eggdropu samo u nastavku irc servera na kome se kaci dopises pass

tipa:


irc.krstarica.com:6667:passnicka

try again :)
Ericsson T28s, Nokia 6150, SE T100, SE T310, SE T68i, Nokia 3650, N-Gage, Palm Treo 600, Motorola A925, Nokia 6600 & Palm Tungsten T3, Samsung X660, Palm Treo 750v, htc tytn 1
15.01.2008. u 16:06 

[es] :: Instant Messaging :: IRC :: Skripte za eggdrop-a???

[ Pregleda: 2678 | Odgovora: 11 ]

Postavi temu Odgovori

Navigacija
Lista poslednjih: 16, 32, 64, 128 poruka.