Xchat Auto Join
This is a very simple script, which automatically joins the channel again after you were being kicked.
Place this in the .xchat2 folder.
Download script as zip
Tags:
irc
xchat
python
Place this in the .xchat2 folder.
Download script as zip
Source
- auto_join.py
- #
- # Auto join after kick Xchat script
- #
- # This script auto joins the channel after you get kicked.
- #
- # Created by Lucas van Dijk
- # www.return1.net
- #
- __module_name__ = "Auto Join"
- __module_version__ = "0.1"
- __module_description__ = "Automaticly join a channel after you get kicked."
- import xchat
- def on_kick(word, word_eol, userdata):
- xchat.command("join %s" % (word[1]))
- xchat.hook_print("You Kicked", on_kick);
- xchat.prnt("Auto Joiner succesfully loaded");

