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

[C++]Remove Blockrespawn

Joe Rod

Discord: joerod1
Joined
Mar 16, 2011
Messages
499
Solutions
2
Reaction score
172
GitHub
joerod1
Hi guys, i need a code to remove the block respawn (block respawn is like :when a player stays in a respawn zone the monsters can't respawn " i need remove this)

Thanks in advance :)
Regards
 
maybe in spawn.cpp try to remove this , it is just a thought nothing for sure
PHP:
if(findPlayer(sb.pos))
		{
			sb.lastSpawn = OTSYS_TIME();
			continue;
		}
 
Back
Top