Skip to content

Instantly share code, notes, and snippets.

View AriDEV's full-sized avatar

Software Engineer AriDEV

View GitHub Profile
public class VirtualRealmNameInfo
{
public bool IsLocal { get; set; }
public string RealmNameActual { get; set; }
public string RealmNameNormalized { get; set; }
}
public class VirtualRealmInfo
{
public uint RealmAddress { get; set; }
// OFFSETS WowB_20740
// OFFSET NAME
004AC5FF CDataStore::PutInt32
00447553 Script_OpeningCinematic
009164E8 Script_SetOptOutOfLoot
// OPCODES WowB_20740
//OPCODE NAME
0x3528 = CMSG_OPENING_CINEMATIC
0x34E2 = CMSG_SET_OPT_OUT_OF_LOOT
// Auto generated for version 5.4.8 18291
0x0115 277 007AA7DE 13 SMSG_LEGACY_UNK
0x0302 770 00CE0941 66 SMSG_LEGACY_CHAT_SERVER_MESSAGE
0x0305 773 007B352A 69 SMSG_LEGACY_READ_ITEM_RESULT_OK
0x0332 818 0094E0D5 90 SMSG_LEGACY_UNK2
0x0532 1330 00A6BC4D 154 SMSG_LEGACY_FRIEND_STATUS
0x0534 1332 007AAE69 156 SMSG_LEGACY_CANCEL_COMBAT
0x0591 1425 00CCDCAA 169 SMSG_LEGACY_RAID_DIFFICULTY_SET
enum CombatRating
{
CR_UNUSED_1 = 0,
CR_DEFENSE_SKILL = 1,
CR_DODGE = 2,
CR_PARRY = 3,
CR_BLOCK = 4,
CR_HIT_MELEE = 5,
CR_HIT_RANGED = 6,
CR_HIT_SPELL = 7,
.../Server/AuthServer/Commands/AccountCommands.cs | 29 ++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/Projects/Server/AuthServer/Commands/AccountCommands.cs b/Projects/Server/AuthServer/Commands/AccountCommands.cs
index a660ac1..e97edb3 100644
--- a/Projects/Server/AuthServer/Commands/AccountCommands.cs
+++ b/Projects/Server/AuthServer/Commands/AccountCommands.cs
@@ -122,5 +122,34 @@ namespace AuthServer.Commands
Log.Message(LogType.Error, "Account '{0}' doesn't exist.", account.Email);
}