View Single Post
Old 15-10-2005, 12:31   #2 (permalink)
arcade
TCB & Ratings projects Member, #Mythic representative
 
arcade's Avatar
 
Join Date: Jun 2004
Location: In fatza calculatorului!!
Age: 19
Posts: 218
Rep Power: 37
arcade is on a distinguished road
Send a message via Yahoo to arcade
Default

am lucrat la ceva. E ff simplu dar ar trebui sa mearga.

Code:
## aici setezi ce vrei sa zica cand se da pe canal comanda !psybnc
set psybnc {
"line 1"
"line 2"
}

## aici setezi ce vrei sa zica cand se da pe canal comanda !eggdrop
set eggdrop {
"line 1"
"line 2"
}

## aici setezi ce vrei sa zica cand se da pe canal comanda !shell
set shell {
"line 1"
"line 2"
}

## aici setezi ce vrei sa zica cand se da pe canal comanda !plata
set plata {
"line 1"
"line 2"
}


## aici setezi ce vrei sa zica cand se da pe canal cimanda !vhosts
set vhosts {
"line 1"
"line 2"
}

## aici setezi ce vrei sa zica cand se da pe canal comanda !contact
set contact {
"line 1"
"line 2"
}








bind pub - !psybnc pub:psybnc
proc pub:psybnc {nick uhost hand chan text} {
global psybnc
foreach line $psybnc { puthelp "NOTICE $nick :$line" }
}

bind pub - !eggdrop pub:eggdrop
proc pub:eggdrop {nick uhost hand chan text} {
global eggdrop
foreach line $eggdrop { puthelp "NOTICE $nick :$line" }
}

bind pub - !shell pub:shell
proc pub:shell {nick uhost hand chan text} {
global shell
foreach line $shell { puthelp "NOTICE $nick :$line" }
}

bind pub - !plata pub:plata
proc pub:plata {nick uhost hand chan text} {
global plata
foreach line $plata { puthelp "NOTICE $nick :$line" }
}


bind pub - !vhosts pub:vhosts
proc pub:vhosts {nick uhost hand chan text} {
global vhosts
foreach line $vhosts { puthelp "NOTICE $nick :$line" }
}


bind pub - !contact pub:contact
proc pub:contact {nick uhost hand chan text} {
global contact
foreach line $contact { puthelp "NOTICE $nick :$line" }
}

daca apar probleme dai reply aci cu eroarea

si cine se pricepe sa faca un antiflood il rog sa posteze k sa vad si eu cum se face si k sa nu riscam sa supunem botul lui UltraS99 la flood
arcade is offline   Reply With Quote