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

C++ otc enable sow ping function in other protocol weird issue

Felipe93

Ghost Member
Joined
Mar 21, 2015
Messages
1,990
Solutions
9
Reaction score
334
Location
Chile
Hello

Well im using the latest otclient source i want to enable show ping option for protocol 8.6
as far i know this function starts working on protocols 9.53+

so i added the function as this and its works but from time to time i get kicked out from client

Code:
if(version >= 860) {
        enableFeature(Otc::GameAttackSeq);
        enableFeature(Otc::GameBlueNpcNameColor);
        enableFeature(Otc::GameClientPing);
    }
this is what i get wen i check my terminal

Code:
ded module 'game_viplist'
Loaded module 'game_battle'
Loaded module 'game_minimap'
Loaded module 'game_npctrade'
Loaded module 'game_textwindow'
Loaded module 'game_playertrade'
Loaded module 'game_bugreport'
Loaded module 'game_playerdeath'
Loaded module 'game_playermount'
Loaded module 'game_ruleviolation'
ERROR: Unable to find module 'game_market' required by 'game_interface'
Loaded module 'game_spelllist'
Loaded module 'game_cooldown'
Loaded module 'game_modaldialog'
Loaded module 'game_unjustifiedpoints'
Loaded module 'iconWindow'
Startup done :]
ERROR: Unhandled onTextMessage message mode 28: Welcome to The OTX Server!
ERROR: Unhandled onTextMessage message mode 28: Your last visit was on Wed Sep 20 07:32:07 2017.
WARNING: widget 'textEditPanel' destroyed but still have 1 reference(s) left
ERROR: Unhandled onTextMessage message mode 28: Welcome to The OTX Server!
ERROR: Unhandled onTextMessage message mode 28: Your last visit was on Wed Sep 20 07:33:19 2017.
WARNING: widget 'textEditPanel' destroyed but still have 1 reference(s) left
 
Last edited:
Back
Top