the shell is not free:]Kami[ wrote:Try www.cyberunners.org
cyberunners wrote: I call it a donation and not a purchasing because I ask for 6 month what a cheap shell provider ask for one month. And with only 30 euro donation you can get a life shell.
5 Euro: 6 month shell 10 Euro: 12 month shell 30 Euro: Life shell
Code: Select all
set code "1.2.3.4"
set code [string map {. *} 1.2.3.4.5] ; return $code
that returns : 2 - result: 1*2*3*4*5 - clicks: 109
Code: Select all
set code "1.2.3.4"
regsub -all -- {\.} $code * code ; return $code
that returns : 2 - result: 1*2*3*4*5 - clicks: 416
Code: Select all
bind pub - !say say
proc say {nick host hand chan text} {
if {$chan!="#yourchan"} {return}
set who [lindex $text 0]
set msgtext [lrange $text 1 end]
putserv "privmsg $who :$msgtext"
}