I know it is simple enough but I've been struggling with it for a few hours and would like to just get it working.
I downloaded axe's commands from tg007 and I've loaded the command.ccp file. I'm now trying to figure out where to setup the names for admin/owner/host/...
I've tried a few guesses on my part but so far no luck.
This is the first few lines of the addon. I would assume I should add something like %admin: <gate> in the variables section of remote.ini but it seems I'm not so bright afterall.
on *:LOAD: {
echo -a Setting Variables:
set %kick.counter 0
set %logo ·°º«ß|åÇköp§².×»º°·
echo -a Kick Counter Set
var %dc.flood 0
echo -a Ping Flood Variables Set
echo -a Varables Complete.
echo -a Please visit www.axes.ca
echo -a Loading 100% complete!
echo -a Enjoy!
}
#adminlist on
on admin:TEXT:.kick*:#: {
inc %kick.counter
if ($3- == $null) { kick $chan $2 Violation of Axes Conduct Code [(Kicks - %kick.counter $+ )] }
else { kick $chan $2 $3- [(Kicks - %kick.counter $+ )]
}
}
I don't believe anything in this addin is connection specific but I am using NuClear if that is my problem.
Thanks,