12
12
#include < math.h>
13
13
#include < unordered_map>
14
14
#include " ObjectGuid.h"
15
+ #include " utils/Utils.h"
16
+ #include < iostream>
17
+ #include < vector>
18
+ #include < string>
19
+ #include < cstdint>
15
20
16
21
bool SoloCraftEnable = 1 ;
17
22
bool SoloCraftAnnounceModule = 1 ;
@@ -28,6 +33,7 @@ std::unordered_map<uint8, uint32> classes;
28
33
std::unordered_map<uint32, uint32> dungeons;
29
34
std::unordered_map<uint32, float > diff_Multiplier;
30
35
std::unordered_map<uint32, float > diff_Multiplier_Heroics;
36
+ std::vector<uint32_t > SolocraftInstanceExcluded;
31
37
32
38
float D5 = 1.0 ;
33
39
float D10 = 1.0 ;
@@ -305,6 +311,9 @@ class SolocraftConfig : public WorldScript
305
311
// Unique Raids beyond the heroic and normal versions of themselves
306
312
D649H10 = sConfigMgr ->GetOption <float >(" Solocraft.ArgentTournamentRaidH10" , 10.0 ); // Trial of the Crusader 10 Heroic
307
313
D649H25 = sConfigMgr ->GetOption <float >(" Solocraft.ArgentTournamentRaidH25" , 25.0 ); // Trial of the Crusader 25 Heroic
314
+
315
+ // Get from conf excluded map for Solocraft scaling
316
+ LoadList (sConfigMgr ->GetOption <std::string>(" Solocraft.Instance.Excluded" , " " ), SolocraftInstanceExcluded);
308
317
}
309
318
};
310
319
@@ -361,6 +370,11 @@ class SolocraftPlayerInstanceHandler : public PlayerScript
361
370
{
362
371
public:
363
372
SolocraftPlayerInstanceHandler () : PlayerScript(" SolocraftPlayerInstanceHandler" ) {}
373
+
374
+ bool IsInSolocraftInstanceExcludedList (uint32 id)
375
+ {
376
+ return find (SolocraftInstanceExcluded.begin (), SolocraftInstanceExcluded.end (), id) != SolocraftInstanceExcluded.end ();
377
+ }
364
378
365
379
void OnMapChanged (Player* player) override
366
380
{
@@ -380,6 +394,11 @@ class SolocraftPlayerInstanceHandler : public PlayerScript
380
394
{
381
395
if (map)
382
396
{
397
+ if (IsInSolocraftInstanceExcludedList (map->GetId ()))
398
+ {
399
+ return 0 ;
400
+ }
401
+
383
402
if (map->Is25ManRaid ())
384
403
{
385
404
if (map->IsHeroic () && map->GetId () == 649 )
@@ -536,8 +555,12 @@ class SolocraftPlayerInstanceHandler : public PlayerScript
536
555
// Apply the player buffs
537
556
void ApplyBuffs (Player* player, Map* map, float difficulty, int dunLevel, int numInGroup, int classBalance)
538
557
{
539
- // Check whether to buff the player or check to debuff back to normal
540
- if (difficulty != 0 )
558
+ // Check whether to debuff back to normal or check to buff the player
559
+ if (difficulty == 0 || IsInSolocraftInstanceExcludedList (map->GetId ()))
560
+ {
561
+ ClearBuffs (player); // Check to revert player back to normal - Moving this here fixed logout and login while in instance buff and debuff issues
562
+ }
563
+ else
541
564
{
542
565
std::ostringstream ss;
543
566
@@ -709,10 +732,6 @@ class SolocraftPlayerInstanceHandler : public PlayerScript
709
732
ClearBuffs (player); // Check to revert player back to normal
710
733
}
711
734
}
712
- else
713
- {
714
- ClearBuffs (player); // Check to revert player back to normal - Moving this here fixed logout and login while in instance buff and debuff issues
715
- }
716
735
}
717
736
718
737
private:
0 commit comments