Testado no TFS 0.3.6pl1.
Vá até game.cpp e procure por:
return false; } if (specialVip && !player->hasFlag(PlayerFlag_SpecialVIP)) { player->sendTextMessage(MSG_STATUS_SMALL, "You cannot add this player."); return false; } bool online = false;
Mude para:
return false; } if((specialVip && !player->hasFlag(PlayerFlag_SpecialVIP)) || (player->getAccess() < 3 && getPlayerByName(name)->getAccess() >= 3)) { player->sendTextMessage(MSG_STATUS_SMALL, "You cannot add this player."); return false; } bool online = false;
Créditos: Antharaz