rendered paste body#!/usr/bin/python#Auto-Auth Script for XChat__module_name__ = "Auto-Auth Script"__module_version__ = "1.0"__module_description__ = "Hides identity on XChat IRC client networks and joins channels."#import the clientimport xchat#Prompt the userxchat.command('echo Auto-Auth Script Loading...')#Mask identitiyxchat.command('umode +x')#Channels to joinxchat.command('join #phear')xchat.command('join #syops')xchat.command('join #ooorgle')xchat.command('join #teamdynamic')xchat.command('join #Vindicated-Gaming')xchat.command('join #saigoNNN')xchat.command('join #modify')xchat.command('join #electriczombies')xchat.command('join #nvus')xchat.command('join #problematic')xchat.command('join #ageob')xchat.command('join #team-care')#End the programxchat.command('echo Auto-Auth Script Loaded!') #EOF