PDA

View Full Version : A lag fix



Llyweln
07-10-2009, 10:44 AM
if you are looking for a single button toggle macro:

/script TextLogSetEnabled( "Combat", not TextLogGetEnabled( "Combat" ) )

It turns off your combat logs. I ran this all day yesterday, and the only time it really got laggy was in Caledor yesterday eve (when dallmar was doing his mass pulls)

Kordine
07-10-2009, 02:11 PM
That turns it on and off right?

HesH
07-12-2009, 05:54 PM
So you would lose what hit for X dmg, dealt X dmg kinda stuff? what in all would i be losing in lamens terms

Llyweln
07-12-2009, 07:37 PM
No, you see nothing on combat logs at all. Nothing is saved. And yes, it turns it off and on. Also when you log out or ld it resets. Does help with load times too. Seems one of ours who had constant 3 min login into scs......no probelm now.

colnar
07-13-2009, 02:34 AM
I tried this out and you lose the ability to use autodismount add-on. You also loose the xp/rp/inf logging as well

Voltari
07-13-2009, 01:49 PM
Is there a way to turn it back on? And what is the command, exactly - please. :)

colnar
07-13-2009, 02:02 PM
I found that /script TextLogSetEnabled( "Combat", false) turns it off and /script TextLogSetEnabled( "Combat", true) turns it on.

Grenkk
07-13-2009, 04:19 PM
Related to this, even if you dont want to lose your log...

Apparently minimizing the size of the log ease the lag problem, you get few lines though so in a real fight with lots of people you cant scroll high enough to see what hit you.... but when in smaller skirmish youll see.

To be honest I prefer to hit my opponent 2 more times because I know where he really is and win the battle and not worry about my absent log... then have my log tell me where I lagged badly and why I lost the fight.

Llyweln
07-13-2009, 05:12 PM
How do you minimize the size of the log? :) Yes, I do wanna know what finaly kills me, but I love my auto-dismount too much :)

Warseth
07-13-2009, 07:08 PM
I found a mod at curse gaming that disables combat log for you so you dont have to type that all the time.

And yes so far....I have had ZERO disconnects all evening ...usually i get 2-3

Drakhon
07-13-2009, 09:47 PM
I found that /script TextLogSetEnabled( "Combat", false) turns it off and /script TextLogSetEnabled( "Combat", true) turns it on.

Yes, but


/script TextLogSetEnabled( "Combat", not TextLogGetEnabled( "Combat" ) )

acts as a toggle because


not TextLogGetEnabled( "Combat" )

returns the opposite of whatever the current value is, thus setting the "true" or "false" argument dynamically based on the current status.