What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » * Stat Center 1.5* [NEW] [Performance Issues Fixed]

1 votes - 5 average   * Stat Center 1.5* [NEW] [Performance Issues Fixed]
Author: Message:
CookieRevised
Elite Member
*****

Avatar

Posts: 15519
Reputation: 173
– / Male / Flag
Joined: Jul 2003
Status: Away
RE: [UPDATE v1.0.4] Stat Center - Contact statistics system
Some stuff handling Yahoo contacts is not correctly or not needed though. eg:

code:
function signinUpdate() {
    (...)
    if(Contact.Network == 1) {
        var sprefs = new PrefStore(Contact.Email);
        sprefs.set('LastSignin', parseInt((new Date().getTime()) / 1000));
        sprefs.save();
               
        if((checkYahoo(Contact.Email, Contacts) == true) && Contacts.GetContact('yahoo:' + Contact.Email).Status != 1) {
            var sprefs = new PrefStore('$YAHOO$' + Contact.Email);
            sprefs.set('LastSignin', parseInt((new Date().getTime()) / 1000));
            sprefs.save();
        }

    } else {
    (...)

The red part isn't needed. The enumeration will already return all contacts, yahoo and msn ones, no matter if they have the same email or not.

You only need to check upon same contact emails if you get the email from a variable or whatever which does not differentiate between yahoo and msn contacts and need to get the contact using GetContact().

Using the enumaration or getting the email from a contact event will always either return all contacts, or return a prefixed email.

Which means that whole function can be reduced to:
code:
function signinUpdate() {
    //Current User
    myprefs.set('LastSignin', parseInt((new Date().getTime()) / 1000));
   
    //Other Users
    for(var e = new Enumerator(Messenger.MyContacts); !e.atEnd(); e.moveNext()) {
        var Contact = e.item();
        if(Contact.Status !== 1 && (Contact.Email !== Messenger.MyEmail || Contact.Network === 2)) {
            var sprefs = new PrefStore((Contact.Network === 2 ? '$YAHOO$' : '') + Contact.Email);
            sprefs.set('LastSignin', parseInt((new Date().getTime()) / 1000));
            sprefs.save();
        }
    }
}
same stuff in OnEvent_Signout(), OnEvent_SigninReady and OnEvent_ChatWndCreated(), OnEvent_ChatWndContactAdded(), OnEvent_ChatWndReceiveMessage(), and maybe other places...



-------------------------------------------------------------

Some other stuff:


* PrefStore.js
- is responsible for the slowness of everything
- do not store email addresses as files if you don't must! use the MSN ID instead for this.


* OnEvent_Signout()
code:
if (Stat_Wnd != null) {
    Stat_Wnd.Close(1);
    Stat_Wnd = null;
}
Since you close the window and in the OnWndStatsEvent_Destroyed function you already set Stat_Wnd to null, you don't need it here. So this can be either:
    if (Stat_Wnd !== null) Stat_Wnd.Close(1);
or
    try{Stat_Wnd.Close(1)}catch( e){}


* OnEvent_ContactSignin()
You perform some same action in the if then else... so you can move to outside and after the if then else. And then you could do with only one replace function instead of the if then else too. And you don't need to change the email to perform action A, and then change it back to what it was to perform action B. Making that whole function just:
code:
function OnEvent_ContactSignin(Email) {
    var sprefs = new PrefStore(Email.replace("yahoo:", "$YAHOO$"));
    Pref_Increase(sprefs, 'Signin');
    sprefs.set('LastSignin', parseInt((new Date().getTime()) / 1000));
    Pref_Increase(sprefs, ('Status_' + Messenger.MyContacts.GetContact(Email).Status));
    Pref_Array(sprefs, 'DisplayNames', Format(Messenger.MyContacts.GetContact(Email).Name));
    Pref_Array(sprefs, 'PsmNames', Format(Messenger.MyContacts.GetContact(Email).PersonalMessage));
    sprefs.save();
}
same in OnEvent_ContactSignout() and maybe other places...


* OnEvent_MyStatusChange() can be reduced to only 1 line:
Pref_Increase(myprefs, "Status_" + NewStatus);
just like you did in OnEvent_ContactStatusChange (though you don't really need the parenthesis)


* OnEvent_SigninReady()
change
    if((Contact.Status != 1)
to
    if((Contact.Status > 1)
since Contact.Status may return 0 too.


* OnEvent_MyMediaChange()
change
    if((NewMedia != '') && (NewMedia != 'undefined') && (NewMedia != undefined))
to
    if(NewMedia !== '')
This goes in general to check upon a valid variable string. But in this particular function you don't even need to consider undefined since Plus! will always return a defined string anyways. Same for OnEvent_ContactMediaChange.


* OnEvent_ContactBlocked()
Yahoo contacts are stored with their email (without prefix) in the same ContactsBlocked counter as msn contacts, is this supposed to do that? A Yahoo mail is a different contact than a MSN contact (with the same email), so...


* OnEvent_ChatWndCreated() can be reduced to just:
code:
function OnEvent_ChatWndCreated(ChatWnd) {
    var i = ChatWnd.Contacts.Count;
    for(var e = new Enumerator(ChatWnd.Contacts); !e.atEnd(); e.moveNext()) {
        var Contact = e.item();
        var sprefs = new PrefStore((Contact.Network === 2 ? '$YAHOO$' : '') + Contact.Email);
        Pref_Increase(sprefs, "Conversations");
        if (i > 1) {
            Pref_Increase(sprefs, "GroupConversations");
        }
        sprefs.save();
    }
    Pref_Increase(myprefs, 'TotalConversations');
}
The same thing (use of ChatWnd.Contacts.Count) goes for OnEvent_ChatWndContactAdded.


* OnEvent_ChatWndReceiveMessage
code:
//Words Received - TOTAL and per-contact
Pref_IncreaseBy(myprefs, "TotalWordsReceived", Message.split(" ").length);
Splitting by a space does not give a proper word count at all. eg: multiple spaces can be used, other bounderies as a space character can be used, etc... To count words in a line you must use a regular expression:
code:
//Words Received - TOTAL and per-contact
var Words = --('A ' + Message).match(/\w+/g).length;
Pref_IncreaseBy(myprefs, "TotalWordsReceived", Words);
Pref_IncreaseBy(sprefs, "WordsReceived", Words);
note that I put 'A ' in front of the message so that the array will never be null, but of course because this counts as a word you do length-1 (is the --)
(same issue in OnEvent_ChatWndSendMessage)



In every switch case statement, you have:
    var sprefs = new PrefStore(Email);
So bring this in front of the switch, and change it too:
    var sprefs = new PrefStore(Email.replace('yahoo:', '$YAHOO$'));
so you don't need:
    if(Contact.Network == 2) {
        Debug.Trace("[External] The Message has been received from a Yahoo! contact");
        Email = "$YAHOO$" + Email;
    }

And remove every
    sprefs.save();
and put it after the switch.



All this also makes that you can put case 6 in front of case 1, but without a break since it mostly requires the same actions:
code:
case 6:               
    //OFFLINE MESSAGE STATISTICS               
    Pref_Increase(myprefs, "TotalOfflineMessagesReceived");
    Pref_Increase(sprefs, "OfflineMessagesReceived");
    //NORMAL CASE 1 STATISTICS FOLLOW
case 1:
    //Total messages Received
    (...)
    break;



code:
for(i=0; i < otherContacts.length; i++) {
    if(Contacts.GetContact(otherContacts[ i]).Network == 1) {
        (....)
        if(checkYahoo(otherContacts[ i], Contacts) == true) {
        }
    } else {
        (....)
    }
}
All this isn't needed and will actually produce wrong results. Not only do the things apply in the first section of this post, the emails in array otherContacts come from an enumeration and thus already contain the proper yahoo prefix in case of a yahoo contact. Which makes that all those checks can be reduced to simply:
code:
for (var i in otherContacts) {
    var sprefs = new PrefStore(otherContacts[ i].replace('yahoo:', '$YAHOO$'));
    Pref_Increase(sprefs, "WinksSent");
    sprefs.save();
}



* OnEvent_ChatWndSendMessage()
change
    if (Message == "/showstats")
to
    if (Message.toLowerCase() === "/showstats")
or even better:
    if (/^\/showstats(?:\s+[\s\S]*|$)/i.exec(Message) !== null)
which also will result in true if the user has added some parameters



Shouldn't this:
    Load_Contact(Contact.Email);
be:
    Load_Contact((Contact.Network === 2 ? '$YAHOO$' : '') + Contact.Email);
? And same issue with:
    Load_WndStats(Contact.Email);
This has further implications for the actual Load_Contact(), Load_WndStats() and possible other similar functions (I've not checked WndStats.js yet).



And this also means that Combo_Contacts[i] === Contact.Email in:
code:
for(var i in Combo_Contacts) {
    if (Combo_Contacts[i] === Contact.Email) {
        Stat_Wnd.Combo_SetCurSel('cboContact', i);
        break;
    }
}
isn't yahoo compatible, since you don't check upon the network



Change:
    Interop.Call('User32', 'BringWindowToTop', Stat_Wnd.Handle);
    Interop.Call('User32', 'ShowWindow', Stat_Wnd.Handle, 1);
to
    Interop.Call('User32', 'SetForegroundWindow', Stat_Wnd.Handle);




* in general, thus in some places, you use:
    if(cContact.Email !== Messenger.MyEmail)
to check if the email isn't the user's email. This should be:
    if(cContact.Email !== Messenger.MyEmail || cContact.Network === 2)
because a Yahoo contact can have the same email address as the user's email, yet is a valid contact and not the user.


* function OnEvent_MessengerLocked()
Messenger.MyEmail isn't always defined when this event is called (eg: one can lock messenger without being singed in)




I didn't checked everything in detail and not all files, so there might be more things like all this in other places. But this is already a lot to fix though, I think  ;)

This post was edited on 12-30-2006 at 01:32 AM by CookieRevised.
.-= A 'frrrrrrrituurrr' for Wacky =-.
12-29-2006 07:46 PM
Profile PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
* Stat Center 1.5* [NEW] [Performance Issues Fixed] - by Chestah on 12-21-2006 at 01:08 AM
RE: [Release] Stat Center - GUI per-contact statistics system - by DarkMe on 12-21-2006 at 01:22 AM
RE: [Release] Stat Center - GUI per-contact statistics system - by foaly on 12-21-2006 at 01:27 AM
RE: RE: [Release] Stat Center - GUI per-contact statistics system - by alexp2_ad on 12-21-2006 at 01:28 AM
RE: [Release] Stat Center - GUI per-contact statistics system - by Voldemort on 12-21-2006 at 01:28 AM
RE: [Release] Stat Center - GUI per-contact statistics system - by prashker on 12-21-2006 at 01:32 AM
RE: [Release] Stat Center - GUI per-contact statistics system - by MicroWay on 12-21-2006 at 01:32 AM
RE: [Release] Stat Center - GUI per-contact statistics system - by Chestah on 12-21-2006 at 02:21 AM
RE: [Release] Stat Center - GUI per-contact statistics system - by MattyRid on 12-21-2006 at 07:18 AM
RE: RE: [Release] Stat Center - GUI per-contact statistics system - by Tortoise on 07-11-2007 at 10:24 PM
RE: [Release] Stat Center - GUI per-contact statistics system - by Chestah on 12-21-2006 at 10:00 AM
RE: [Release] Stat Center - GUI per-contact statistics system - by Q8Bond007 on 12-21-2006 at 04:31 PM
RE: [Release] Stat Center - GUI per-contact statistics system - by Fuse on 12-21-2006 at 06:23 PM
RE: [Release] Stat Center - GUI per-contact statistics system - by Cartox on 12-21-2006 at 06:37 PM
RE: [Release] Stat Center - GUI per-contact statistics system - by John Anderton on 12-21-2006 at 08:00 PM
RE: [Release] Stat Center - GUI per-contact statistics system - by foaly on 12-21-2006 at 08:02 PM
RE: [Release] Stat Center - GUI per-contact statistics system - by John Anderton on 12-21-2006 at 08:06 PM
RE: [Release] Stat Center - GUI per-contact statistics system - by Chestah on 12-21-2006 at 09:23 PM
RE: [Release] Stat Center - GUI per-contact statistics system - by absorbation on 12-21-2006 at 10:16 PM
RE: [Release] Stat Center - GUI per-contact statistics system - by Chestah on 12-22-2006 at 09:24 AM
RE: [Release] Stat Center - GUI per-contact statistics system - by Chestah on 12-23-2006 at 12:33 AM
RE: [Release] Stat Center - GUI per-contact statistics system - by Eddie on 12-23-2006 at 08:47 AM
RE: [Release] Stat Center - GUI per-contact statistics system - by dekline on 12-23-2006 at 09:50 AM
RE: [Release] Stat Center - GUI per-contact statistics system - by Eddie on 12-23-2006 at 09:57 AM
RE: [Release] Stat Center - GUI per-contact statistics system - by M73A on 12-23-2006 at 11:25 AM
RE: [Release] Stat Center - GUI per-contact statistics system - by Chestah on 12-23-2006 at 11:07 PM
RE: [Release] Stat Center - GUI per-contact statistics system - by MicroWay on 12-24-2006 at 07:11 AM
RE: [Release] Stat Center - GUI per-contact statistics system - by Eddie on 12-24-2006 at 09:40 AM
RE: [Release] Stat Center - GUI per-contact statistics system - by RaPLeX on 12-24-2006 at 09:57 AM
RE: [Release] Stat Center - GUI per-contact statistics system - by Chestah on 12-25-2006 at 08:54 AM
RE: [Release] Stat Center - GUI per-contact statistics system - by Hank on 12-25-2006 at 08:58 AM
RE: [UPDATE v1.0.4] Stat Center - Contact statistics system - by Chestah on 12-25-2006 at 09:22 PM
RE: [UPDATE v1.0.4] Stat Center - Contact statistics system - by CookieRevised on 12-29-2006 at 07:46 PM
RE: [UPDATE v1.0.4] Stat Center - Contact statistics system - by Nathan on 12-29-2006 at 07:53 PM
RE: RE: [UPDATE v1.0.4] Stat Center - Contact statistics system - by CookieRevised on 12-29-2006 at 07:59 PM
RE: [UPDATE v1.0.4] Stat Center - Contact statistics system - by Nathan on 12-29-2006 at 08:06 PM
RE: [UPDATE v1.0.4] Stat Center - Contact statistics system - by Jimbo on 12-29-2006 at 08:43 PM
RE: [UPDATE v1.0.4] Stat Center - Contact statistics system - by CookieRevised on 12-29-2006 at 09:05 PM
RE: [UPDATE v1.0.4] Stat Center - Contact statistics system - by Chestah on 12-29-2006 at 11:53 PM
RE: [UPDATE v1.0.4] Stat Center - Contact statistics system - by MattyRid on 12-30-2006 at 12:14 AM
RE: [UPDATE v1.0.4] Stat Center - Contact statistics system - by Chestah on 12-30-2006 at 12:20 AM
RE: [UPDATE v1.0.4] Stat Center - Contact statistics system - by roflmao456 on 12-30-2006 at 04:28 AM
RE: [UPDATE v1.0.4] Stat Center - Contact statistics system - by Chestah on 12-30-2006 at 06:21 AM
RE: [UPDATE v1.0.4] Stat Center - Contact statistics system - by warmth on 01-02-2007 at 05:43 PM
RE: [UPDATE v1.0.4] Stat Center - Contact statistics system - by Chestah on 01-03-2007 at 09:12 AM
RE: RE: [UPDATE v1.0.4] Stat Center - Contact statistics system - by warmth on 01-03-2007 at 11:50 AM
RE: [UPDATE v1.0.4] Stat Center - Contact statistics system - by Chestah on 01-03-2007 at 12:46 PM
RE: RE: Stat Center bug - by T-PO on 01-05-2007 at 10:34 PM
RE: [UPDATE v1.0.4] Stat Center - Contact statistics system - by Chestah on 01-05-2007 at 11:40 PM
RE: [UPDATE v1.0.4] Stat Center - Contact statistics system - by P4R4D0x on 01-06-2007 at 08:45 AM
RE: [UPDATE v1.0.4] Stat Center - Contact statistics system - by Chestah on 01-06-2007 at 11:59 AM
RE: [UPDATE v1.0.4] Stat Center - Contact statistics system - by Eddie on 01-06-2007 at 12:07 PM
RE: [UPDATE v1.0.4] Stat Center - Contact statistics system - by psycho_maniac on 01-06-2007 at 05:47 PM
RE: [UPDATE v1.0.4] Stat Center - Contact statistics system - by Chestah on 01-06-2007 at 10:55 PM
RE: [UPDATE v1.0.4] Stat Center - Contact statistics system - by P4R4D0x on 01-07-2007 at 12:01 AM
RE: [UPDATE v1.0.4] Stat Center - Contact statistics system - by Eddie on 01-07-2007 at 03:20 AM
RE: [UPDATE v1.0.4] Stat Center - Contact statistics system - by Voldemort on 01-07-2007 at 03:59 AM
RE: [UPDATE v1.0.4] Stat Center - Contact statistics system - by Eddie on 01-07-2007 at 08:11 AM
RE: [UPDATE v1.0.4] Stat Center - Contact statistics system - by warmth on 01-07-2007 at 02:46 PM
RE: RE: [UPDATE v1.0.4] Stat Center - Contact statistics system - by psycho_maniac on 01-08-2007 at 12:14 AM
RE: [UPDATE v1.0.4] Stat Center - Contact statistics system - by Chestah on 01-08-2007 at 01:00 AM
RE: [UPDATE v1.0.4] Stat Center - Contact statistics system - by Voldemort on 01-08-2007 at 01:03 AM
RE: [UPDATE v1.0.4] Stat Center - Contact statistics system - by Lou on 01-08-2007 at 01:12 AM
RE: [UPDATE v1.0.4] Stat Center - Contact statistics system - by Chestah on 01-08-2007 at 01:34 AM
RE: [UPDATE v1.0.4] Stat Center - Contact statistics system - by psycho_maniac on 01-08-2007 at 12:33 PM
RE: [UPDATE v1.0.4] Stat Center - Contact statistics system - by P4R4D0x on 01-08-2007 at 12:34 PM
RE: [UPDATE v1.0.4] Stat Center - Contact statistics system - by Chestah on 01-08-2007 at 01:05 PM
RE: [UPDATE v1.0.4] Stat Center - Contact statistics system - by warmth on 01-08-2007 at 11:27 PM
RE: * Stat Center * [UPDATE: v1.1.1] - by Chestah on 01-09-2007 at 09:36 AM
RE: * Stat Center * [UPDATE: v1.1.1] - by prashker on 01-09-2007 at 12:31 PM
RE: * Stat Center * [UPDATE: v1.1.1] - by Zahid™ on 01-09-2007 at 04:08 PM
RE: RE: * Stat Center * [UPDATE: v1.1.1] - by warmth on 01-09-2007 at 04:55 PM
RE: * Stat Center * [UPDATE: v1.1.1] - by Chestah on 01-09-2007 at 09:33 PM
RE: * Stat Center * [UPDATE: v1.1.1] - by Lou on 01-09-2007 at 10:05 PM
RE: * Stat Center * [UPDATE: v1.1.1] - by Eddie on 01-10-2007 at 12:40 AM
RE: * Stat Center * [UPDATE: v1.1.1] - by Supersonicdarky on 01-10-2007 at 01:55 AM
RE: * Stat Center * [UPDATE: v1.1.1] - by Chestah on 01-10-2007 at 04:49 AM
RE: * Stat Center * [UPDATE: v1.1.1] - by prashker on 01-10-2007 at 12:42 PM
RE: * Stat Center * [UPDATE: v1.1.1] - by Chestah on 01-12-2007 at 12:03 AM
RE: RE: * Stat Center * [UPDATE: v1.1.1] - by snAke_LeAder on 01-12-2007 at 12:20 AM
RE: * Stat Center * [UPDATE: v1.1.1] - by prashker on 01-12-2007 at 12:05 AM
RE: * Stat Center * [UPDATE: v1.1.1] - by warmth on 01-12-2007 at 12:06 AM
RE: * Stat Center * [UPDATE: v1.1.1] - by Chestah on 01-12-2007 at 12:27 AM
RE: * Stat Center * [UPDATE: v1.1.1] - by Voldemort on 01-12-2007 at 12:37 AM
RE: * Stat Center * [UPDATE: v1.1.1] - by Eddie on 01-12-2007 at 03:57 AM
RE: * Stat Center * [UPDATE: v1.1.1] - by Chestah on 01-12-2007 at 03:59 AM
RE: * Stat Center * [UPDATE: v1.1.1] - by Eddie on 01-12-2007 at 04:11 AM
RE: RE: * Stat Center * [UPDATE: v1.1.1] - by warmth on 01-12-2007 at 12:47 PM
RE: * Stat Center * [UPDATE: v1.1.1] - by prashker on 01-12-2007 at 04:45 AM
RE: * Stat Center * [UPDATE: v1.1.1] - by SimonHodgkiss on 01-12-2007 at 12:16 PM
RE: * Stat Center * [UPDATE: v1.1.1] - by Eddie on 01-12-2007 at 12:58 PM
RE: RE: * Stat Center * [UPDATE: v1.1.1] - by SimonHodgkiss on 01-12-2007 at 01:05 PM
RE: * Stat Center * [UPDATE: v1.1.1] - by prashker on 01-12-2007 at 09:02 PM
RE: * Stat Center * [UPDATE: v1.1.1] - by Chestah on 01-12-2007 at 09:37 PM
RE: RE: * Stat Center * [UPDATE: v1.1.1] - by SimonHodgkiss on 01-12-2007 at 11:48 PM
RE: * Stat Center * [UPDATE: v1.1.2] - by Chestah on 01-13-2007 at 12:58 AM
RE: * Stat Center * [UPDATE: v1.1.2] - by Chestah on 01-13-2007 at 02:37 AM
RE: RE: * Stat Center * [UPDATE: v1.1.2] - by snAke_LeAder on 01-13-2007 at 03:07 AM
RE: RE: * Stat Center * [UPDATE: v1.1.2] - by snAke_LeAder on 01-13-2007 at 05:17 AM
RE: RE: * Stat Center * [UPDATE: v1.1.2] - by warmth on 01-13-2007 at 07:55 AM
RE: * Stat Center * [UPDATE: v1.1.2] - by Eddie on 01-13-2007 at 04:32 AM
RE: * Stat Center * [UPDATE: v1.1.2] - by Chestah on 01-13-2007 at 04:58 AM
RE: * Stat Center * [UPDATE: v1.1.2] - by okaygo on 01-13-2007 at 08:29 AM
RE: * Stat Center * [UPDATE: v1.1.2] - by Chestah on 01-13-2007 at 08:39 AM
RE: RE: * Stat Center * [UPDATE: v1.1.2] - by warmth on 01-13-2007 at 02:22 PM
RE: * Stat Center * [UPDATE: v1.1.2] - by M73A on 01-13-2007 at 09:15 AM
RE: * Stat Center * [UPDATE: v1.1.2] - by Chestah on 01-13-2007 at 10:05 AM
RE: * Stat Center * [UPDATE: v1.1.2] - by prashker on 01-13-2007 at 03:27 PM
RE: * Stat Center * [UPDATE: v1.1.2] - by Matti on 01-13-2007 at 05:51 PM
RE: * Stat Center * [UPDATE: v1.1.2] - by Chestah on 01-13-2007 at 09:26 PM
RE: * Stat Center * [UPDATE: v1.1.2] - by Voldemort on 01-13-2007 at 10:20 PM
RE: * Stat Center * [UPDATE: v1.1.2] - by Chestah on 01-13-2007 at 10:44 PM
RE: * Stat Center * [UPDATE: v1.1.2] - by Voldemort on 01-13-2007 at 10:57 PM
RE: RE: * Stat Center * [UPDATE: v1.1.2] - by warmth on 01-15-2007 at 02:12 AM
RE: * Stat Center * [UPDATE: v1.1.2] - by Chestah on 01-14-2007 at 03:53 AM
RE: * Stat Center * [UPDATE: v1.1.2] - by SimonHodgkiss on 01-14-2007 at 12:04 PM
RE: * Stat Center * [UPDATE: v1.1.2] - by Chestah on 01-15-2007 at 02:58 AM
RE: * Stat Center * [UPDATE: v1.1.2] - by SimonHodgkiss on 01-15-2007 at 07:53 AM
RE: * Stat Center * [UPDATE: v1.1.2] - by Eddie on 01-15-2007 at 08:12 AM
RE: * Stat Center * [UPDATE: v1.1.2] - by Chestah on 01-15-2007 at 09:27 AM
RE: * Stat Center * [UPDATE: v1.1.2] - by Eddie on 01-15-2007 at 10:42 AM
RE: * Stat Center * [UPDATE: v1.1.2] - by Felu on 01-15-2007 at 11:02 AM
RE: * Stat Center * [UPDATE: v1.1.2] - by Chestah on 01-15-2007 at 11:12 AM
RE: * Stat Center * [UPDATE: v1.1.2] - by Eddie on 01-15-2007 at 11:22 AM
RE: * Stat Center * [UPDATE: v1.1.2] - by Chestah on 01-15-2007 at 11:34 AM
RE: RE: * Stat Center * [UPDATE: v1.1.2] - by SimonHodgkiss on 01-15-2007 at 06:29 PM
RE: * Stat Center * [UPDATE: v1.1.2] - by Chestah on 01-15-2007 at 11:32 PM
RE: * Stat Center * [UPDATE: v1.1.2] - by SimonHodgkiss on 01-15-2007 at 11:39 PM
RE: * Stat Center * [UPDATE: v1.1.2] - by Supersonicdarky on 01-25-2007 at 02:01 AM
RE: * Stat Center * [UPDATE: v1.1.2] - by Eddie on 01-25-2007 at 02:34 AM
RE: * Stat Center * [UPDATE: v1.1.2] - by Supersonicdarky on 01-25-2007 at 02:45 AM
RE: * Stat Center * [UPDATE: v1.1.2] - by Eddie on 01-25-2007 at 06:21 AM
RE: * Stat Center * [UPDATE: v1.1.2] - by Chestah on 01-25-2007 at 06:24 AM
RE: * Stat Center * [UPDATE: v1.1.2] - by SimonHodgkiss on 01-25-2007 at 02:16 PM
RE: * Stat Center * [UPDATE: v1.1.2] - by Chestah on 01-25-2007 at 11:07 PM
RE: * Stat Center * [UPDATE: v1.1.2] - by SimonHodgkiss on 01-25-2007 at 11:15 PM
RE: * Stat Center * [UPDATE: v1.1.2] - by P4R4D0x on 01-27-2007 at 01:43 AM
RE: * Stat Center * [UPDATE: v1.1.2] - by Supersonicdarky on 01-27-2007 at 01:47 AM
RE: RE: * Stat Center * [UPDATE: v1.1.2] - by SimonHodgkiss on 01-29-2007 at 02:05 PM
RE: * Stat Center * [UPDATE: v1.1.2] - by Eddie on 01-29-2007 at 02:30 PM
RE: * Stat Center * [UPDATE: v1.1.2] - by SimonHodgkiss on 02-01-2007 at 09:14 PM
RE: * Stat Center * [UPDATE: v1.1.2] - by electronicswhizz on 02-11-2007 at 03:53 PM
RE: * Stat Center * [UPDATE: v1.1.2] - by John Anderton on 02-11-2007 at 04:12 PM
RE: * Stat Center * [UPDATE: v1.1.2] - by Felu on 02-11-2007 at 04:16 PM
RE: RE: * Stat Center * [UPDATE: v1.1.2] - by electronicswhizz on 02-12-2007 at 05:48 PM
RE: * Stat Center * [UPDATE: v1.1.2] - by vikke on 02-11-2007 at 04:30 PM
RE: * Stat Center * [UPDATE: v1.1.2] - by oxymoronr on 02-19-2007 at 05:08 PM
RE: RE: * Stat Center * [UPDATE: v1.1.2] - by Steel Froggy on 05-02-2007 at 04:59 AM
RE: * Stat Center * [UPDATE: v1.1.2] - by warmth on 02-19-2007 at 05:16 PM
RE: * Stat Center * [UPDATE: v1.1.2] - by Eddie on 02-27-2007 at 11:33 AM
RE: * Stat Center * [UPDATE: v1.1.2] - by Felu on 02-27-2007 at 11:39 AM
RE: * Stat Center * [UPDATE: v1.1.2] - by riahc4 on 03-19-2007 at 02:58 PM
RE: * Stat Center * [UPDATE: v1.1.2] - by Citywidemicke on 03-19-2007 at 08:29 PM
RE: * Stat Center * [UPDATE: v1.1.2] - by Chestah on 04-27-2007 at 10:03 PM
RE: * Stat Center * [UPDATE: v1.1.2] - by riahc4 on 04-30-2007 at 03:30 PM
RE: * Stat Center * [UPDATE: v1.1.2] - by Matti on 04-30-2007 at 03:37 PM
RE: * Stat Center * [UPDATE: v1.1.2] - by riahc4 on 04-30-2007 at 04:19 PM
RE: * Stat Center * [UPDATE: v1.1.2] - by dotdotdot on 05-09-2007 at 07:51 AM
RE: * Stat Center * [UPDATE: v1.1.2] - by Chestah on 05-26-2007 at 02:36 PM
RE: * Stat Center * [UPDATE: v1.1.2] - by Chestah on 05-26-2007 at 03:16 PM
RE: * Stat Center 1.5* [NEW] [Performance Issues Fixed] - by prashker on 05-26-2007 at 04:14 PM
RE: * Stat Center 1.5* [NEW] [Performance Issues Fixed] - by snAke_LeAder on 05-27-2007 at 12:41 PM
RE: * Stat Center 1.5* [NEW] [Performance Issues Fixed] - by warmth on 05-27-2007 at 05:02 PM
RE: * Stat Center 1.5* [NEW] [Performance Issues Fixed] - by snAke_LeAder on 05-27-2007 at 05:50 PM
RE: * Stat Center 1.5* [NEW] [Performance Issues Fixed] - by warmth on 05-27-2007 at 06:29 PM
RE: * Stat Center 1.5* [NEW] [Performance Issues Fixed] - by Chestah on 05-29-2007 at 04:00 AM
RE: RE: * Stat Center 1.5* [NEW] [Performance Issues Fixed] - by warmth on 05-29-2007 at 01:21 PM
RE: * Stat Center 1.5* [NEW] [Performance Issues Fixed] - by riahc4 on 05-31-2007 at 12:56 PM
RE: * Stat Center 1.5* [NEW] [Performance Issues Fixed] - by warmth on 05-31-2007 at 03:10 PM
RE: * Stat Center 1.5* [NEW] [Performance Issues Fixed] - by kmcbest on 06-03-2007 at 09:06 AM
RE: * Stat Center 1.5* [NEW] [Performance Issues Fixed] - by Chestah on 06-03-2007 at 10:34 PM
RE: RE: * Stat Center 1.5* [NEW] [Performance Issues Fixed] - by warmth on 06-03-2007 at 11:04 PM
RE: * Stat Center 1.5* [NEW] [Performance Issues Fixed] - by Chestah on 06-04-2007 at 12:44 PM
RE: RE: * Stat Center 1.5* [NEW] [Performance Issues Fixed] - by warmth on 06-04-2007 at 12:47 PM
RE: * Stat Center 1.5* [NEW] [Performance Issues Fixed] - by kmcbest on 09-10-2007 at 11:35 AM
RE: * Stat Center 1.5* [NEW] [Performance Issues Fixed] - by tominic on 11-28-2007 at 09:08 PM
RE: * Stat Center 1.5* [NEW] [Performance Issues Fixed] - by riahc4 on 02-25-2008 at 10:40 PM
RE: * Stat Center 1.5* [NEW] [Performance Issues Fixed] - by duck! on 02-25-2008 at 11:12 PM
RE: * Stat Center 1.5* [NEW] [Performance Issues Fixed] - by Nathan on 02-26-2008 at 08:57 AM
RE: RE: * Stat Center 1.5* [NEW] [Performance Issues Fixed] - by riahc4 on 02-26-2008 at 10:30 PM
RE: * Stat Center 1.5* [NEW] [Performance Issues Fixed] - by woodyns on 03-24-2008 at 12:34 PM
New feature proposal - by Chikara on 07-20-2008 at 03:10 PM
RE: * Stat Center 1.5* [NEW] [Performance Issues Fixed] - by riahc4 on 04-02-2008 at 01:51 AM
RE: * Stat Center 1.5* [NEW] [Performance Issues Fixed] - by Eddie on 04-02-2008 at 08:34 AM
RE: RE: * Stat Center 1.5* [NEW] [Performance Issues Fixed] - by riahc4 on 04-02-2008 at 09:23 AM
RE: * Stat Center 1.5* [NEW] [Performance Issues Fixed] - by Eddie on 04-02-2008 at 01:26 PM
RE: * Stat Center 1.5* [NEW] [Performance Issues Fixed] - by Spunky on 04-02-2008 at 06:29 PM
RE: * Stat Center 1.5* [NEW] [Performance Issues Fixed] - by Chestah on 04-30-2008 at 02:03 PM
RE: * Stat Center 1.5* [NEW] [Performance Issues Fixed] - by riahc4 on 05-13-2009 at 08:18 AM
RE: * Stat Center 1.5* [NEW] [Performance Issues Fixed] - by warmth on 05-13-2009 at 10:15 AM
RE: * Stat Center 1.5* [NEW] [Performance Issues Fixed] - by SmokingCookie on 05-15-2009 at 07:05 PM
RE: * Stat Center 1.5* [NEW] [Performance Issues Fixed] - by immortalradish on 05-16-2009 at 07:13 PM
RE: * Stat Center 1.5* [NEW] [Performance Issues Fixed] - by Eddie on 05-17-2009 at 06:38 AM
RE: * Stat Center 1.5* [NEW] [Performance Issues Fixed] - by kuremo on 12-21-2009 at 03:24 AM
Stat Center bug - by T-PO on 01-05-2007 at 09:03 AM
RE: Stat Center bug - by Spunky on 01-05-2007 at 10:35 AM
RE: Stat Center bug - by Matti on 01-05-2007 at 10:36 AM
RE: Stat Center bug - by Chestah on 01-05-2007 at 11:54 AM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On