You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (!player->GetPlayerSetting(ModZoneDifficultyString + "ct", SETTING_BLACK_TEMPLE).value)
1035
-
{
1036
-
creature->Whisper("Ah, hero! The threads of fate bring you to me. To claim the rewards you desire, you must first confront Illidan Stormrage on Mythic difficulty.",
1037
-
LANG_UNIVERSAL, player);
1038
-
returnfalse;
1039
-
}
1040
-
}
1041
-
elseif (category == TYPE_RAID_ZA)
1035
+
switch (category)
1042
1036
{
1043
-
if (!player->GetPlayerSetting(ModZoneDifficultyString + "ct", SETTING_ZULAMAN).value)
1044
-
{
1045
-
creature->Whisper("Ah, hero! The threads of fate bring you to me. To claim the rewards you desire, you must first confront Zul'jin on Mythic difficulty.",
1046
-
LANG_UNIVERSAL, player);
1047
-
returnfalse;
1048
-
}
1037
+
case TYPE_RAID_SSC:
1038
+
if (!player->GetPlayerSetting(ModZoneDifficultyString + "ct", SETTING_SSC).value)
1039
+
{
1040
+
creature->Whisper("Ah, hero! The threads of fate bring you to me. To claim the rewards you desire, you must first confront Lady Vashj on Mythic difficulty.",
1041
+
LANG_UNIVERSAL, player);
1042
+
returnfalse;
1043
+
}
1044
+
break;
1045
+
case TYPE_RAID_T6:
1046
+
if (!player->GetPlayerSetting(ModZoneDifficultyString + "ct", SETTING_BLACK_TEMPLE).value)
1047
+
{
1048
+
creature->Whisper("Ah, hero! The threads of fate bring you to me. To claim the rewards you desire, you must first confront Illidan Stormrage on Mythic difficulty.",
1049
+
LANG_UNIVERSAL, player);
1050
+
returnfalse;
1051
+
}
1052
+
break;
1053
+
case TYPE_RAID_ZA:
1054
+
if (!player->GetPlayerSetting(ModZoneDifficultyString + "ct", SETTING_ZULAMAN).value)
1055
+
{
1056
+
creature->Whisper("Ah, hero! The threads of fate bring you to me. To claim the rewards you desire, you must first confront Zul'jin on Mythic difficulty.",
1057
+
LANG_UNIVERSAL, player);
1058
+
returnfalse;
1059
+
}
1060
+
break;
1061
+
case TYPE_RAID_HYJAL:
1062
+
if (!player->GetPlayerSetting(ModZoneDifficultyString + "ct", SETTING_HYJAL).value)
1063
+
{
1064
+
creature->Whisper("Ah, hero! The threads of fate bring you to me. To claim the rewards you desire, you must first confront Archimonde on Mythic difficulty.",
0 commit comments