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
@@ -348,9 +337,7 @@ class createTemplate : public PlayerScript {
348
337
QueryResult containerInfo = CharacterDatabase.Query("SELECT slot FROM character_inventory WHERE (bag = 0 AND guid = {})", (player->GetGUID().GetCounter()));
349
338
350
339
if (!containerInfo) // Apparently this can happen sometimes.
351
-
{
352
340
continue;
353
-
}
354
341
355
342
Field* bagFields = bagInfo->Fetch();
356
343
Field* containerFields = containerInfo->Fetch();
@@ -365,72 +352,63 @@ class createTemplate : public PlayerScript {
365
352
continue;
366
353
}
367
354
if ((slotEntry < INVENTORY_SLOT_BAG_END || slotEntry >= PLAYER_SLOT_END) && bagEntry == CONTAINER_BACKPACK) // If item is either an equipped armorpiece, weapon, or container.
368
-
{
369
355
continue;
370
-
}
356
+
371
357
ItemPosCountVec dest;
372
358
if (bagEntry > CONTAINER_BACKPACK && bagEntry < CONTAINER_END) // If bag is an equipped container.
373
359
{ // TODO: Make this whole section better.
374
360
do// Also TODO: Add support for adding to bank bag contents. Damn paladins.
375
361
{
376
362
if (!containerFields) // Apparently this can happen sometimes.
@@ -463,9 +441,7 @@ class createTemplate : public PlayerScript {
463
441
staticvoidAddTemplateDeathKnight(Player* player) // Pretty much all of this is copied from acidmanifesto's lovely work on the skip-dk-starting-area module.
for (uint8 j = ACTION_BUTTON_BEGIN; j <= MAX_ACTION_BUTTONS; j++)
565
-
{
566
541
player->removeActionButton(j);
567
-
}
542
+
568
543
// 0 1 2
569
544
QueryResult barInfo = WorldDatabase.Query("SELECT Button, Action, Type FROM mod_ptrtemplate_action WHERE (ID = {} AND RaceMask & {} AND ClassMask & {})", index, player->getRaceMask(), player->getClassMask());
570
545
if (barInfo)
@@ -574,6 +549,7 @@ class createTemplate : public PlayerScript {
574
549
uint8 buttonEntry = (*barInfo)[0].Get<uint8>();
575
550
uint32 actionEntry = (*barInfo)[1].Get<uint32>();
576
551
uint8 typeEntry = (*barInfo)[2].Get<uint8>();
552
+
577
553
if (player->addActionButton(buttonEntry, actionEntry, typeEntry))
578
554
LOG_DEBUG("module", "Added hotbar spell {} on button {} with type {} for template character {}.", actionEntry, buttonEntry, typeEntry, player->GetGUID().ToString());
579
555
else
@@ -651,9 +627,8 @@ class createTemplate : public PlayerScript {
if ((player->GetReputationMgr().GetReputation(factionEntry) >= standingEntry) && sConfigMgr->GetOption<bool>("MaintainImprovedValues", true))
654
-
{
655
630
continue;
656
-
}
631
+
657
632
player->GetReputationMgr().SetOneFactionReputation(factionId, float(standingEntry), false); // This was ripped from the `.modify reputation` command from base AC.
player->SetSkill(skillEntry, 0, valueEntry, maxEntry); // Don't know what step overload is used for, being zeroed here.
694
665
LOG_DEBUG("module", "Added skill {} to template character {} with curvalue {} and maxvalue {}.", skillEntry, player->GetGUID().ToString(), valueEntry, maxEntry);
695
666
} while (skillInfo->NextRow());
@@ -707,15 +678,13 @@ class createTemplate : public PlayerScript {
LOG_DEBUG("module", "Added spell {} to template character {}.", spellEntry, player->GetGUID().ToString());
715
685
} while (spellInfo->NextRow());
716
-
WorldPacket data(SMSG_TALENTS_INVOLUNTARILY_RESET, 1); // todo: put this in header and get it out of my gosh darn face
717
-
data << uint8(0);
718
-
player->SendMessageToSet(&data, true);
686
+
687
+
SendTalentReset(player);
719
688
}
720
689
}
721
690
@@ -749,30 +718,25 @@ class createTemplate : public PlayerScript {
749
718
uint32 itemEntry = (*gearInfo)[2].Get<uint32>();
750
719
751
720
if ((slotEntry >= INVENTORY_SLOT_BAG_END && slotEntry < BANK_SLOT_BAG_START) || (slotEntry >= BANK_SLOT_BAG_END && slotEntry < PLAYER_SLOT_END) || bagEntry != CONTAINER_BACKPACK) // If item is not either an equipped armorpiece, weapon, or container.
752
-
{
753
721
continue;
754
-
}
722
+
755
723
if (slotEntry >= PLAYER_SLOT_END)
756
-
{
757
724
player->SetAmmo(itemEntry);
758
-
}
759
725
else
760
-
player->EquipNewItem(slotEntry, itemEntry, true);
726
+
player->EquipNewItem(slotEntry, itemEntry, true);
727
+
761
728
if (slotEntry >= BANK_SLOT_BAG_START && slotEntry < BANK_SLOT_BAG_END)
0 commit comments