@@ -41,21 +41,21 @@ class createTemplate : public PlayerScript {
41
41
42
42
uint8 itemRoutine = METHOD_BOOST;
43
43
44
- if (sConfigMgr -> GetOption <bool >(" DeleteItems " , true ))
44
+ if (templateConfigData. GetConfigValue <bool >(PTRTemplateConfig::DELETE_ITEMS ))
45
45
itemRoutine = METHOD_DELETE;
46
46
47
47
scheduler.Schedule (Milliseconds (delayMultiplier * APPLY_DELAY), [player, index , itemRoutine](TaskContext context)
48
48
{
49
49
switch (context.GetRepeatCounter ())
50
50
{
51
51
case 0 :
52
- if (sConfigMgr -> GetOption <bool >(" TemplateDK " , true ))
52
+ if (templateConfigData. GetConfigValue <bool >(PTRTemplateConfig::TEMPLATE_DEATH_KNIGHT ))
53
53
{
54
- if (sConfigMgr -> GetOption <bool >(" TemplateEquipGear " , true ) && sConfigMgr -> GetOption <bool >(" TemplateBagGear " , true ))
54
+ if (templateConfigData. GetConfigValue <bool >(PTRTemplateConfig::TEMPLATE_EQUIP_GEAR ) && templateConfigData. GetConfigValue <bool >(PTRTemplateConfig::TEMPLATE_BAG_GEAR ))
55
55
TemplateHelperItemCleanup (player, SCOPE_ALL, itemRoutine);
56
- else if (sConfigMgr -> GetOption <bool >(" TemplateBagGear " , true ))
56
+ else if (templateConfigData. GetConfigValue <bool >(PTRTemplateConfig::TEMPLATE_BAG_GEAR ))
57
57
TemplateHelperItemCleanup (player, SCOPE_BAGS, itemRoutine);
58
- else if (sConfigMgr -> GetOption <bool >(" TemplateEquipGear " , true ))
58
+ else if (templateConfigData. GetConfigValue <bool >(PTRTemplateConfig::TEMPLATE_EQUIP_GEAR ))
59
59
TemplateHelperItemCleanup (player, SCOPE_EQUIPPED, itemRoutine);
60
60
61
61
AddTemplateDeathKnight (player);
@@ -64,63 +64,63 @@ class createTemplate : public PlayerScript {
64
64
}
65
65
break ;
66
66
case 1 :
67
- if (sConfigMgr -> GetOption <bool >(" TemplateLevel " , true ))
67
+ if (templateConfigData. GetConfigValue <bool >(PTRTemplateConfig::TEMPLATE_LEVEL ))
68
68
{
69
69
AddTemplateLevel (player, index );
70
70
player->SaveToDB (false , false );
71
71
LOG_DEBUG (" module" , " Finished applying level for template character {}." , player->GetGUID ().ToString ());
72
72
}
73
73
break ;
74
74
case 2 :
75
- if (sConfigMgr -> GetOption <bool >(" TemplateTaximask " , true ))
75
+ if (templateConfigData. GetConfigValue <bool >(PTRTemplateConfig::TEMPLATE_TAXIMASK ))
76
76
{
77
77
AddTemplateTaxi (player, index );
78
78
player->SaveToDB (false , false );
79
79
LOG_DEBUG (" module" , " Finished applying taximask for template character {}." , player->GetGUID ().ToString ());
80
80
}
81
81
break ;
82
82
case 3 :
83
- if (sConfigMgr -> GetOption <bool >(" TemplateHomebind " , true ))
83
+ if (templateConfigData. GetConfigValue <bool >(PTRTemplateConfig::TEMPLATE_HOMEBIND ))
84
84
{
85
85
AddTemplateHomebind (player, index );
86
86
player->SaveToDB (false , false );
87
87
LOG_DEBUG (" module" , " Finished applying homebind for template character {}." , player->GetGUID ().ToString ());
88
88
}
89
89
break ;
90
90
case 4 :
91
- if (sConfigMgr -> GetOption <bool >(" TemplateAchievements " , true ))
91
+ if (templateConfigData. GetConfigValue <bool >(PTRTemplateConfig::TEMPLATE_ACHIEVEMENTS ))
92
92
{
93
93
AddTemplateAchievements (player, index );
94
94
player->SaveToDB (false , false );
95
95
LOG_DEBUG (" module" , " Finished applying achievements for template character {}." , player->GetGUID ().ToString ());
96
96
}
97
97
break ;
98
98
case 5 :
99
- if (sConfigMgr -> GetOption <bool >(" TemplateQuests " , true ))
99
+ if (templateConfigData. GetConfigValue <bool >(PTRTemplateConfig::TEMPLATE_QUESTS ))
100
100
{
101
101
AddTemplateQuests (player, index );
102
102
player->SaveToDB (false , false );
103
103
LOG_DEBUG (" module" , " Finished applying quests for template character {}." , player->GetGUID ().ToString ());
104
104
}
105
105
break ;
106
106
case 6 :
107
- if (sConfigMgr -> GetOption <bool >(" TemplateReputation " , true ))
107
+ if (templateConfigData. GetConfigValue <bool >(PTRTemplateConfig::TEMPLATE_REPUTATION ))
108
108
{
109
109
AddTemplateReputation (player, index );
110
110
player->SaveToDB (false , false );
111
111
LOG_DEBUG (" module" , " Finished applying reputations for template character {}." , player->GetGUID ().ToString ());
112
112
}
113
113
break ;
114
114
case 7 :
115
- if (sConfigMgr -> GetOption <bool >(" TemplateSkills " , true ))
115
+ if (templateConfigData. GetConfigValue <bool >(PTRTemplateConfig::TEMPLATE_SKILLS ))
116
116
{
117
117
AddTemplateSkills (player, index );
118
118
player->SaveToDB (false , false );
119
119
LOG_DEBUG (" module" , " Finished applying skills for template character {}." , player->GetGUID ().ToString ());
120
120
}
121
121
break ;
122
122
case 8 :
123
- if (sConfigMgr -> GetOption <bool >(" TemplateEquipGear " , true ))
123
+ if (templateConfigData. GetConfigValue <bool >(PTRTemplateConfig::TEMPLATE_EQUIP_GEAR ))
124
124
{
125
125
TemplateHelperItemCleanup (player, SCOPE_EQUIPPED, itemRoutine);
126
126
AddTemplateWornGear (player, index );
@@ -129,7 +129,7 @@ class createTemplate : public PlayerScript {
129
129
}
130
130
break ;
131
131
case 9 :
132
- if (sConfigMgr -> GetOption <bool >(" TemplateBagGear " , true ))
132
+ if (templateConfigData. GetConfigValue <bool >(PTRTemplateConfig::TEMPLATE_BAG_GEAR ))
133
133
{
134
134
TemplateHelperItemCleanup (player, SCOPE_BAGS, itemRoutine);
135
135
AddTemplateBagGear (player, index );
@@ -138,31 +138,31 @@ class createTemplate : public PlayerScript {
138
138
}
139
139
break ;
140
140
case 10 :
141
- if (sConfigMgr -> GetOption <bool >(" TemplateSpells " , true ))
141
+ if (templateConfigData. GetConfigValue <bool >(PTRTemplateConfig::TEMPLATE_SPELLS ))
142
142
{
143
143
AddTemplateSpells (player, index );
144
144
player->SaveToDB (false , false );
145
145
LOG_DEBUG (" module" , " Finished applying spells for template character {}." , player->GetGUID ().ToString ());
146
146
}
147
147
break ;
148
148
case 11 :
149
- if (sConfigMgr -> GetOption <bool >(" TemplateHotbar " , true ))
149
+ if (templateConfigData. GetConfigValue <bool >(PTRTemplateConfig::TEMPLATE_HOTBAR ))
150
150
{
151
151
AddTemplateHotbar (player, index );
152
152
player->SaveToDB (false , false );
153
153
LOG_DEBUG (" module" , " Finished applying hotbar spells for template character {}." , player->GetGUID ().ToString ());
154
154
}
155
155
break ;
156
156
case 12 :
157
- if (sConfigMgr -> GetOption <bool >(" TemplateTeleport " , true ))
157
+ if (templateConfigData. GetConfigValue <bool >(PTRTemplateConfig::TEMPLATE_TELEPORT ))
158
158
{
159
159
AddTemplatePosition (player, index );
160
160
player->SaveToDB (false , false );
161
161
LOG_DEBUG (" module" , " Finished teleporting template character {}." , player->GetGUID ().ToString ());
162
162
}
163
163
break ;
164
164
case 13 :
165
- if (sConfigMgr -> GetOption <bool >(" TemplateResources " , true ))
165
+ if (templateConfigData. GetConfigValue <bool >(PTRTemplateConfig::TEMPLATE_RESOURCES ))
166
166
{
167
167
AddTemplateResources (player);
168
168
player->SaveToDB (false , false );
@@ -204,12 +204,12 @@ class createTemplate : public PlayerScript {
204
204
index , raceMask, classMask);
205
205
206
206
uint8 security = player->GetSession ()->GetSecurity ();
207
- if ((security < sConfigMgr -> GetOption <int8>(" EnableApplySecurity " , true )) && (security < sConfigMgr -> GetOption <int8>(" DisableApplySecurity " , true )))
207
+ if ((security < templateConfigData. GetConfigValue <int8>(PTRTemplateConfig::ENABLE_APPLY_SECURITY )) && (security < templateConfigData. GetConfigValue <int8>(PTRTemplateConfig::DISABLE_APPLY_SECURITY )))
208
208
{
209
209
LOG_DEBUG (" module" , " Player {} tried to apply template {}, but does not meet security level." , player->GetGUID ().ToString (), index );
210
210
return INSUFFICIENT_SECURITY_LEVEL;
211
211
}
212
- if ((security < sConfigMgr -> GetOption <int8>(" DisableApplySecurity " , true )) && !enable)
212
+ if ((security < templateConfigData. GetConfigValue <int8>(PTRTemplateConfig::DISABLE_APPLY_SECURITY )) && !enable)
213
213
{
214
214
LOG_DEBUG (" module" , " Player {} tried to apply template {}, but the template is disabled." , player->GetGUID ().ToString (), index );
215
215
return TEMPLATE_DISABLED_LOCAL;
@@ -221,12 +221,12 @@ class createTemplate : public PlayerScript {
221
221
}
222
222
if ((!(player->GetLevel () == (player->getClass () != CLASS_DEATH_KNIGHT
223
223
? sWorld ->getIntConfig (CONFIG_START_PLAYER_LEVEL)
224
- : sWorld ->getIntConfig (CONFIG_START_HEROIC_PLAYER_LEVEL)))) && !(sConfigMgr -> GetOption <bool >(" LevelEnable " , true )))
224
+ : sWorld ->getIntConfig (CONFIG_START_HEROIC_PLAYER_LEVEL)))) && !(templateConfigData. GetConfigValue <bool >(PTRTemplateConfig::LEVEL_ENABLE )))
225
225
{
226
226
LOG_DEBUG (" module" , " Player {} is not initial level, cannot apply template {}. Current level: {}" , player->GetGUID ().ToString (), index , player->GetLevel ());
227
227
return NOT_INITIAL_LEVEL;
228
228
}
229
- if (!sConfigMgr -> GetOption <bool >(" TemplateEnable " , true ))
229
+ if (!templateConfigData. GetConfigValue <bool >(PTRTemplateConfig::TEMPLATE_ENABLE ))
230
230
{
231
231
LOG_DEBUG (" module" , " Player {} tried to apply template {}, but templates are disabled." , player->GetGUID ().ToString (), index );
232
232
return TEMPLATE_DISABLED_GLOBAL;
@@ -556,7 +556,7 @@ class createTemplate : public PlayerScript {
556
556
int32 standingEntry = fields[1 ].Get <int32>();
557
557
FactionEntry const * factionId = sFactionStore .LookupEntry (factionEntry);
558
558
559
- if ((player->GetReputationMgr ().GetReputation (factionEntry) >= standingEntry) && sConfigMgr -> GetOption <bool >(" MaintainImprovedValues " , true ))
559
+ if ((player->GetReputationMgr ().GetReputation (factionEntry) >= standingEntry) && templateConfigData. GetConfigValue <bool >(PTRTemplateConfig::MAINTAIN_IMPROVED_VALUES ))
560
560
continue ;
561
561
562
562
player->GetReputationMgr ().SetOneFactionReputation (factionId, float (standingEntry), false ); // This was ripped from the `.modify reputation` command from base AC.
@@ -588,7 +588,7 @@ class createTemplate : public PlayerScript {
588
588
uint16 valueEntry = (*skillInfo)[1 ].Get <uint16>();
589
589
uint16 maxEntry = (*skillInfo)[2 ].Get <uint16>();
590
590
591
- if (((player->GetSkillValue (skillEntry) >= valueEntry) && (player->GetMaxSkillValue (skillEntry) >= maxEntry)) && sConfigMgr -> GetOption <bool >(" MaintainImprovedValues " , true ))
591
+ if (((player->GetSkillValue (skillEntry) >= valueEntry) && (player->GetMaxSkillValue (skillEntry) >= maxEntry)) && templateConfigData. GetConfigValue <bool >(PTRTemplateConfig::MAINTAIN_IMPROVED_VALUES ))
592
592
continue ;
593
593
594
594
player->SetSkill (skillEntry, 0 , valueEntry, maxEntry); // Don't know what step overload is used for, being zeroed here.
@@ -862,15 +862,15 @@ class announce : public PlayerScript {
862
862
{
863
863
static createTemplate templatevar;
864
864
865
- if (!sConfigMgr -> GetOption <bool >(" TemplateEnable " , true ))
865
+ if (!templateConfigData. GetConfigValue <bool >(PTRTemplateConfig::TEMPLATE_ENABLE ))
866
866
{
867
867
return ;
868
868
}
869
869
870
- if (sConfigMgr -> GetOption <bool >(" AnnounceEnable " , true ))
870
+ if (templateConfigData. GetConfigValue <bool >(PTRTemplateConfig::ANNOUNCE_ENABLE ))
871
871
ChatHandler (player->GetSession ()).PSendModuleSysMessage (module_string, ALERT_MODULE_PRESENCE);
872
872
873
- uint32 templateIndex = sConfigMgr -> GetOption <uint32>(" LoginTemplateIndex " , 0 );
873
+ uint32 templateIndex = templateConfigData. GetConfigValue <uint32>(PTRTemplateConfig::LOGIN_TEMPLATE_INDEX );
874
874
if (!templateIndex || !player->HasAtLoginFlag (AT_LOGIN_FIRST))
875
875
return ;
876
876
@@ -1004,9 +1004,9 @@ class ptr_template_commandscript : public CommandScript
1004
1004
uint8 enableEntry = (*index )[1 ].Get <uint8>();
1005
1005
std::string templateName = GetTemplateName (handler, indexEntry);
1006
1006
1007
- if ((playerSecurity >= sConfigMgr -> GetOption <int8>(" EnableListSecurity " , true ) && enableEntry) || (playerSecurity >= sConfigMgr -> GetOption <int8>(" DisableListSecurity " , true ) && !enableEntry))
1007
+ if ((playerSecurity >= templateConfigData. GetConfigValue <int8>(PTRTemplateConfig::ENABLE_LIST_SECURITY ) && enableEntry) || (playerSecurity >= templateConfigData. GetConfigValue <int8>(PTRTemplateConfig::DISABLE_LIST_SECURITY ) && !enableEntry))
1008
1008
{
1009
- if (playerSecurity >= sConfigMgr -> GetOption <int8>(" StatusSecurityText " , true ))
1009
+ if (playerSecurity >= templateConfigData. GetConfigValue <int8>(PTRTemplateConfig::STATUS_SECURITY_TEXT ))
1010
1010
{
1011
1011
std::string enableText = enableEntry
1012
1012
? handler->GetModuleString (module_string, DETAIL_ENABLE)[0 ]
0 commit comments