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

Desactivate broadcast msg

open data/lib/combat/combat.lua

Search for this
Code:
function broadcastMessage(message, messageType, bool)

delete this line :
Code:
print("> Broadcasted message: \"" .. message .. "\".")
 
Last edited by a moderator:
@Codex NG No it's not sources.


open data/lib/combat/combat.lua

Search for this
Code:
function broadcastMessage(message, messageType, bool)

delete this line :
Code:
print("> Broadcasted message: \"" .. message .. "\".")

I removed the print and still appear on screen o/ but thanks anyeway
 
Last edited by a moderator:
data/raids/ ? see all files of the raids, there have the "announcement" ...
exemple:
Code:
 <announce delay="1000" type="Event" message="The seals on Ferumbras old cidatel are glowing. Prepare for HIS return mortals." />
  <announce delay="5000" type="Event" message="Ferumbras return is at hand. The Edron Academy calls for Heroes to fight that evil." />
  <announce delay="10000" type="Event" message="Ferumbras has returned to his citadel once more. Stop him before its too late." />
removing this lines will resolve, but you need to do in all raid files
 
data/raids/ ? see all files of the raids, there have the "announcement" ...
exemple:
Code:
<announce delay="1000" type="Event" message="The seals on Ferumbras old cidatel are glowing. Prepare for HIS return mortals." />
  <announce delay="5000" type="Event" message="Ferumbras return is at hand. The Edron Academy calls for Heroes to fight that evil." />
  <announce delay="10000" type="Event" message="Ferumbras has returned to his citadel once more. Stop him before its too late." />
removing this lines will resolve, but you need to do in all raid files
I've already given solution.
 
Back
Top