mirror of
https://github.com/TribesNext/t2-scripts.git
synced 2026-03-24 22:29:09 +00:00
EMail and Browser integration now enabled upon login.
This commit is contained in:
parent
62c22f43f8
commit
aa9d6c9c74
17 changed files with 290 additions and 69 deletions
|
|
@ -32,6 +32,11 @@ function IRCTCP::onDisconnect(%this)
|
|||
//IRCClient::notify(IDIRC_ERR_DROPPED);
|
||||
parent::onDisconnect(%this);
|
||||
}
|
||||
function IRCClient::onVersion(%prefix,%params)
|
||||
{
|
||||
nextToken(%prefix,prefix,"!");
|
||||
parent::onVersion(%prefix,%params);
|
||||
}
|
||||
function IRCTCP::onConnected(%this)
|
||||
{
|
||||
IRCClient::newMessage("","IRCClient: Established TCP/IP connection");
|
||||
|
|
@ -136,7 +141,7 @@ function IRCClient::onMode(%prefix,%params)
|
|||
}
|
||||
function IRCClient::onJoinServer(%mission,%server,%address,%mayprequire,%prequire)
|
||||
{
|
||||
if(strstr(strlwr($IRCClient::currentChannel.getName(),"tribes")) != -1) return;
|
||||
if(strstr(strlwr($IRCClient::currentChannel.getName(),"tribes")) == -1) return;
|
||||
parent::onJoinServer(%mission,%server,%address,%mayprequire,%prequire);
|
||||
}
|
||||
function IRCClient::onNameReply(%prefix,%params)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue