CoolAssassin wrote:i need to know how to do it i really want to know i need help help me mat
There's a spot in config.txt that controls it. Here's what it looks like:
- Code: Select all
"irc" : {
"enabled" : true,
"nickname" : "SLoW|TEST",
"username" : "pyspades",
"realname" : "pyspades server bot",
"server" : "irc.quakenet.org",
"port" : 6667,
"channel" : "#test.channel",
"password" : "",
"commandprefix" : "!",
"chatprefix" : "."
},
Yours may be slightly different than this, but the layout and format is the same. You need to make sure enabled is set to true, be sure to give it a nickname other than the default one, and make sure it's joining a channel that you're op in. I also prefer to change my command prefix to "!" and my chat prefix to ".".
Once you start the server, you should see the bot join the channel. Almost all the commands that work in game work in IRC, and the command prefix determines how to use them. Since we set the prefix to "!", you'd do "!who" to see who's online, or "!ratio name" to see someone's ratio. If you set your prefix to "#", you'd do "#who" and so on. For a full list of commands, go here [
http://code.google.com/p/pyspades/wiki/Commands]
The chat prefix determines what character you put in front of your message to talk with people in the server from IRC. Since I set mine to ".", to chat in server, I'd say in channel ".hey guys, whats up".
I hope that helps.