quote:Originally posted by kvnhmmd
OK, that toast that pops up every time i sign onto messenger that says the NickChanger's settings, lets say that I didn't want that to pop up anymore. What would I change in the script to disable that toast?
BTW, nice script
Remove the following piece of code (line 500):
code: if(Signin) {
// Make the user aware of the plugin
var sec = Settings['Interval'] % 60;
var min = ((Settings['Interval'] - sec) / 60) % 60;
var hour = (((Settings['Interval'] - sec) / 60) - min) / 60;
MsgPlus.DisplayToast("NickChange Plugin", "NickChange Plugin is still on\r\nInterval: "+hour+"h "+min+"m "+sec+"s\r\nOrder: "+(Settings['IsRandom']?"Random":"Sorted")+"\r\nChange: "+(Settings['ChangePSM']?"Personal Message":"Display Name"));
}