Evet mümkündür adwords modulu içinde şu satırı bul ;
Kod: Kodu kopyalamak için üzerine çift tıklayın!
/*
* Can't find a better solution for killing a user due to an adword;
* using the Event system seems to be working. The problem actually
* is we shouldn't kill a user more than one time (fe. when ppl use
* multiple targets in a PRIVMSG/NOTICE).
*/
strcpy(nickbuf, from->name);
EventAdd("adwords_kill", 0, 1, &adwords_event_kill, nickbuf);
}
else if (myconf.enable_warnings && warn)
{
if (myconf.enable_blockings && block)
sendto_one(from, ":%s NOTICE %s :%s",
me.name, from->name, myconf.block_message ?
myconf.block_message : DEF_BLOCK_MSG);
else
sendto_one(from, ":%s NOTICE %s :%s",
me.name, from->name, myconf.warning_message ?
myconf.warning_message : DEF_WARNING_MSG);
Kısmını ;
Kod: Kodu kopyalamak için üzerine çift tıklayın!
sendto_one(from, ":%s NOTICE %s :%s",
Şu şekilde değiştir ;
Kod: Kodu kopyalamak için üzerine çift tıklayın!
sendto_one(from, ":%s PRIVMSG %s :%s",
Aynı iki satırada bunu uygula daha sonra "Unreal" ana dizninde
Kod: Kodu kopyalamak için üzerine çift tıklayın!
make custommodule MODULEFILE=adwords
./unreal rehash
Yapman yeterli olcaktır. Kodu bulurken biras zorlandım ama oldu kendi sunucumda denedim.