Hi all, I am now working on this algorithm... and seem to have encountered an issue... I have this bit of code:
code:
case "/cloneT":
con_inf = ChatWndTemp.Contacts;
var e = new Enumerator (con_inf);
var Cnt = e.item();
temp_NN = Messenger.MyName;
Messenger.MyName = Cnt.Name;
while (Messenger.MyName != Cnt.Name) {}
prepareCommands();
Messenger.MyName = temp_NN;
return '';
The thing is that executes forever, I understand the problem should be in the bucle, but the nickname should change at some point... why doesn't it ever end? (Assuming, of course, the user does not change email)