UPDATE: There is a new DBM update that removes the Rhonin dialogue. Download it at curse.

Those of you annoyed to no end with Rhonin’s lengthy dialogue anytime entering upon the world after teleporting or login into the game, well that was your Deadly Boss Mod (DBM).

Open your World of Warcraft folder: \World of Warcraft\Interface\AddOns\DBM-Core

In the line of code found in the DBM-Core.lua you can find the following text (open with Notepad):

do
local soundFiles = {
"Sound\\Creature\\Rhonin\\UR_Rhonin_Event01.ogg",--5
"Sound\\Creature\\Rhonin\\UR_Rhonin_Event02.ogg",--5
"Sound\\Creature\\Rhonin\\UR_Rhonin_Event03.ogg",--5.5
"Sound\\Creature\\Rhonin\\UR_Rhonin_Event04.ogg",--9
"Sound\\Creature\\Rhonin\\UR_Rhonin_Event05.ogg",--4
"Sound\\Creature\\Rhonin\\UR_Rhonin_Event06.ogg",--10
"Sound\\Creature\\Rhonin\\UR_Rhonin_Event07.ogg",--15
"Sound\\Creature\\Rhonin\\UR_Rhonin_Event08.ogg",
}
local function playDelay(self, count)
self:PlaySoundFile(soundFiles[count])
end

function DBM:AprilFools()
self:Unschedule(self.AprilFools)
local currentMapId = GetPlayerMapAreaID("player")
if not currentMapId then
SetMapToCurrentZone()
currentMapId = GetCurrentMapAreaID()
end
self:Schedule(120 + math.random(0, 300) , self.AprilFools, self)
if currentMapId ~= 1014 then return end--Legion Dalaran
playDelay(self, 1)
self:Schedule(5, playDelay, self, 2)
self:Schedule(10, playDelay, self, 3)
self:Schedule(15.5, playDelay, self, 4)
self:Schedule(24.5, playDelay, self, 5)
self:Schedule(28, playDelay, self, 6)
self:Schedule(37.5, playDelay, self, 7)
self:Schedule(50.5, playDelay, self, 8)
end
function DBM:PLAYER_ENTERING_WORLD()
local weekday, month, day, year = CalendarGetDate()--Must be called after PLAYER_ENTERING_WORLD
if month == 4 and day == 1 then--April 1st
self:Schedule(180 + math.random(0, 300) , self.AprilFools, self)
end

 

According to tomshe in the following Reddit thread, there are two known ways to disable this april’s fool code. Either disable the addon (which is not recommended if you plan to raid throughout the course of the day), or edit the DBM-Core.lua file after searching for “april” — then delete the line of code seen above. It’s recommended to copy the file before editing it, in case something goes wrong.