How to fix Cube_request_result_list: Too long cube result list text. ?
1. Go in cube.cpp
2. Replace:
With this:
The problem was caused by a comparison between a negative number and a number
1. Go in cube.cpp
2. Replace:
Code:
if (resultText.size() - 20 >= CHAT_MAX_LEN)
{
sys_err("[CubeInfo] Too long cube result list text. (NPC: %d, length: %d)", npcVNUM, resultText.size());
resultText.clear();
resultCount = 0;
}
The problem was caused by a comparison between a negative number and a number