vai na sua source abre o map.h :
encontre essas variáveis :
static const int32_t maxViewportX = 11; //min value: maxClientViewportX + 1
static const int32_t maxViewportY = 11; //min value: maxClientViewportY + 1
static const int32_t maxClientViewportX = 8;
static const int32_t maxClientViewportY = 6;
troque para :
static const int32_t maxViewportX = 11; //min value: maxClientViewportX + 1
static const int32_t maxViewportY = 11; //min value: maxClientViewportY + 1
static const int32_t maxClientViewportX = 15;
static const int32_t maxClientViewportY = 8;
e compila seu servidor
agora vai na source do seu otclient, abre o map.cpp e procura pela esta função :
void Map::resetAwareRange()
{
const uint8 left = 8, top = 6;
setAwareRange({ left , top, left + 1, top + 1 });
}
e troque para :
void Map::resetAwareRange()
{
const uint8 left = 15, top = 8;
setAwareRange({ left , top, left + 1, top + 1 });
}