Author Topic: Max Draw Distance Function.  (Read 610 times)

Right, I was wondering if I would be able to input a certain value into the console rather than using the ingame slider. Also what would the function be?
ie;
SetMaxDrawDistance(VALUE);

This is really hard to explain, sorry.

It's a variable... that I cannot remember.
Check config/client/prefs.cs
Also no, you cannot get it under 110. I have tried many times. (I don't give a stuff if the skybox breaks)

Woah, we have edit here?

Found it:
$pref::visibleDistanceMax = "110";
$pref::visibleDistanceMod = "5";

I cant see it within my client pref.cs folder.
Found it. What are the limits for the visibleDistanceMax?
Also; what does visibleDistanceMod do?

Found it. What are the limits for the visibleDistanceMax?
not sure
I assume it's 110 - 1000

not sure
I assume it's 110 - 1000
Alright. Also, if I said I wanted to add 50 onto the current distance max, and limit it to 1000. how would that work?

Alright. Also, if I said I wanted to add 50 onto the current distance max, and limit it to 1000. how would that work?
It's lock is hardcoded into blockland at 1000.
Try this:
$pref::visibleDistanceMax = $pref::visibleDistanceMax + 50;
or
$pref::visibleDistanceMax += 50;