Okay so I found the code that needs to be modified.
GetDKP\GetDKPAdmin\GetDKPAdmin.lua
~ line 310 where it starts
Code:
-----------------------------------------------------------------------------------
-------------------------------- Rule 2 ------------------------------------------
elseif (GDKPvar_save.GDA_Rule == 2) then
if (((event == "CHAT_MSG_WHISPER" and GDKPvar_save.GDA_Chatlook_Rule2 == 1 ) or (event == "CHAT_MSG_GUILD" and GDKPvar_save.GDA_Chatlook_Rule2 == 3 ) or (event =="CHAT_MSG_RAID" and GDKPvar_save.GDA_Chatlook_Rule2 == 2 ) or ( event =="CHAT_MSG_RAID_LEADER" and GDKPvar_save.GDA_Chatlook_Rule2 == 2)) ) then
if (GetDKPAdmin_List ~= nil and gdkp.players ~= nil and GDKPvar_save.GDA_OnOff == 1 and ((string.upper(arg1) == string.upper(GDKPvar_save.GDA_BetWord)) or (string.upper(arg1) == string.upper(GDKPvar_save.GDA_GreedWord))) and IsRaidOfficer() and GDA_CD_Stop == false) then
if (string.upper(arg1) == string.upper(GDKPvar_save.GDA_GreedWord)) then
greedroll = true;
else
greedroll = false;
end;
find = 0;
if (GDA_Countdown == 1 and GDA_CD_StartTime == nil) then
GDA_CD_StartTime = time();
GetDKPAdmin_CD_Button:SetText(GDA_CD_OFF)
end;
How would I modify this so if someone else starts the count down it will register on my screen as well.