• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Change size of game window

Oskar1121

Excellent OT User
Joined
Jul 15, 2009
Messages
634
Reaction score
537
Location
Poland
I resize game window from:
setVisibleDimension({width = 15, height = 11})
To:
setVisibleDimension({width = 33, height = 17})

And somewhere on the map, if I walk around that places I've got an error:
6rm3xf.png


And I can't log in on this character until I leave this bug place. But when I change window size to 19x15 all works good.

map.cpp:
PHP:
    range.left = 17;
    range.top = 9;
    range.bottom = 10;
    range.right = 18;
 
Back
Top