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

blocking spawn

Remove, walk up to the character and use /r, you can also kick the player etc
If this is a big problem I would rewrite the spawn system to what Tibia is using today aka the monster spawns even if there is a player there or not.
 
Remove, walk up to the character and use /r, you can also kick the player etc
If this is a big problem I would rewrite the spawn system to what Tibia is using today aka the monster spawns even if there is a player there or not.
i asked in spawn.cpp :D
 
Find in void Spawn::checkSpawn() and delete

Code:
        if(findPlayer(sb.pos))
        {
            sb.lastSpawn = OTSYS_TIME();
            continue;
        }
 
Solution
Back
Top