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

I need help with seen range in OTClient

Nowix93

New Member
Joined
Feb 25, 2017
Messages
32
Reaction score
0
Hi all,
I need help with seen more range in OTClient, i want to have somthing like that
view.jpg

i got server 1.3 TFS and this OTClient so
i do evrything from here (ofc i recompiling source)
and this too in otc

  1. Add it in login.php
$features = array(
25 => true, // GameExtendedClientPing
30 => true, // GameChangeMapAwareRange
80 => true, // GameExtendedOpcode
90 => true, // GameNewWalking
);

  1. Add it in data/game_features/features.lua
function updateFeatures(version)
g_game.resetFeatures()

g_game.enableFeature(GameExtendedClientPing)
g_game.enableFeature(GameChangeMapAwareRange)
g_game.enableFeature(GameExtendedOpcode)
g_game.enableFeature(GameNewWalking)

...

  1. Add it in Servers in init.lua after ip:port:version like this:
Servers = {
OTClientV8 = "************:7171:1099:25:30:80:90"
}

but when i add g_game.enableFeature(GameNewWalking) game look like that
Bez tytułu.jpg
maybe someone know what i doding wrong?
in map.h i set 19 19 and 20 20
 
change max packet size to 65500 in const.h and check terminal for errors, ctrl + t
 
change max packet size to 65500 in const.h and check terminal for errors, ctrl + t
i change it but still the same problem and a lot error on consol
Bez tytułu.png
I make mistake somwhere?

@BahamutxD
I compilate it but i still have the same problem but on consol a lot less error\/
Bez tytułu.png
 
Last edited:
@Ref
Someone know where is problem? ;/
i try compilate otc with THIS tutorial with vcpkg evrythink going good but when i try compilate i see this
Bez tytułu.png
 
Back
Top