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

OTCLIENT Android - more tiles

Morcega Negra

Banned User
Joined
Aug 4, 2015
Messages
102
Solutions
1
Reaction score
8
I tried compiling otclient android on linux,
I could not but after using
I used old SDK and old linux and managed to generate apk
but he ran out of assets and when he opened he gave blackscreen
it was no use putting the assets manually there ..
Does anyone know the error?

I could use szybol's apk, but the difference is that I made little change in the map.cpp

Code:
void Map::resetAwareRange()
{
   AwareRange range;
   range.left = 8;
   range.top = 6;
   range.bottom = 7;
   range.right = 9;
   setAwareRange(range);
}

to

Code:
void Map::resetAwareRange()
{
   AwareRange range;
   range.left = 19; //Change this to = maxClientViewportX
   range.top = 8; //Change this to = maxClientViewportY
   range.bottom = range.top+1;
   range.right = range.left+1;
   setAwareRange(range);
}

This is my apk that generated
 

Attachments

  • OTClientMob-debug.zip
    22 MB · Views: 29 · VirusTotal
Back
Top