• 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!

TFS 1.X+ monsters cant see me, more tiles to the screen

Thorn

Spriting since 2013
Joined
Sep 24, 2012
Messages
2,203
Solutions
1
Reaction score
921
Location
Chile
Hello guys, recently i had the screen of my game be enlarged, but monsters cant see me when i see them, there's a 4 sqm difference
1547749357138.png

for what i've been reading, i would need to edit here

Code:
static constexpr int32_t maxViewportX = 18; //min value: maxClientViewportX + 1
        static constexpr int32_t maxViewportY = 12; //min value: maxClientViewportY + 1
        static constexpr int32_t maxClientViewportX = 14;
        static constexpr int32_t maxClientViewportY = 8;

but i dont know what exactly or what numbers exactly

can anyone tell me ? plz
thanks!
 
ahhh nice thanks!
do you have a suggestion of the values i should have so monsters can see exactly the range i need?
Seeing as you increased the width by 6 and height by 2, it would make sense to increase the range by 6 (9 => 15). or increase it by 6 and respective 2 (making it 15 and 11).
 
Seeing as you increased the width by 6 and height by 2, it would make sense to increase the range by 6 (9 => 15). or increase it by 6 and respective 2 (making it 15 and 11).
thank you!! im gonna make that and test! :D
 
Back
Top