This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

looking for a bot with do clanwars

Old posts that have not been replied to for several years.
Locked
S
Smed
Voice
Posts: 2
Joined: Tue Dec 07, 2004 7:10 pm

looking for a bot with do clanwars

Post by Smed »

Hello.. The topic says mutch of it that i want :D
Im looking for a script that add a to the bot and the bot dose /amsg looking for a clan for war
but i want this to work for everyone not only one clan.

something like this..

!Cw 5v5/4v4 <- and the bot says in all the channels who wants the cw and what channel thay are in like #cwchannel or something.
Anyone know where i can find one of that kind?
m
metroid
Owner
Posts: 771
Joined: Wed Jun 16, 2004 2:46 am

Post by metroid »

Have you searched the tcl archive? If you can't find one there, There probally isnt a *public* one
S
Smed
Voice
Posts: 2
Joined: Tue Dec 07, 2004 7:10 pm

Post by Smed »

MeTroiD wrote:Have you searched the tcl archive? If you can't find one there, There probally isnt a *public* one
Yes i have and i cant find a public once only private once :cry:
m
metroid
Owner
Posts: 771
Joined: Wed Jun 16, 2004 2:46 am

Post by metroid »

Then there is no such script

Code: Select all

set post(channel) "#channel"

bind PUB -|- !cw post:message

proc post:message { nickname hostname handle channel arguments } {
global post
if {![string equal -nocase $channel "$post(channel)"]} { return }
set post(mode) [lindex [split $arguments] 0]
if {$post(mode) == ""} {
putquick "NOTICE $nickname :Please use !cw <1/2/3/4v1/2/3/4> <high/medium/low>"
return 0
} else {
set post(poster) $nickname
set post(skill) [lindex [split $arguments] 1]
if {$post(skill) == ""} {
putquick "NOTICE $nickname :Please use !cw 1/2/3/4v1/2/3/4 <high/medium/low>"
} else {
foreach chan [channels] {
putserv "PRIVMSG $chan :$post(poster) is looking for a $post(mode), Skill: $post(skill)"
}
}
}
}
This is just a simple code but it should work, if you need something better i suggest you code something yourself cause i sure aren't going to do it for you :)
Locked