View Single Post
  #6  
Old 07-30-2009, 02:56 AM
Secrets's Avatar
Secrets
Demi-God
 
Join Date: May 2007
Location: b
Posts: 1,450
Default

After further looking, that's not the case. Also, I realized that UCS is a better place to do my coding in as it has SoF support. I tested this to work on both SoF and Titanium.

http://www.sendspace.com/file/ea36cb

Also, linux support is still not in. I do not have a linux box so I would appreciate if someone took the the time to look into that. Thanks!

Can a mod update the first link with this file as well?

If you are interested in the fix for the actual crash, it's

Code:
	if(strstr(params,"%s"))
	{
		return 0;
	}
in

Code:
int triggers(char*params,irc_reply_data*hostd,void*conn) /* hooks privmsg to your specified channel */
above

Code:
	if(!strcmp(params,":!rejoin"))
	{
		irc_conn->join(name);
	}

Last edited by Secrets; 07-30-2009 at 11:00 AM..
Reply With Quote