@@ -242,72 +242,7 @@ class createTemplate : public PlayerScript {
242
242
return CHECK_PASSED;
243
243
}
244
244
}
245
-
246
- enum checkCodes
247
- {
248
- MISSING_TEMPLATE_INFO = 1 ,
249
- NOT_INITIAL_LEVEL = 2 ,
250
- TEMPLATE_DISABLED_GLOBAL = 3 ,
251
- INSUFFICIENT_SECURITY_LEVEL = 4 ,
252
- TEMPLATE_DISABLED_LOCAL = 5 ,
253
- CHECK_PASSED = 0
254
- };
255
-
256
- enum templateStrings
257
- {
258
- FEEDBACK_TEMPLATE_ENABLE = 0 ,
259
- FEEDBACK_TEMPLATE_MISSING = 1 ,
260
- FEEDBACK_TEMPLATE_DISABLE = 2 ,
261
- ERROR_TEMPLATE_INFO = 3 ,
262
- ERROR_TEMPLATE_LEVEL = 4 ,
263
- ERROR_TEMPLATE_DIABLE_GLOBAL = 5 ,
264
- ERROR_TEMPLATE_SECURITY = 6 ,
265
- ERROR_TEMPLATE_DISABLE_LOCAL = 7 ,
266
- MESSAGE_TEMPLATE_LIST = 8 ,
267
- MESSAGE_TEMPLATE_LIST_DETAIL = 9 ,
268
- MESSAGE_TEMPLATE_LIST_SIMPLE = 10 ,
269
- MESSAGE_TEMPLATE_LIST_EMPTY = 11 ,
270
- DETAIL_ENABLE = 12 ,
271
- DETAIL_DISABLE = 13 ,
272
- ALERT_MODULE_PRESENCE = 14 ,
273
- MAIL_ERROR_EQUIP_BODY = 15 ,
274
- MAIL_BOOST_SUBJECT = 16 ,
275
- MAIL_BOOST_BODY = 17 ,
276
- MAIL_RESURRECTION_SUBJECT = 18 ,
277
- MAIL_RESURRECTION_BODY = 19
278
- };
279
-
280
- enum templateMail
281
- {
282
- MAIL_BOOST = 403 ,
283
- MAIL_RESURRECTION = 344
284
- };
285
-
286
245
private:
287
-
288
- enum TemplateEnums
289
- {
290
- APPLY_DELAY = 25 ,
291
- APPLY_RATE = 50 ,
292
- HORDE_SIMILAR = -1 ,
293
- ACTION_BUTTON_BEGIN = 0 ,
294
- CONTAINER_BACKPACK = 0 ,
295
- CONTAINER_END = 5 ,
296
- ITEM_GOLD = 8 ,
297
- INVENTORY_SLOT_START = 0 ,
298
- MAILED_ITEM_DELAY = 180
299
- };
300
-
301
- enum itemCleanupCodes
302
- {
303
- METHOD_DELETE = 0 ,
304
- METHOD_BOOST = 1 ,
305
- METHOD_SCROLL = 2 ,
306
- SCOPE_EQUIPPED = 0 ,
307
- SCOPE_BAGS = 1 ,
308
- SCOPE_ALL = 2
309
- };
310
-
311
246
static void AddTemplateAchievements (Player* player, uint32 index)
312
247
{ // 0
313
248
QueryResult achievementInfo = WorldDatabase.Query (" SELECT AchievementID FROM mod_ptrtemplate_achievements WHERE (ID = {} AND RaceMask & {} AND ClassMask & {})" , index , player->getRaceMask (), player->getClassMask ());
@@ -355,7 +290,7 @@ class createTemplate : public PlayerScript {
355
290
continue ;
356
291
357
292
ItemPosCountVec dest;
358
- if (bagEntry > CONTAINER_BACKPACK && bagEntry < CONTAINER_END ) // If bag is an equipped container.
293
+ if (bagEntry > CONTAINER_BACKPACK && bagEntry < CONTAINER_FINISH ) // If bag is an equipped container.
359
294
{ // TODO: Make this whole section better.
360
295
do // Also TODO: Add support for adding to bank bag contents. Damn paladins.
361
296
{
@@ -933,7 +868,7 @@ class announce : public PlayerScript {
933
868
static createTemplate templatevar;
934
869
935
870
if (sConfigMgr ->GetOption <bool >(" AnnounceEnable" , true ))
936
- ChatHandler (player->GetSession ()).PSendModuleSysMessage (module_string, templatevar. ALERT_MODULE_PRESENCE );
871
+ ChatHandler (player->GetSession ()).PSendModuleSysMessage (module_string, ALERT_MODULE_PRESENCE);
937
872
938
873
uint32 templateIndex = sConfigMgr ->GetOption <uint32>(" LoginTemplateIndex" , 0 );
939
874
if (!templateIndex || !player->HasAtLoginFlag (AT_LOGIN_FIRST))
@@ -978,12 +913,12 @@ class ptr_template_commandscript : public CommandScript
978
913
979
914
std::string templateName = GetTemplateName (handler, index );
980
915
981
- handler->PSendModuleSysMessage (module_string, createTemplate:: FEEDBACK_TEMPLATE_ENABLE, index , templateName);
916
+ handler->PSendModuleSysMessage (module_string, FEEDBACK_TEMPLATE_ENABLE, index , templateName);
982
917
return true ;
983
918
}
984
919
else
985
920
{
986
- handler->PSendModuleSysMessage (module_string, createTemplate:: FEEDBACK_TEMPLATE_MISSING);
921
+ handler->PSendModuleSysMessage (module_string, FEEDBACK_TEMPLATE_MISSING);
987
922
return false ;
988
923
}
989
924
}
@@ -997,12 +932,12 @@ class ptr_template_commandscript : public CommandScript
997
932
998
933
std::string templateName = GetTemplateName (handler, index );
999
934
1000
- handler->PSendModuleSysMessage (module_string, createTemplate:: FEEDBACK_TEMPLATE_DISABLE, index , templateName);
935
+ handler->PSendModuleSysMessage (module_string, FEEDBACK_TEMPLATE_DISABLE, index , templateName);
1001
936
return true ;
1002
937
}
1003
938
else
1004
939
{
1005
- handler->PSendModuleSysMessage (module_string, createTemplate:: FEEDBACK_TEMPLATE_MISSING);
940
+ handler->PSendModuleSysMessage (module_string, FEEDBACK_TEMPLATE_MISSING);
1006
941
return false ;
1007
942
}
1008
943
}
@@ -1022,20 +957,20 @@ class ptr_template_commandscript : public CommandScript
1022
957
1023
958
switch (templatevar.CheckTemplateQualifier (target, index , enable))
1024
959
{
1025
- case templatevar. MISSING_TEMPLATE_INFO :
1026
- handler->PSendModuleSysMessage (module_string, templatevar. ERROR_TEMPLATE_INFO );
960
+ case MISSING_TEMPLATE_INFO:
961
+ handler->PSendModuleSysMessage (module_string, ERROR_TEMPLATE_INFO);
1027
962
return true ;
1028
- case templatevar. NOT_INITIAL_LEVEL :
1029
- handler->PSendModuleSysMessage (module_string, templatevar. ERROR_TEMPLATE_LEVEL );
963
+ case NOT_INITIAL_LEVEL:
964
+ handler->PSendModuleSysMessage (module_string, ERROR_TEMPLATE_LEVEL);
1030
965
return true ;
1031
- case templatevar. TEMPLATE_DISABLED_GLOBAL :
1032
- handler->PSendModuleSysMessage (module_string, templatevar. ERROR_TEMPLATE_DIABLE_GLOBAL );
966
+ case TEMPLATE_DISABLED_GLOBAL:
967
+ handler->PSendModuleSysMessage (module_string, ERROR_TEMPLATE_DIABLE_GLOBAL);
1033
968
return true ;
1034
- case templatevar. INSUFFICIENT_SECURITY_LEVEL :
1035
- handler->PSendModuleSysMessage (module_string, templatevar. ERROR_TEMPLATE_SECURITY );
969
+ case INSUFFICIENT_SECURITY_LEVEL:
970
+ handler->PSendModuleSysMessage (module_string, ERROR_TEMPLATE_SECURITY);
1036
971
return true ;
1037
- case templatevar. TEMPLATE_DISABLED_LOCAL :
1038
- handler->PSendModuleSysMessage (module_string, templatevar. ERROR_TEMPLATE_DISABLE_LOCAL );
972
+ case TEMPLATE_DISABLED_LOCAL:
973
+ handler->PSendModuleSysMessage (module_string, ERROR_TEMPLATE_DISABLE_LOCAL);
1039
974
return true ;
1040
975
default :
1041
976
break ;
@@ -1047,7 +982,7 @@ class ptr_template_commandscript : public CommandScript
1047
982
}
1048
983
else
1049
984
{
1050
- handler->PSendModuleSysMessage (module_string, templatevar. FEEDBACK_TEMPLATE_MISSING );
985
+ handler->PSendModuleSysMessage (module_string, FEEDBACK_TEMPLATE_MISSING);
1051
986
return true ;
1052
987
}
1053
988
}
@@ -1057,7 +992,7 @@ class ptr_template_commandscript : public CommandScript
1057
992
QueryResult index = WorldDatabase.Query (" SELECT ID, Enable FROM mod_ptrtemplate_index ORDER BY ID" );
1058
993
if (index )
1059
994
{
1060
- handler->PSendModuleSysMessage (module_string, createTemplate:: MESSAGE_TEMPLATE_LIST);
995
+ handler->PSendModuleSysMessage (module_string, MESSAGE_TEMPLATE_LIST);
1061
996
1062
997
int8 playerSecurity = handler->IsConsole ()
1063
998
? SEC_CONSOLE
@@ -1074,18 +1009,18 @@ class ptr_template_commandscript : public CommandScript
1074
1009
if (playerSecurity >= sConfigMgr ->GetOption <int8>(" StatusSecurityText" , true ))
1075
1010
{
1076
1011
std::string enableText = enableEntry
1077
- ? handler->GetModuleString (module_string, createTemplate:: DETAIL_ENABLE)[0 ]
1078
- : handler->GetModuleString (module_string, createTemplate:: DETAIL_DISABLE)[0 ];
1012
+ ? handler->GetModuleString (module_string, DETAIL_ENABLE)[0 ]
1013
+ : handler->GetModuleString (module_string, DETAIL_DISABLE)[0 ];
1079
1014
1080
- handler->PSendModuleSysMessage (module_string, createTemplate:: MESSAGE_TEMPLATE_LIST_DETAIL, indexEntry, templateName, enableText);
1015
+ handler->PSendModuleSysMessage (module_string, MESSAGE_TEMPLATE_LIST_DETAIL, indexEntry, templateName, enableText);
1081
1016
}
1082
1017
else
1083
- handler->PSendModuleSysMessage (module_string, createTemplate:: MESSAGE_TEMPLATE_LIST_SIMPLE, indexEntry, templateName);
1018
+ handler->PSendModuleSysMessage (module_string, MESSAGE_TEMPLATE_LIST_SIMPLE, indexEntry, templateName);
1084
1019
}
1085
1020
} while (index ->NextRow ());
1086
1021
}
1087
1022
else
1088
- handler->PSendModuleSysMessage (module_string, createTemplate:: MESSAGE_TEMPLATE_LIST_EMPTY);
1023
+ handler->PSendModuleSysMessage (module_string, MESSAGE_TEMPLATE_LIST_EMPTY);
1089
1024
1090
1025
return true ;
1091
1026
}
0 commit comments