diff --git a/PersonalDiscordBot/Classes/RPG.cs b/PersonalDiscordBot/Classes/RPG.cs index a838690..b4655e9 100644 --- a/PersonalDiscordBot/Classes/RPG.cs +++ b/PersonalDiscordBot/Classes/RPG.cs @@ -747,7 +747,7 @@ public static Armor ArmorPicker(RarityType rarityType, Character chara) } else { - armor = Armors.ArmorRandomGen(rarityType, ChooseArmorType(chara), chara.Lvl); + //armor = Armors.ArmorRandomGen(rarityType, ChooseArmorType(chara), chara.Lvl); } return armor; @@ -1193,10 +1193,10 @@ public static class Armors imperialArmor }; - public static Armor ArmorRandomGen(RarityType rarity, ArmorType type, int level) - { + //public static Armor ArmorRandomGen(RarityType rarity, ArmorType type, int level) + //{ - } + //} } public static class Items @@ -1279,9 +1279,10 @@ public class Testing { public static string line = Environment.NewLine; - public static string RandomWeap() + public static string RandomWeap(out string namer) { var pickedLoot = (Weapon)LootDrop.PickLoot(testiculeesCharacter); + namer = pickedLoot.Name; return ($"{line}Name: {pickedLoot.Name}{line}Description: {pickedLoot.Desc}{line}Type: {pickedLoot.Type.ToString()}{line}Rarity: {pickedLoot.Rarity}{line}Level: {pickedLoot.Lvl}{line}Max Durability: {pickedLoot.MaxDurability}{line}Current Durability: {pickedLoot.CurrentDurability}{line}Worth: {pickedLoot.Worth}{line}Speed: {pickedLoot.Speed}{line}Physical Damage: {pickedLoot.PhysicalDamage}"); } @@ -1368,6 +1369,15 @@ public static string RandomMassTest(int num) return ($"{line}sword = {sword}{line}dagger = {dagger}{line}greatsword = {greatsword}{line}katana = {katana}{line}staff = {staff}{line}focusStone = {focusStone}{line}spear = {spear}{line}dragonSpear = {dragonSpear}{line}twinSwords = {twinSwords}{line}other = {other}{line}starter = {starter}{line}unique = {unique}{line}------------------------------------------------{line}common = {common}{line}uncommon = {uncommon}{line}rare = {rare}{line}epic = {epic}{line}legendary = {legendary}{line}"); } + public static string GetMarried() + { + string namer = ""; + var weapon = RandomWeap(out namer); + var time = rng.Next(100000, 382947828); + var whatchaSay = weapon != null ? ($"{line}Hello Richard.{line}You have {time} seconds(s) of safety remaining until Heather uses {namer} on yo ass. You know why.{line}Hint: Marriage.{line}Good Luck!{line}**************************{weapon}") : ($"{line}Hello Richard.{line}You have {time} seconds(s) of safety remaining until Heather uses [[ExceptionUnhandled]] on yo ass. You know why.{line}Hint: Marriage.{line}Good Luck!{line}***********************{line}This was supposed to be a weapon but the code blew it.{line}Thankfully I handled the unhandled exception exceptionally."); + return whatchaSay; + } + public static OwnerProfile testiculeesProfile = new OwnerProfile() { CurrentCharacter = testiculeesCharacter, diff --git a/PersonalDiscordBot/MainWindow.xaml.cs b/PersonalDiscordBot/MainWindow.xaml.cs index b9c22cd..fcc5b64 100644 --- a/PersonalDiscordBot/MainWindow.xaml.cs +++ b/PersonalDiscordBot/MainWindow.xaml.cs @@ -1080,7 +1080,7 @@ private async Task MessageHandler(SocketMessage arg) private void btnTest_Click(object sender, RoutedEventArgs e) { //uStatusUpdate(Testing.RandomMassTest(1000)); - uStatusUpdate(Testing.RandomWeap()); + uStatusUpdate(Testing.GetMarried()); } #endregion diff --git a/PersonalDiscordBot/bin/Debug/Logs/DebugLog_05-10-17.txt b/PersonalDiscordBot/bin/Debug/Logs/DebugLog_05-10-17.txt deleted file mode 100644 index 9952eb2..0000000 --- a/PersonalDiscordBot/bin/Debug/Logs/DebugLog_05-10-17.txt +++ /dev/null @@ -1,45 +0,0 @@ -05-10-17_7:01:10 AM :: -########################## Application Start ########################## - -05-10-17_7:01:10 AM :: Didn't find Log Directory, created at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs -05-10-17_7:01:10 AM :: Didn't find Config Directory, created at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config - -05-10-17_7:01:10 AM :: Created default Paths.json: LogLoc: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs ConfLoc: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config PathLoc: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json ServLoc: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml - -05-10-17_7:01:10 AM :: Paths.json not found, created at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json -05-10-17_7:01:10 AM :: Created default ServerConfig.xml at C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml - -05-10-17_7:01:10 AM :: ServerConfig.xml not found, created at C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml -05-10-17_7:01:10 AM :: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json Deserialized: - LogLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs] - ConfigLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config] - PathsConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json] - ServerConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml] - -05-10-17_7:01:10 AM :: Finished reading config -05-10-17_7:01:11 AM :: Set Grid grdStatus to Hidden on launch -05-10-17_7:01:11 AM :: Set Grid grdSettings to Hidden on launch -05-10-17_7:01:11 AM :: Set Grid grdServers to Hidden on launch -05-10-17_7:01:11 AM :: Set Grid grdBotInfo to Hidden on launch - -05-10-17_7:01:34 AM :: Hid Grid grdStatus -05-10-17_7:01:34 AM :: Hid Grid grdSettings -05-10-17_7:01:34 AM :: Revealed Grid grdServers -05-10-17_7:01:34 AM :: Hid Grid grdBotInfo -05-10-17_7:01:34 AM :: Slid Main Menu out of view -05-10-17_7:02:31 AM :: Hid Grid grdStatus - -05-10-17_7:02:31 AM :: Hid Grid grdSettings -05-10-17_7:02:31 AM :: Hid Grid grdServers -05-10-17_7:02:31 AM :: Revealed Grid grdBotInfo -05-10-17_7:02:31 AM :: Slid Main Menu out of view -05-10-17_7:02:38 AM :: Revealed Grid grdStatus -05-10-17_7:02:38 AM :: Hid Grid grdSettings - -05-10-17_7:02:38 AM :: Hid Grid grdServers -05-10-17_7:02:38 AM :: Hid Grid grdBotInfo -05-10-17_7:02:38 AM :: Slid Main Menu out of view -05-10-17_7:02:42 AM :: -########################## Application Stop ########################## - - diff --git a/PersonalDiscordBot/bin/Debug/Logs/DebugLog_05-15-17.txt b/PersonalDiscordBot/bin/Debug/Logs/DebugLog_05-15-17.txt deleted file mode 100644 index 31f5b4a..0000000 --- a/PersonalDiscordBot/bin/Debug/Logs/DebugLog_05-15-17.txt +++ /dev/null @@ -1,922 +0,0 @@ -05-15-17_11:02:26 AM :: -########################## Application Start ########################## - -05-15-17_11:02:26 AM :: Found Log Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs -05-15-17_11:02:26 AM :: Found Config Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config - -05-15-17_11:02:26 AM :: Found Paths.json at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json -05-15-17_11:02:26 AM :: Found ServerConfig.xml at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml - -05-15-17_11:02:27 AM :: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json Deserialized: - LogLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs] - ConfigLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config] - PathsConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json] - ServerConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml] - -05-15-17_11:02:27 AM :: Finished reading config -05-15-17_11:02:28 AM :: Set Grid grdStatus to Hidden on launch -05-15-17_11:02:28 AM :: Set Grid grdSettings to Hidden on launch -05-15-17_11:02:28 AM :: Set Grid grdServers to Hidden on launch -05-15-17_11:02:28 AM :: Set Grid grdBotInfo to Hidden on launch - -05-15-17_11:02:33 AM :: Token wasn't found in sGeneral.Settings, prompting for token and sending notification -05-15-17_11:02:36 AM :: Saved new token: MzEzNjk0ODc3MTM5MzM3MjE3.C_tWog.sxzBA7zcIW5qexcoOhX6plkEl2w -05-15-17_11:02:36 AM :: Slid grdToken back out of view - -05-15-17_11:02:41 AM :: Saved new token: MzEzNjk0ODc3MTM5MzM3MjE3.C_tWog.sxzBA7zcIW5qexcoOhX6plkEl2w -05-15-17_11:02:41 AM :: Slid grdToken back out of view -05-15-17_11:02:51 AM :: Saved new token: MzEzNjk0ODc3MTM5MzM3MjE3.C_tWog.sxzBA7zcIW5qexcoOhX6plkEl2w - -05-15-17_11:02:51 AM :: Slid grdToken back out of view -05-15-17_11:02:52 AM :: Saved new token: MzEzNjk0ODc3MTM5MzM3MjE3.C_tWog.sxzBA7zcIW5qexcoOhX6plkEl2w -05-15-17_11:02:52 AM :: Slid grdToken back out of view -05-15-17_11:02:52 AM :: Saved new token: MzEzNjk0ODc3MTM5MzM3MjE3.C_tWog.sxzBA7zcIW5qexcoOhX6plkEl2w - -05-15-17_11:02:52 AM :: Slid grdToken back out of view -05-15-17_11:02:52 AM :: Saved new token: MzEzNjk0ODc3MTM5MzM3MjE3.C_tWog.sxzBA7zcIW5qexcoOhX6plkEl2w -05-15-17_11:02:52 AM :: Slid grdToken back out of view -05-15-17_11:02:52 AM :: Saved new token: MzEzNjk0ODc3MTM5MzM3MjE3.C_tWog.sxzBA7zcIW5qexcoOhX6plkEl2w - -05-15-17_11:02:52 AM :: Slid grdToken back out of view -05-15-17_11:02:52 AM :: Saved new token: MzEzNjk0ODc3MTM5MzM3MjE3.C_tWog.sxzBA7zcIW5qexcoOhX6plkEl2w -05-15-17_11:02:52 AM :: Slid grdToken back out of view -05-15-17_11:02:52 AM :: Saved new token: MzEzNjk0ODc3MTM5MzM3MjE3.C_tWog.sxzBA7zcIW5qexcoOhX6plkEl2w - -05-15-17_11:02:52 AM :: Slid grdToken back out of view -05-15-17_11:02:53 AM :: Saved new token: MzEzNjk0ODc3MTM5MzM3MjE3.C_tWog.sxzBA7zcIW5qexcoOhX6plkEl2w -05-15-17_11:02:53 AM :: Slid grdToken back out of view -05-15-17_11:02:53 AM :: Saved new token: MzEzNjk0ODc3MTM5MzM3MjE3.C_tWog.sxzBA7zcIW5qexcoOhX6plkEl2w - -05-15-17_11:02:53 AM :: Slid grdToken back out of view -05-15-17_11:02:57 AM :: Slid grdToken out of view -05-15-17_11:03:03 AM :: Cleared token from sGeneral.Settings and the txtTokenValue textbox -05-15-17_11:03:03 AM :: Notification Method Called - -05-15-17_11:04:20 AM :: -########################## Application Start ########################## - -05-15-17_11:04:20 AM :: Found Log Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs -05-15-17_11:04:20 AM :: Found Config Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config - -05-15-17_11:04:20 AM :: Found Paths.json at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json -05-15-17_11:04:20 AM :: Found ServerConfig.xml at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml - -05-15-17_11:04:20 AM :: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json Deserialized: - LogLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs] - ConfigLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config] - PathsConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json] - ServerConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml] - -05-15-17_11:04:20 AM :: Finished reading config -05-15-17_11:04:21 AM :: Set Grid grdStatus to Hidden on launch -05-15-17_11:04:21 AM :: Set Grid grdSettings to Hidden on launch -05-15-17_11:04:21 AM :: Set Grid grdServers to Hidden on launch -05-15-17_11:04:21 AM :: Set Grid grdBotInfo to Hidden on launch - -05-15-17_11:04:24 AM :: STATUS: Starting login updater -05-15-17_11:04:25 AM :: EXCEPTION: Start at 963 -05-15-17_11:04:25 AM :: STATUS: An Exception Occured: Start at 963 -Msg: The WebSocket protocol is not supported on this platform. -05-15-17_11:04:34 AM :: STATUS: Starting login updater - -05-15-17_11:04:34 AM :: EXCEPTION: Start at 963 -05-15-17_11:04:34 AM :: STATUS: An Exception Occured: Start at 963 -Msg: The WebSocket protocol is not supported on this platform. -05-15-17_11:04:43 AM :: Disconnected Client -05-15-17_11:04:43 AM :: Logged out - -05-15-17_11:04:45 AM :: -########################## Application Stop ########################## - - -05-15-17_11:04:48 AM :: -########################## Application Start ########################## - -05-15-17_11:04:48 AM :: Found Log Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs -05-15-17_11:04:48 AM :: Found Config Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config - -05-15-17_11:04:48 AM :: Found Paths.json at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json -05-15-17_11:04:48 AM :: Found ServerConfig.xml at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml - -05-15-17_11:04:48 AM :: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json Deserialized: - LogLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs] - ConfigLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config] - PathsConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json] - ServerConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml] - -05-15-17_11:04:48 AM :: Finished reading config -05-15-17_11:04:50 AM :: Set Grid grdStatus to Hidden on launch -05-15-17_11:04:50 AM :: Set Grid grdSettings to Hidden on launch -05-15-17_11:04:50 AM :: Set Grid grdServers to Hidden on launch -05-15-17_11:04:50 AM :: Set Grid grdBotInfo to Hidden on launch - -05-15-17_11:04:52 AM :: STATUS: Starting login updater -05-15-17_11:04:53 AM :: EXCEPTION: Start at 963 -05-15-17_11:04:53 AM :: STATUS: An Exception Occured: Start at 963 -Msg: The WebSocket protocol is not supported on this platform. -05-15-17_11:04:56 AM :: Revealed Grid grdStatus - -05-15-17_11:10:41 AM :: -########################## Application Start ########################## - -05-15-17_11:10:41 AM :: Found Log Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs -05-15-17_11:10:41 AM :: Found Config Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config - -05-15-17_11:10:41 AM :: Found Paths.json at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json -05-15-17_11:10:41 AM :: Found ServerConfig.xml at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml - -05-15-17_11:10:41 AM :: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json Deserialized: - LogLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs] - ConfigLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config] - PathsConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json] - ServerConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml] - -05-15-17_11:10:41 AM :: Finished reading config -05-15-17_11:10:42 AM :: Set Grid grdStatus to Hidden on launch -05-15-17_11:10:42 AM :: Set Grid grdSettings to Hidden on launch -05-15-17_11:10:42 AM :: Set Grid grdServers to Hidden on launch -05-15-17_11:10:42 AM :: Set Grid grdBotInfo to Hidden on launch - -05-15-17_11:10:42 AM :: STATUS: Vendor:164 -Common:211 -Uncommon:0 -Rare:0 -Epic:0 -Legendary:626 - -05-15-17_11:10:47 AM :: Revealed Grid grdStatus -05-15-17_11:10:47 AM :: Hid Grid grdSettings -05-15-17_11:10:47 AM :: Hid Grid grdServers -05-15-17_11:10:47 AM :: Hid Grid grdBotInfo - -05-15-17_11:10:47 AM :: Slid Main Menu out of view -05-15-17_11:11:08 AM :: -########################## Application Stop ########################## - - -05-15-17_11:12:36 AM :: -########################## Application Start ########################## - -05-15-17_11:12:36 AM :: Found Log Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs -05-15-17_11:12:36 AM :: Found Config Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config - -05-15-17_11:12:36 AM :: Found Paths.json at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json -05-15-17_11:12:36 AM :: Found ServerConfig.xml at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml - -05-15-17_11:12:36 AM :: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json Deserialized: - LogLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs] - ConfigLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config] - PathsConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json] - ServerConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml] - -05-15-17_11:12:36 AM :: Finished reading config -05-15-17_11:12:38 AM :: Set Grid grdStatus to Hidden on launch -05-15-17_11:12:38 AM :: Set Grid grdSettings to Hidden on launch -05-15-17_11:12:38 AM :: Set Grid grdServers to Hidden on launch -05-15-17_11:12:38 AM :: Set Grid grdBotInfo to Hidden on launch - -05-15-17_11:12:40 AM :: Revealed Grid grdStatus -05-15-17_11:12:40 AM :: Hid Grid grdSettings -05-15-17_11:12:40 AM :: Hid Grid grdServers -05-15-17_11:12:40 AM :: Hid Grid grdBotInfo -05-15-17_11:12:40 AM :: Slid Main Menu out of view -05-15-17_11:12:52 AM :: -########################## Application Stop ########################## - - - -05-15-17_11:13:32 AM :: -########################## Application Start ########################## - -05-15-17_11:13:32 AM :: Found Log Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs -05-15-17_11:13:32 AM :: Found Config Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config - -05-15-17_11:13:32 AM :: Found Paths.json at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json -05-15-17_11:13:32 AM :: Found ServerConfig.xml at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml - -05-15-17_11:13:33 AM :: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json Deserialized: - LogLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs] - ConfigLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config] - PathsConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json] - ServerConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml] - -05-15-17_11:13:33 AM :: Finished reading config -05-15-17_11:13:33 AM :: Set Grid grdStatus to Hidden on launch -05-15-17_11:13:33 AM :: Set Grid grdSettings to Hidden on launch -05-15-17_11:13:33 AM :: Set Grid grdServers to Hidden on launch -05-15-17_11:13:33 AM :: Set Grid grdBotInfo to Hidden on launch - -05-15-17_11:13:33 AM :: STATUS: Vendor:144 -Common:181 -Uncommon:0 -Rare:0 -Epic:0 -Legendary:676 - -05-15-17_11:13:36 AM :: Revealed Grid grdStatus -05-15-17_11:13:36 AM :: Hid Grid grdSettings -05-15-17_11:13:36 AM :: Hid Grid grdServers -05-15-17_11:13:36 AM :: Hid Grid grdBotInfo - -05-15-17_11:13:36 AM :: Slid Main Menu out of view -05-15-17_11:14:31 AM :: -########################## Application Stop ########################## - - -05-15-17_11:15:51 AM :: -########################## Application Start ########################## - -05-15-17_11:15:51 AM :: Found Log Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs -05-15-17_11:15:51 AM :: Found Config Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config - -05-15-17_11:15:51 AM :: Found Paths.json at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json -05-15-17_11:15:51 AM :: Found ServerConfig.xml at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml - -05-15-17_11:15:52 AM :: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json Deserialized: - LogLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs] - ConfigLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config] - PathsConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json] - ServerConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml] - -05-15-17_11:15:52 AM :: Finished reading config -05-15-17_11:15:53 AM :: Set Grid grdStatus to Hidden on launch -05-15-17_11:15:53 AM :: Set Grid grdSettings to Hidden on launch -05-15-17_11:15:53 AM :: Set Grid grdServers to Hidden on launch -05-15-17_11:15:53 AM :: Set Grid grdBotInfo to Hidden on launch - -05-15-17_11:20:16 AM :: -########################## Application Start ########################## - -05-15-17_11:20:16 AM :: Found Log Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs -05-15-17_11:20:16 AM :: Found Config Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config - -05-15-17_11:20:16 AM :: Found Paths.json at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json -05-15-17_11:20:16 AM :: Found ServerConfig.xml at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml - -05-15-17_11:20:17 AM :: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json Deserialized: - LogLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs] - ConfigLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config] - PathsConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json] - ServerConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml] - -05-15-17_11:20:17 AM :: Finished reading config -05-15-17_11:20:18 AM :: Set Grid grdStatus to Hidden on launch -05-15-17_11:20:18 AM :: Set Grid grdSettings to Hidden on launch -05-15-17_11:20:18 AM :: Set Grid grdServers to Hidden on launch -05-15-17_11:20:18 AM :: Set Grid grdBotInfo to Hidden on launch - -05-15-17_11:21:08 AM :: -########################## Application Start ########################## - -05-15-17_11:21:08 AM :: Found Log Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs -05-15-17_11:21:08 AM :: Found Config Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config - -05-15-17_11:21:08 AM :: Found Paths.json at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json -05-15-17_11:21:08 AM :: Found ServerConfig.xml at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml - -05-15-17_11:21:08 AM :: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json Deserialized: - LogLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs] - ConfigLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config] - PathsConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json] - ServerConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml] - -05-15-17_11:21:08 AM :: Finished reading config -05-15-17_11:21:09 AM :: Set Grid grdStatus to Hidden on launch -05-15-17_11:21:09 AM :: Set Grid grdSettings to Hidden on launch -05-15-17_11:21:09 AM :: Set Grid grdServers to Hidden on launch -05-15-17_11:21:09 AM :: Set Grid grdBotInfo to Hidden on launch - -05-15-17_11:22:58 AM :: -########################## Application Start ########################## - -05-15-17_11:22:58 AM :: Found Log Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs -05-15-17_11:22:58 AM :: Found Config Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config - -05-15-17_11:22:58 AM :: Found Paths.json at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json -05-15-17_11:22:58 AM :: Found ServerConfig.xml at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml - -05-15-17_11:22:58 AM :: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json Deserialized: - LogLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs] - ConfigLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config] - PathsConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json] - ServerConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml] - -05-15-17_11:22:58 AM :: Finished reading config -05-15-17_11:22:59 AM :: Set Grid grdStatus to Hidden on launch -05-15-17_11:22:59 AM :: Set Grid grdSettings to Hidden on launch -05-15-17_11:22:59 AM :: Set Grid grdServers to Hidden on launch -05-15-17_11:22:59 AM :: Set Grid grdBotInfo to Hidden on launch - -05-15-17_11:22:59 AM :: STATUS: -Vendor:145 -Common:327 -Uncommon:241 -Rare:154 -Epic:113 -Legendary:21 - -05-15-17_11:23:01 AM :: Revealed Grid grdStatus -05-15-17_11:23:01 AM :: Hid Grid grdSettings -05-15-17_11:23:01 AM :: Hid Grid grdServers -05-15-17_11:23:01 AM :: Hid Grid grdBotInfo - -05-15-17_11:23:01 AM :: Slid Main Menu out of view -05-15-17_11:23:21 AM :: -########################## Application Stop ########################## - - -05-15-17_11:40:28 AM :: -########################## Application Start ########################## - -05-15-17_11:40:28 AM :: Found Log Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs -05-15-17_11:40:28 AM :: Found Config Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config - -05-15-17_11:40:28 AM :: Found Paths.json at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json -05-15-17_11:40:28 AM :: Found ServerConfig.xml at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml - -05-15-17_11:40:29 AM :: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json Deserialized: - LogLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs] - ConfigLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config] - PathsConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json] - ServerConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml] - -05-15-17_11:40:29 AM :: Finished reading config -05-15-17_11:40:30 AM :: Set Grid grdStatus to Hidden on launch -05-15-17_11:40:30 AM :: Set Grid grdSettings to Hidden on launch -05-15-17_11:40:30 AM :: Set Grid grdServers to Hidden on launch -05-15-17_11:40:30 AM :: Set Grid grdBotInfo to Hidden on launch - -05-15-17_11:40:30 AM :: STATUS: -Vendor:166 -Common:332 -Uncommon:251 -Rare:126 -Epic:108 -Legendary:18 - -05-15-17_11:40:32 AM :: Revealed Grid grdStatus -05-15-17_11:40:32 AM :: Hid Grid grdSettings -05-15-17_11:40:32 AM :: Hid Grid grdServers -05-15-17_11:40:32 AM :: Hid Grid grdBotInfo - -05-15-17_11:46:40 AM :: -########################## Application Start ########################## - -05-15-17_11:46:40 AM :: Found Log Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs -05-15-17_11:46:40 AM :: Found Config Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config - -05-15-17_11:46:40 AM :: Found Paths.json at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json -05-15-17_11:46:40 AM :: Found ServerConfig.xml at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml - -05-15-17_11:46:41 AM :: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json Deserialized: - LogLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs] - ConfigLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config] - PathsConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json] - ServerConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml] - -05-15-17_11:46:41 AM :: Finished reading config -05-15-17_11:46:42 AM :: Set Grid grdStatus to Hidden on launch -05-15-17_11:46:42 AM :: Set Grid grdSettings to Hidden on launch -05-15-17_11:46:42 AM :: Set Grid grdServers to Hidden on launch -05-15-17_11:46:42 AM :: Set Grid grdBotInfo to Hidden on launch - -05-15-17_11:46:42 AM :: STATUS: -Vendor:160 -Common:328 -Uncommon:239 -Rare:162 -Epic:94 -Legendary:18 - -05-15-17_11:46:44 AM :: Revealed Grid grdStatus -05-15-17_11:46:44 AM :: Hid Grid grdSettings -05-15-17_11:46:44 AM :: Hid Grid grdServers -05-15-17_11:46:44 AM :: Hid Grid grdBotInfo - -05-15-17_11:46:44 AM :: Slid Main Menu out of view -05-15-17_11:47:00 AM :: -########################## Application Stop ########################## - - -05-15-17_11:47:03 AM :: -########################## Application Start ########################## - -05-15-17_11:47:03 AM :: Found Log Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs -05-15-17_11:47:03 AM :: Found Config Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config - -05-15-17_11:47:03 AM :: Found Paths.json at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json -05-15-17_11:47:03 AM :: Found ServerConfig.xml at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml - -05-15-17_11:47:03 AM :: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json Deserialized: - LogLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs] - ConfigLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config] - PathsConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json] - ServerConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml] - -05-15-17_11:47:03 AM :: Finished reading config -05-15-17_11:47:04 AM :: Set Grid grdStatus to Hidden on launch -05-15-17_11:47:04 AM :: Set Grid grdSettings to Hidden on launch -05-15-17_11:47:04 AM :: Set Grid grdServers to Hidden on launch -05-15-17_11:47:04 AM :: Set Grid grdBotInfo to Hidden on launch - -05-15-17_11:47:04 AM :: STATUS: -Vendor:149 -Common:343 -Uncommon:251 -Rare:135 -Epic:102 -Legendary:21 - -05-15-17_11:47:09 AM :: Revealed Grid grdStatus -05-15-17_11:47:09 AM :: Hid Grid grdSettings -05-15-17_11:47:09 AM :: Hid Grid grdServers -05-15-17_11:47:09 AM :: Hid Grid grdBotInfo - -05-15-17_11:47:09 AM :: Slid Main Menu out of view -05-15-17_11:47:18 AM :: -########################## Application Stop ########################## - - -05-15-17_12:31:13 PM :: -########################## Application Start ########################## - -05-15-17_12:31:13 PM :: Found Log Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs -05-15-17_12:31:13 PM :: Found Config Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config - -05-15-17_12:31:13 PM :: Found Paths.json at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json -05-15-17_12:31:13 PM :: Found ServerConfig.xml at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml - -05-15-17_12:31:15 PM :: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json Deserialized: - LogLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs] - ConfigLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config] - PathsConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json] - ServerConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml] - -05-15-17_12:31:15 PM :: Finished reading config -05-15-17_12:31:15 PM :: Set Grid grdStatus to Hidden on launch -05-15-17_12:31:15 PM :: Set Grid grdSettings to Hidden on launch -05-15-17_12:31:15 PM :: Set Grid grdServers to Hidden on launch -05-15-17_12:31:15 PM :: Set Grid grdBotInfo to Hidden on launch - -05-15-17_12:31:21 PM :: Revealed Grid grdStatus -05-15-17_12:31:21 PM :: Hid Grid grdSettings -05-15-17_12:31:21 PM :: Hid Grid grdServers -05-15-17_12:31:21 PM :: Hid Grid grdBotInfo -05-15-17_12:31:21 PM :: Slid Main Menu out of view -05-15-17_12:31:23 PM :: Hid Grid grdStatus - -05-15-17_12:31:23 PM :: Slid Main Menu into view -05-15-17_12:31:27 PM :: Revealed Grid grdStatus -05-15-17_12:31:27 PM :: Hid Grid grdSettings -05-15-17_12:31:27 PM :: Hid Grid grdServers -05-15-17_12:31:27 PM :: Hid Grid grdBotInfo -05-15-17_12:31:27 PM :: Slid Main Menu out of view - -05-15-17_12:31:29 PM :: -########################## Application Stop ########################## - - -05-15-17_12:37:09 PM :: -########################## Application Start ########################## - -05-15-17_12:37:09 PM :: Found Log Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs -05-15-17_12:37:09 PM :: Found Config Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config - -05-15-17_12:37:09 PM :: Found Paths.json at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json -05-15-17_12:37:09 PM :: Found ServerConfig.xml at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml - -05-15-17_12:37:09 PM :: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json Deserialized: - LogLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs] - ConfigLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config] - PathsConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json] - ServerConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml] - -05-15-17_12:37:09 PM :: Finished reading config -05-15-17_12:37:11 PM :: Set Grid grdStatus to Hidden on launch -05-15-17_12:37:11 PM :: Set Grid grdSettings to Hidden on launch -05-15-17_12:37:11 PM :: Set Grid grdServers to Hidden on launch -05-15-17_12:37:11 PM :: Set Grid grdBotInfo to Hidden on launch - -05-15-17_12:37:13 PM :: Revealed Grid grdStatus -05-15-17_12:37:13 PM :: Hid Grid grdSettings -05-15-17_12:37:13 PM :: Hid Grid grdServers -05-15-17_12:37:13 PM :: Hid Grid grdBotInfo -05-15-17_12:37:13 PM :: Slid Main Menu out of view -05-15-17_12:37:16 PM :: -########################## Application Stop ########################## - - - -05-15-17_12:37:30 PM :: -########################## Application Start ########################## - -05-15-17_12:37:30 PM :: Found Log Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs -05-15-17_12:37:30 PM :: Found Config Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config - -05-15-17_12:37:30 PM :: Found Paths.json at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json -05-15-17_12:37:30 PM :: Found ServerConfig.xml at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml - -05-15-17_12:37:30 PM :: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json Deserialized: - LogLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs] - ConfigLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config] - PathsConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json] - ServerConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml] - -05-15-17_12:37:30 PM :: Finished reading config -05-15-17_12:37:31 PM :: Set Grid grdStatus to Hidden on launch -05-15-17_12:37:31 PM :: Set Grid grdSettings to Hidden on launch -05-15-17_12:37:31 PM :: Set Grid grdServers to Hidden on launch -05-15-17_12:37:31 PM :: Set Grid grdBotInfo to Hidden on launch - -05-15-17_3:56:25 PM :: -########################## Application Start ########################## - -05-15-17_3:56:25 PM :: Found Log Directory at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs -05-15-17_3:56:25 PM :: Found Config Directory at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config - -05-15-17_3:56:25 PM :: Found Paths.json at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json -05-15-17_3:56:25 PM :: Found ServerConfig.xml at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml - -05-15-17_3:58:11 PM :: -########################## Application Start ########################## - -05-15-17_3:58:11 PM :: Found Log Directory at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs -05-15-17_3:58:11 PM :: Found Config Directory at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config - -05-15-17_3:58:11 PM :: Found Paths.json at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json -05-15-17_3:58:11 PM :: Found ServerConfig.xml at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml - -05-15-17_3:58:38 PM :: -########################## Application Start ########################## - -05-15-17_3:58:38 PM :: Found Log Directory at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs -05-15-17_3:58:38 PM :: Found Config Directory at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config - -05-15-17_3:58:38 PM :: Found Paths.json at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json -05-15-17_3:58:38 PM :: Found ServerConfig.xml at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml - -05-15-17_3:59:15 PM :: -########################## Application Start ########################## - -05-15-17_3:59:32 PM :: Found Log Directory at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs -05-15-17_3:59:37 PM :: Found Config Directory at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config - -05-15-17_3:59:46 PM :: Found Paths.json at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json -05-15-17_3:59:52 PM :: Found ServerConfig.xml at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml - -05-15-17_4:07:48 PM :: -########################## Application Start ########################## - -05-15-17_4:07:48 PM :: Found Log Directory at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs -05-15-17_4:07:48 PM :: Found Config Directory at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config - -05-15-17_4:07:48 PM :: Found Paths.json at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json -05-15-17_4:07:48 PM :: Found ServerConfig.xml at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml - -05-15-17_4:20:30 PM :: -########################## Application Start ########################## - -05-15-17_4:20:30 PM :: Found Log Directory at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs -05-15-17_4:20:30 PM :: Found Config Directory at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config -05-15-17_4:20:30 PM :: Found Paths.json at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json -05-15-17_4:20:30 PM :: Found ServerConfig.xml at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml -05-15-17_4:20:37 PM :: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json Deserialized: - LogLocation[C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs] - ConfigLocation[C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config] - PathsConfig[C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json] - ServerConfig[C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml] -05-15-17_4:21:07 PM :: Finished reading config -05-15-17_4:21:13 PM :: Set Grid grdStatus to Hidden on launch -05-15-17_4:21:13 PM :: Set Grid grdSettings to Hidden on launch -05-15-17_4:21:13 PM :: Set Grid grdServers to Hidden on launch -05-15-17_4:21:13 PM :: Set Grid grdBotInfo to Hidden on launch -05-15-17_4:21:25 PM :: Token wasn't found in sGeneral.Settings, prompting for token and sending notification -05-15-17_4:21:27 PM :: Saved new token: MzEzNjk0ODc3MTM5MzM3MjE3.C_ummQ.S3r-odLUuMk4VIfb5ZMckQTWIOc -05-15-17_4:21:27 PM :: Slid grdToken back out of view -05-15-17_4:21:32 PM :: STATUS: Starting login updater -05-15-17_4:21:33 PM :: Saved new token: MzEzNjk0ODc3MTM5MzM3MjE3.C_ummQ.S3r-odLUuMk4VIfb5ZMckQTWIOc -05-15-17_4:21:33 PM :: Slid grdToken back out of view -05-15-17_4:21:33 PM :: STATUS: Updated Name and Playing Value -05-15-17_4:21:40 PM :: Revealed Grid grdStatus -05-15-17_4:21:40 PM :: Hid Grid grdSettings -05-15-17_4:21:40 PM :: Hid Grid grdServers -05-15-17_4:21:40 PM :: Hid Grid grdBotInfo -05-15-17_4:21:40 PM :: Slid Main Menu out of view -05-15-17_4:21:51 PM :: STATUS: User: Prodigy Savant ◥◤ Command: ;help -05-15-17_4:21:51 PM :: COMMAND: User: Prodigy Savant ◥◤ Command: ;help -05-15-17_4:22:05 PM :: Slid grdToken out of view -05-15-17_4:22:42 PM :: -########################## Application Stop ########################## - - -05-15-17_4:47:47 PM :: -########################## Application Start ########################## - -05-15-17_4:47:47 PM :: Found Log Directory at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs -05-15-17_4:47:47 PM :: Found Config Directory at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config -05-15-17_4:47:47 PM :: Found Paths.json at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json -05-15-17_4:47:47 PM :: Found ServerConfig.xml at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml -05-15-17_4:47:47 PM :: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json Deserialized: - LogLocation[C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs] - ConfigLocation[C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config] - PathsConfig[C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json] - ServerConfig[C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml] -05-15-17_4:47:47 PM :: Finished reading config -05-15-17_4:47:47 PM :: Set Grid grdStatus to Hidden on launch -05-15-17_4:47:47 PM :: Set Grid grdSettings to Hidden on launch -05-15-17_4:47:47 PM :: Set Grid grdServers to Hidden on launch -05-15-17_4:47:47 PM :: Set Grid grdBotInfo to Hidden on launch -05-15-17_4:47:48 PM :: Revealed Grid grdStatus -05-15-17_4:47:48 PM :: Hid Grid grdSettings -05-15-17_4:47:48 PM :: Hid Grid grdServers -05-15-17_4:47:48 PM :: Hid Grid grdBotInfo -05-15-17_4:47:48 PM :: Slid Main Menu out of view -05-15-17_4:47:53 PM :: -########################## Application Stop ########################## - - -05-15-17_4:48:59 PM :: -########################## Application Start ########################## - -05-15-17_4:48:59 PM :: Found Log Directory at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs -05-15-17_4:48:59 PM :: Found Config Directory at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config -05-15-17_4:48:59 PM :: Found Paths.json at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json -05-15-17_4:48:59 PM :: Found ServerConfig.xml at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml -05-15-17_4:48:59 PM :: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json Deserialized: - LogLocation[C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs] - ConfigLocation[C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config] - PathsConfig[C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json] - ServerConfig[C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml] -05-15-17_4:48:59 PM :: Finished reading config -05-15-17_4:48:59 PM :: Set Grid grdStatus to Hidden on launch -05-15-17_4:48:59 PM :: Set Grid grdSettings to Hidden on launch -05-15-17_4:48:59 PM :: Set Grid grdServers to Hidden on launch -05-15-17_4:48:59 PM :: Set Grid grdBotInfo to Hidden on launch -05-15-17_4:49:01 PM :: Revealed Grid grdStatus -05-15-17_4:49:01 PM :: Hid Grid grdSettings -05-15-17_4:49:01 PM :: Hid Grid grdServers -05-15-17_4:49:01 PM :: Hid Grid grdBotInfo -05-15-17_4:49:01 PM :: Slid Main Menu out of view -05-15-17_4:49:01 PM :: Notification Method Called -05-15-17_4:49:01 PM :: Notification Message: Status window was slid -05-15-17_4:49:01 PM :: Slid Notification into view, now waiting 4 seconds to slide back out -05-15-17_4:49:03 PM :: Hid Grid grdStatus -05-15-17_4:49:03 PM :: Slid Main Menu into view -05-15-17_4:49:03 PM :: Notification Method Called -05-15-17_4:49:03 PM :: Notification Message: Status window was slid -05-15-17_4:49:03 PM :: Slid Notification into view, now waiting 4 seconds to slide back out -05-15-17_4:49:04 PM :: Revealed Grid grdStatus -05-15-17_4:49:04 PM :: Hid Grid grdSettings -05-15-17_4:49:04 PM :: Hid Grid grdServers -05-15-17_4:49:04 PM :: Hid Grid grdBotInfo -05-15-17_4:49:04 PM :: Slid Main Menu out of view -05-15-17_4:49:04 PM :: Notification Method Called -05-15-17_4:49:04 PM :: Notification Message: Status window was slid -05-15-17_4:49:04 PM :: Slid Notification into view, now waiting 4 seconds to slide back out -05-15-17_4:49:05 PM :: Slid Notification back out of view -05-15-17_4:49:06 PM :: Hid Grid grdStatus -05-15-17_4:49:06 PM :: Slid Main Menu into view -05-15-17_4:49:06 PM :: Notification Method Called -05-15-17_4:49:06 PM :: Notification Message: Status window was slid -05-15-17_4:49:06 PM :: Slid Notification into view, now waiting 4 seconds to slide back out -05-15-17_4:49:07 PM :: Slid Notification back out of view -05-15-17_4:49:08 PM :: Slid Notification back out of view -05-15-17_4:49:10 PM :: Slid Notification back out of view -05-15-17_4:49:16 PM :: -########################## Application Stop ########################## - - -05-15-17_5:14:38 PM :: -########################## Application Start ########################## - -05-15-17_5:14:38 PM :: Found Log Directory at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs -05-15-17_5:14:38 PM :: Found Config Directory at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config -05-15-17_5:14:38 PM :: Found Paths.json at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json -05-15-17_5:14:38 PM :: Found ServerConfig.xml at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml -05-15-17_5:14:38 PM :: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json Deserialized: - LogLocation[C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs] - ConfigLocation[C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config] - PathsConfig[C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json] - ServerConfig[C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml] -05-15-17_5:14:38 PM :: Finished reading config -05-15-17_5:14:38 PM :: Set Grid grdStatus to Hidden on launch -05-15-17_5:14:38 PM :: Set Grid grdSettings to Hidden on launch -05-15-17_5:14:38 PM :: Set Grid grdServers to Hidden on launch -05-15-17_5:14:38 PM :: Set Grid grdBotInfo to Hidden on launch -05-15-17_5:14:40 PM :: Revealed Grid grdStatus -05-15-17_5:14:40 PM :: Hid Grid grdSettings -05-15-17_5:14:40 PM :: Hid Grid grdServers -05-15-17_5:14:40 PM :: Hid Grid grdBotInfo -05-15-17_5:14:40 PM :: Slid Main Menu out of view -05-15-17_5:14:40 PM :: Notification Method Called -05-15-17_5:14:40 PM :: EXCEPTION: btnOpenStatus_Click at 182 -05-15-17_5:14:40 PM :: Notification Message: Status window was slid -05-15-17_5:14:40 PM :: Slid Notification into view, now waiting 4 seconds to slide back out -05-15-17_5:14:40 PM :: Slid Notification into view, now waiting 4 seconds to slide back out -05-15-17_5:14:40 PM :: STATUS: An Exception Occured: btnOpenStatus_Click at 182 -Msg: This BackgroundWorker is currently busy and cannot run multiple tasks concurrently. -05-15-17_5:14:44 PM :: Notification Method Called -05-15-17_5:14:44 PM :: Notification Message: Status window was slid -05-15-17_5:14:44 PM :: Slid Notification into view, now waiting 4 seconds to slide back out -05-15-17_5:14:44 PM :: Slid Notification into view, now waiting 4 seconds to slide back out -05-15-17_5:14:48 PM :: Finished Notification: Message-Status window was slid Time-4 -05-15-17_5:14:48 PM :: Slid Notification back out of view -05-15-17_5:14:48 PM :: Finished Notification: Message-Status window was slid Time-4 -05-15-17_5:14:48 PM :: Slid Notification back out of view -05-15-17_5:14:53 PM :: -########################## Application Stop ########################## - - -05-15-17_5:18:57 PM :: -########################## Application Start ########################## - -05-15-17_5:18:57 PM :: Found Log Directory at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs -05-15-17_5:18:57 PM :: Found Config Directory at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config -05-15-17_5:18:57 PM :: Found Paths.json at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json -05-15-17_5:18:57 PM :: Found ServerConfig.xml at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml -05-15-17_5:18:57 PM :: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json Deserialized: - LogLocation[C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs] - ConfigLocation[C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config] - PathsConfig[C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json] - ServerConfig[C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml] -05-15-17_5:18:57 PM :: Finished reading config -05-15-17_5:18:58 PM :: Set Grid grdStatus to Hidden on launch -05-15-17_5:18:58 PM :: Set Grid grdSettings to Hidden on launch -05-15-17_5:18:58 PM :: Set Grid grdServers to Hidden on launch -05-15-17_5:18:58 PM :: Set Grid grdBotInfo to Hidden on launch -05-15-17_5:18:59 PM :: Revealed Grid grdStatus -05-15-17_5:18:59 PM :: Hid Grid grdSettings -05-15-17_5:18:59 PM :: Hid Grid grdServers -05-15-17_5:18:59 PM :: Hid Grid grdBotInfo -05-15-17_5:18:59 PM :: Slid Main Menu out of view -05-15-17_5:18:59 PM :: Notification Method Called -05-15-17_5:18:59 PM :: EXCEPTION: btnOpenStatus_Click at 182 -05-15-17_5:18:59 PM :: Notification Message: Status window was slid -05-15-17_5:18:59 PM :: Slid Notification into view, now waiting 4 seconds to slide back out -05-15-17_5:18:59 PM :: Slid Notification into view, now waiting 4 seconds to slide back out -05-15-17_5:18:59 PM :: STATUS: An Exception Occured: btnOpenStatus_Click at 182 -Msg: This BackgroundWorker is currently busy and cannot run multiple tasks concurrently. -05-15-17_5:19:03 PM :: Notification Method Called -05-15-17_5:19:03 PM :: Notification Message: Status window was slid -05-15-17_5:19:03 PM :: Slid Notification into view, now waiting 4 seconds to slide back out -05-15-17_5:19:03 PM :: Slid Notification into view, now waiting 4 seconds to slide back out -05-15-17_5:19:07 PM :: Finished Notification: Message-Status window was slid Time-4 -05-15-17_5:19:07 PM :: Slid Notification back out of view -05-15-17_5:19:07 PM :: Finished Notification: Message-Status window was slid Time-4 -05-15-17_5:19:07 PM :: Slid Notification back out of view -05-15-17_5:19:10 PM :: Hid Grid grdStatus -05-15-17_5:19:10 PM :: Slid Main Menu into view -05-15-17_5:19:10 PM :: Notification Method Called -05-15-17_5:19:10 PM :: EXCEPTION: btnOpenStatus_Click at 182 -05-15-17_5:19:10 PM :: Notification Message: Status window was slid -05-15-17_5:19:10 PM :: STATUS: An Exception Occured: btnOpenStatus_Click at 182 -Msg: This BackgroundWorker is currently busy and cannot run multiple tasks concurrently. -05-15-17_5:19:10 PM :: Slid Notification into view, now waiting 4 seconds to slide back out -05-15-17_5:19:10 PM :: Slid Notification into view, now waiting 4 seconds to slide back out -05-15-17_5:19:14 PM :: Finished Notification: Message-Status window was slid Time-4 -05-15-17_5:19:14 PM :: Slid Notification back out of view -05-15-17_5:19:14 PM :: Finished Notification: Message-Status window was slid Time-4 -05-15-17_5:19:14 PM :: Slid Notification back out of view -05-15-17_5:19:16 PM :: Revealed Grid grdStatus -05-15-17_5:19:16 PM :: Hid Grid grdSettings -05-15-17_5:19:16 PM :: Hid Grid grdServers -05-15-17_5:19:16 PM :: Hid Grid grdBotInfo -05-15-17_5:19:16 PM :: Slid Main Menu out of view -05-15-17_5:19:16 PM :: Notification Method Called -05-15-17_5:19:16 PM :: EXCEPTION: btnOpenStatus_Click at 182 -05-15-17_5:19:16 PM :: Notification Message: Status window was slid -05-15-17_5:19:16 PM :: Slid Notification into view, now waiting 4 seconds to slide back out -05-15-17_5:19:16 PM :: Slid Notification into view, now waiting 4 seconds to slide back out -05-15-17_5:19:16 PM :: STATUS: An Exception Occured: btnOpenStatus_Click at 182 -Msg: This BackgroundWorker is currently busy and cannot run multiple tasks concurrently. -05-15-17_5:19:20 PM :: Finished Notification: Message-Status window was slid Time-4 -05-15-17_5:19:20 PM :: Slid Notification back out of view -05-15-17_5:19:20 PM :: Finished Notification: Message-Status window was slid Time-4 -05-15-17_5:19:20 PM :: Slid Notification back out of view -05-15-17_5:19:27 PM :: -########################## Application Stop ########################## - - -05-15-17_5:20:02 PM :: -########################## Application Start ########################## - -05-15-17_5:20:02 PM :: Found Log Directory at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs -05-15-17_5:20:02 PM :: Found Config Directory at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config -05-15-17_5:20:02 PM :: Found Paths.json at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json -05-15-17_5:20:02 PM :: Found ServerConfig.xml at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml -05-15-17_5:20:02 PM :: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json Deserialized: - LogLocation[C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs] - ConfigLocation[C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config] - PathsConfig[C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json] - ServerConfig[C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml] -05-15-17_5:20:02 PM :: Finished reading config -05-15-17_5:20:02 PM :: Set Grid grdStatus to Hidden on launch -05-15-17_5:20:02 PM :: Set Grid grdSettings to Hidden on launch -05-15-17_5:20:02 PM :: Set Grid grdServers to Hidden on launch -05-15-17_5:20:02 PM :: Set Grid grdBotInfo to Hidden on launch -05-15-17_5:20:04 PM :: Revealed Grid grdStatus -05-15-17_5:20:04 PM :: Hid Grid grdSettings -05-15-17_5:20:04 PM :: Hid Grid grdServers -05-15-17_5:20:04 PM :: Hid Grid grdBotInfo -05-15-17_5:20:04 PM :: Slid Main Menu out of view -05-15-17_5:20:04 PM :: Notification Method Called -05-15-17_5:20:04 PM :: Notification Method Called -05-15-17_5:20:04 PM :: Notification Method Called -05-15-17_5:20:04 PM :: Notification Method Called -05-15-17_5:20:04 PM :: Notification Method Called -05-15-17_5:20:04 PM :: Notification Method Called -05-15-17_5:20:04 PM :: Notification Method Called -05-15-17_5:20:04 PM :: Notification Method Called -05-15-17_5:20:04 PM :: Notification Method Called -05-15-17_5:20:04 PM :: Notification Method Called -05-15-17_5:20:04 PM :: Notification Method Called -05-15-17_5:20:04 PM :: Notification Method Called -05-15-17_5:20:04 PM :: Notification Method Called -05-15-17_5:20:04 PM :: Notification Method Called -05-15-17_5:20:04 PM :: Notification Method Called -05-15-17_5:20:04 PM :: Notification Method Called -05-15-17_5:20:05 PM :: Notification Method Called -05-15-17_5:20:15 PM :: Notification Method Called -05-15-17_5:20:17 PM :: Notification Method Called -05-15-17_5:20:19 PM :: Notification Method Called -05-15-17_5:20:20 PM :: Notification Method Called -05-15-17_5:20:22 PM :: Notification Method Called -05-15-17_5:20:23 PM :: Notification Method Called -05-15-17_5:20:26 PM :: Notification Method Called -05-15-17_5:20:27 PM :: Notification Method Called -05-15-17_5:20:31 PM :: Notification Method Called -05-15-17_5:20:33 PM :: Notification Method Called -05-15-17_5:20:35 PM :: Notification Method Called -05-15-17_5:20:37 PM :: Notification Method Called -05-15-17_5:20:43 PM :: EXCEPTION: btnOpenStatus_Click at 182 -05-15-17_5:20:43 PM :: Notification Message: Status window was slid -05-15-17_5:20:43 PM :: Slid Notification into view, now waiting 4 seconds to slide back out -05-15-17_5:20:43 PM :: Notification Message: Status window was slid -05-15-17_5:20:43 PM :: Notification Message: Status window was slid -05-15-17_5:20:43 PM :: Slid Notification into view, now waiting 4 seconds to slide back out -05-15-17_5:20:43 PM :: Slid Notification into view, now waiting 4 seconds to slide back out -05-15-17_5:20:43 PM :: Notification Message: Status window was slid -05-15-17_5:20:43 PM :: Notification Message: Status window was slid -05-15-17_5:20:43 PM :: Slid Notification into view, now waiting 4 seconds to slide back out -05-15-17_5:20:43 PM :: Slid Notification into view, now waiting 4 seconds to slide back out -05-15-17_5:20:43 PM :: Notification Message: Status window was slid -05-15-17_5:20:43 PM :: Notification Message: Status window was slid -05-15-17_5:20:43 PM :: Slid Notification into view, now waiting 4 seconds to slide back out -05-15-17_5:20:43 PM :: Slid Notification into view, now waiting 4 seconds to slide back out -05-15-17_5:20:43 PM :: Notification Message: Status window was slid -05-15-17_5:20:43 PM :: Slid Notification into view, now waiting 4 seconds to slide back out -05-15-17_5:20:43 PM :: Notification Message: Status window was slid -05-15-17_5:20:43 PM :: Notification Message: Status window was slid -05-15-17_5:20:43 PM :: Slid Notification into view, now waiting 4 seconds to slide back out -05-15-17_5:20:43 PM :: Slid Notification into view, now waiting 4 seconds to slide back out -05-15-17_5:20:43 PM :: Notification Message: Status window was slid -05-15-17_5:20:43 PM :: Notification Message: Status window was slid -05-15-17_5:20:43 PM :: Slid Notification into view, now waiting 4 seconds to slide back out - -05-15-17_9:21:07 PM :: -########################## Application Start ########################## - -05-15-17_9:21:07 PM :: Found Log Directory at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs -05-15-17_9:21:07 PM :: Found Config Directory at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config -05-15-17_9:21:07 PM :: Found Paths.json at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json -05-15-17_9:21:07 PM :: Found ServerConfig.xml at: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml -05-15-17_9:21:07 PM :: C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json Deserialized: - LogLocation[C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs] - ConfigLocation[C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config] - PathsConfig[C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json] - ServerConfig[C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml] -05-15-17_9:21:07 PM :: Finished reading config -05-15-17_9:21:07 PM :: Set Grid grdStatus to Hidden on launch -05-15-17_9:21:07 PM :: Set Grid grdSettings to Hidden on launch -05-15-17_9:21:07 PM :: Set Grid grdServers to Hidden on launch -05-15-17_9:21:07 PM :: Set Grid grdBotInfo to Hidden on launch -05-15-17_9:21:09 PM :: Revealed Grid grdStatus -05-15-17_9:21:09 PM :: Hid Grid grdSettings -05-15-17_9:21:09 PM :: Hid Grid grdServers -05-15-17_9:21:09 PM :: Hid Grid grdBotInfo -05-15-17_9:21:09 PM :: Slid Main Menu out of view -05-15-17_9:21:09 PM :: New Notification: Status window was slid, 4sec(s) -05-15-17_9:21:09 PM :: Notification wasn't playing, starting notification play cycles -05-15-17_9:21:11 PM :: Hid Grid grdStatus -05-15-17_9:21:11 PM :: Slid Main Menu into view -05-15-17_9:21:11 PM :: New Notification: Status window was slid, 4sec(s) -05-15-17_9:21:11 PM :: Notification is currently playing, returning -05-15-17_9:21:12 PM :: Revealed Grid grdStatus -05-15-17_9:21:12 PM :: Hid Grid grdSettings -05-15-17_9:21:12 PM :: Hid Grid grdServers -05-15-17_9:21:12 PM :: Hid Grid grdBotInfo -05-15-17_9:21:12 PM :: Slid Main Menu out of view -05-15-17_9:21:12 PM :: New Notification: Status window was slid, 4sec(s) -05-15-17_9:21:12 PM :: Notification is currently playing, returning -05-15-17_9:21:13 PM :: Hid Grid grdStatus -05-15-17_9:21:13 PM :: Slid Main Menu into view -05-15-17_9:21:13 PM :: New Notification: Status window was slid, 4sec(s) -05-15-17_9:21:13 PM :: Notification is currently playing, returning -05-15-17_9:21:13 PM :: Removed notification: Status window was slid -05-15-17_9:21:13 PM :: Notifications left: 3 -05-15-17_9:21:17 PM :: Removed notification: Status window was slid -05-15-17_9:21:17 PM :: Notifications left: 2 -05-15-17_9:21:17 PM :: -########################## Application Stop ########################## - - diff --git a/PersonalDiscordBot/bin/Debug/Logs/DebugLog_05-16-17.txt b/PersonalDiscordBot/bin/Debug/Logs/DebugLog_05-16-17.txt deleted file mode 100644 index 11b4d9f..0000000 --- a/PersonalDiscordBot/bin/Debug/Logs/DebugLog_05-16-17.txt +++ /dev/null @@ -1,2850 +0,0 @@ -05-16-17_6:35:01 AM :: -########################## Application Start ########################## - -05-16-17_6:35:01 AM :: Found Log Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs -05-16-17_6:35:01 AM :: Found Config Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config -05-16-17_6:35:01 AM :: Found Paths.json at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json -05-16-17_6:35:01 AM :: Found ServerConfig.xml at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml -05-16-17_6:35:01 AM :: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json Deserialized: - LogLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs] - ConfigLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config] - PathsConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json] - ServerConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml] -05-16-17_6:35:01 AM :: Finished reading config -05-16-17_6:35:01 AM :: Set Grid grdStatus to Hidden on launch -05-16-17_6:35:01 AM :: Set Grid grdSettings to Hidden on launch -05-16-17_6:35:01 AM :: Set Grid grdServers to Hidden on launch -05-16-17_6:35:01 AM :: Set Grid grdBotInfo to Hidden on launch -05-16-17_6:35:05 AM :: STATUS: Starting login updater -05-16-17_6:35:05 AM :: EXCEPTION: Start at 988 -05-16-17_6:35:05 AM :: STATUS: An Exception Occured: Start at 988 -Msg: The WebSocket protocol is not supported on this platform. -05-16-17_6:35:15 AM :: -########################## Application Stop ########################## - - -05-16-17_6:35:19 AM :: -########################## Application Start ########################## - -05-16-17_6:35:19 AM :: Found Log Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs -05-16-17_6:35:19 AM :: Found Config Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config -05-16-17_6:35:19 AM :: Found Paths.json at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json -05-16-17_6:35:19 AM :: Found ServerConfig.xml at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml -05-16-17_6:35:20 AM :: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json Deserialized: - LogLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs] - ConfigLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config] - PathsConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json] - ServerConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml] -05-16-17_6:35:20 AM :: Finished reading config -05-16-17_6:35:20 AM :: Set Grid grdStatus to Hidden on launch -05-16-17_6:35:20 AM :: Set Grid grdSettings to Hidden on launch -05-16-17_6:35:20 AM :: Set Grid grdServers to Hidden on launch -05-16-17_6:35:20 AM :: Set Grid grdBotInfo to Hidden on launch -05-16-17_6:35:24 AM :: STATUS: Starting login updater -05-16-17_6:35:24 AM :: Revealed Grid grdStatus -05-16-17_6:35:24 AM :: Hid Grid grdSettings -05-16-17_6:35:24 AM :: Hid Grid grdServers -05-16-17_6:35:24 AM :: Hid Grid grdBotInfo -05-16-17_6:35:24 AM :: Slid Main Menu out of view -05-16-17_6:35:24 AM :: New Notification: Status window was slid 1, 4sec(s) -05-16-17_6:35:24 AM :: Notification wasn't playing, starting notification play cycles -05-16-17_6:35:24 AM :: EXCEPTION: Start at 988 -05-16-17_6:35:24 AM :: STATUS: An Exception Occured: Start at 988 -Msg: The WebSocket protocol is not supported on this platform. -05-16-17_6:35:28 AM :: Removed notification: Status window was slid 1 -05-16-17_6:35:28 AM :: Notifications left: 0 -05-16-17_6:35:28 AM :: Finished playing all notifications -05-16-17_6:35:35 AM :: Hid Grid grdStatus -05-16-17_6:35:35 AM :: Slid Main Menu into view -05-16-17_6:35:35 AM :: New Notification: Status window was slid 2, 4sec(s) -05-16-17_6:35:35 AM :: Notification wasn't playing, starting notification play cycles -05-16-17_6:35:38 AM :: Revealed Grid grdStatus -05-16-17_6:35:38 AM :: Hid Grid grdSettings -05-16-17_6:35:38 AM :: Hid Grid grdServers -05-16-17_6:35:38 AM :: Hid Grid grdBotInfo -05-16-17_6:35:38 AM :: Slid Main Menu out of view -05-16-17_6:35:38 AM :: New Notification: Status window was slid 3, 4sec(s) -05-16-17_6:35:38 AM :: Notification is currently playing, returning -05-16-17_6:35:39 AM :: Removed notification: Status window was slid 2 -05-16-17_6:35:39 AM :: Notifications left: 1 -05-16-17_6:35:43 AM :: Removed notification: Status window was slid 3 -05-16-17_6:35:43 AM :: Notifications left: 0 -05-16-17_6:35:43 AM :: Finished playing all notifications -05-16-17_6:35:45 AM :: Hid Grid grdStatus -05-16-17_6:35:45 AM :: Slid Main Menu into view -05-16-17_6:35:45 AM :: New Notification: Status window was slid 4, 4sec(s) -05-16-17_6:35:45 AM :: Notification wasn't playing, starting notification play cycles -05-16-17_6:35:46 AM :: Revealed Grid grdStatus -05-16-17_6:35:46 AM :: Hid Grid grdSettings -05-16-17_6:35:46 AM :: Hid Grid grdServers -05-16-17_6:35:46 AM :: Hid Grid grdBotInfo -05-16-17_6:35:46 AM :: Slid Main Menu out of view -05-16-17_6:35:46 AM :: New Notification: Status window was slid 5, 4sec(s) -05-16-17_6:35:46 AM :: Notification is currently playing, returning -05-16-17_6:35:47 AM :: Hid Grid grdStatus -05-16-17_6:35:47 AM :: Slid Main Menu into view -05-16-17_6:35:47 AM :: New Notification: Status window was slid 6, 4sec(s) -05-16-17_6:35:47 AM :: Notification is currently playing, returning -05-16-17_6:35:48 AM :: Revealed Grid grdStatus -05-16-17_6:35:48 AM :: Hid Grid grdSettings -05-16-17_6:35:48 AM :: Hid Grid grdServers -05-16-17_6:35:48 AM :: Hid Grid grdBotInfo -05-16-17_6:35:48 AM :: Slid Main Menu out of view -05-16-17_6:35:48 AM :: New Notification: Status window was slid 7, 4sec(s) -05-16-17_6:35:48 AM :: Notification is currently playing, returning -05-16-17_6:35:49 AM :: Removed notification: Status window was slid 4 -05-16-17_6:35:49 AM :: Notifications left: 3 -05-16-17_6:35:53 AM :: Removed notification: Status window was slid 5 -05-16-17_6:35:53 AM :: Notifications left: 2 -05-16-17_6:35:57 AM :: Removed notification: Status window was slid 6 -05-16-17_6:35:57 AM :: Notifications left: 1 -05-16-17_6:36:01 AM :: Removed notification: Status window was slid 7 -05-16-17_6:36:01 AM :: Notifications left: 0 -05-16-17_6:36:01 AM :: Finished playing all notifications - -05-16-17_6:36:28 AM :: -########################## Application Stop ########################## - - -05-16-17_12:55:53 PM :: -########################## Application Start ########################## - -05-16-17_12:55:53 PM :: Found Log Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs -05-16-17_12:55:53 PM :: Found Config Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config -05-16-17_12:55:53 PM :: Found Paths.json at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json -05-16-17_12:55:53 PM :: Found ServerConfig.xml at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml -05-16-17_12:55:54 PM :: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json Deserialized: - LogLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs] - ConfigLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config] - PathsConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json] - ServerConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml] -05-16-17_12:55:54 PM :: Finished reading config -05-16-17_12:55:54 PM :: Set Grid grdStatus to Hidden on launch -05-16-17_12:55:54 PM :: Set Grid grdSettings to Hidden on launch -05-16-17_12:55:54 PM :: Set Grid grdServers to Hidden on launch -05-16-17_12:55:54 PM :: Set Grid grdBotInfo to Hidden on launch -05-16-17_12:55:54 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 15 -Speed: 39 -Physical Damage: 7 -05-16-17_12:56:01 PM :: Revealed Grid grdStatus -05-16-17_12:56:01 PM :: Hid Grid grdSettings -05-16-17_12:56:01 PM :: Hid Grid grdServers -05-16-17_12:56:01 PM :: Hid Grid grdBotInfo -05-16-17_12:56:01 PM :: Slid Main Menu out of view -05-16-17_12:57:47 PM :: -########################## Application Stop ########################## - - -05-16-17_1:05:29 PM :: -########################## Application Start ########################## - -05-16-17_1:05:29 PM :: Found Log Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs -05-16-17_1:05:29 PM :: Found Config Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config -05-16-17_1:05:29 PM :: Found Paths.json at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json -05-16-17_1:05:29 PM :: Found ServerConfig.xml at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml -05-16-17_1:05:29 PM :: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json Deserialized: - LogLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs] - ConfigLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config] - PathsConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json] - ServerConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml] -05-16-17_1:05:29 PM :: Finished reading config -05-16-17_1:05:30 PM :: Set Grid grdStatus to Hidden on launch -05-16-17_1:05:30 PM :: Set Grid grdSettings to Hidden on launch -05-16-17_1:05:30 PM :: Set Grid grdServers to Hidden on launch -05-16-17_1:05:30 PM :: Set Grid grdBotInfo to Hidden on launch -05-16-17_1:05:36 PM :: -########################## Application Stop ########################## - - -05-16-17_1:06:14 PM :: -########################## Application Start ########################## - -05-16-17_1:06:14 PM :: Found Log Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs -05-16-17_1:06:14 PM :: Found Config Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config -05-16-17_1:06:14 PM :: Found Paths.json at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json -05-16-17_1:06:14 PM :: Found ServerConfig.xml at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml -05-16-17_1:06:15 PM :: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json Deserialized: - LogLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs] - ConfigLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config] - PathsConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json] - ServerConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml] -05-16-17_1:06:15 PM :: Finished reading config -05-16-17_1:06:15 PM :: Set Grid grdStatus to Hidden on launch -05-16-17_1:06:15 PM :: Set Grid grdSettings to Hidden on launch -05-16-17_1:06:15 PM :: Set Grid grdServers to Hidden on launch -05-16-17_1:06:15 PM :: Set Grid grdBotInfo to Hidden on launch -05-16-17_1:06:17 PM :: Revealed Grid grdStatus -05-16-17_1:06:17 PM :: Hid Grid grdSettings -05-16-17_1:06:17 PM :: Hid Grid grdServers -05-16-17_1:06:17 PM :: Hid Grid grdBotInfo -05-16-17_1:06:17 PM :: Slid Main Menu out of view -05-16-17_1:06:18 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 42 -Speed: 23 -Physical Damage: 19 -05-16-17_1:06:26 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Rare -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 110 -Speed: 48 -Physical Damage: 31 -05-16-17_1:06:33 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Katana -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 42 -Speed: 32 -Physical Damage: 19 -05-16-17_1:06:35 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 42 -Speed: 22 -Physical Damage: 13 -05-16-17_1:06:35 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Katana -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 42 -Speed: 48 -Physical Damage: 19 -05-16-17_1:06:36 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 12 -Speed: 24 -Physical Damage: 4 -05-16-17_1:07:44 PM :: -########################## Application Stop ########################## - - -05-16-17_1:09:59 PM :: -########################## Application Start ########################## - -05-16-17_1:09:59 PM :: Found Log Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs -05-16-17_1:09:59 PM :: Found Config Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config -05-16-17_1:09:59 PM :: Found Paths.json at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json -05-16-17_1:09:59 PM :: Found ServerConfig.xml at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml -05-16-17_1:09:59 PM :: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json Deserialized: - LogLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs] - ConfigLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config] - PathsConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json] - ServerConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml] -05-16-17_1:09:59 PM :: Finished reading config -05-16-17_1:10:00 PM :: Set Grid grdStatus to Hidden on launch -05-16-17_1:10:00 PM :: Set Grid grdSettings to Hidden on launch -05-16-17_1:10:00 PM :: Set Grid grdServers to Hidden on launch -05-16-17_1:10:00 PM :: Set Grid grdBotInfo to Hidden on launch -05-16-17_1:10:01 PM :: Revealed Grid grdStatus -05-16-17_1:10:01 PM :: Hid Grid grdSettings -05-16-17_1:10:01 PM :: Hid Grid grdServers -05-16-17_1:10:01 PM :: Hid Grid grdBotInfo -05-16-17_1:10:01 PM :: Slid Main Menu out of view -05-16-17_1:10:02 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 44 -Speed: 30 -Physical Damage: 13 -05-16-17_1:10:04 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Staff -Rarity: Rare -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 111 -Speed: 40 -Physical Damage: 31 -05-16-17_1:10:05 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Epic -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 240 -Speed: 29 -Physical Damage: 46 -05-16-17_1:10:08 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Katana -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 47 -Speed: 37 -Physical Damage: 7 -05-16-17_1:10:15 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 15 -Speed: 26 -Physical Damage: 7 -05-16-17_1:10:18 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 44 -Speed: 45 -Physical Damage: 19 -05-16-17_1:10:19 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Rare -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 111 -Speed: 36 -Physical Damage: 21 -05-16-17_1:10:20 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 23 -Speed: 44 -Physical Damage: 4 -05-16-17_1:10:36 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 44 -Speed: 46 -Physical Damage: 19 -05-16-17_1:11:30 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 45 -Speed: 39 -Physical Damage: 13 -05-16-17_1:11:36 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 21 -Speed: 39 -Physical Damage: 4 -05-16-17_1:11:37 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Rare -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 112 -Speed: 47 -Physical Damage: 21 -05-16-17_1:12:55 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Vendor -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 26 -Speed: 49 -Physical Damage: 2 -05-16-17_1:13:19 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 19 -Speed: 28 -Physical Damage: 4 -05-16-17_1:13:22 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 17 -Speed: 38 -Physical Damage: 7 - -05-16-17_1:13:23 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Other -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 17 -Speed: 41 -Physical Damage: 7 -05-16-17_1:13:23 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 19 -Speed: 30 -Physical Damage: 4 -05-16-17_1:13:24 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Staff -Rarity: Epic -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 242 -Speed: 39 -Physical Damage: 16 -05-16-17_1:13:26 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 46 -Speed: 33 -Physical Damage: 7 -05-16-17_1:13:26 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Epic -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 240 -Speed: 23 -Physical Damage: 31 -05-16-17_1:13:27 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: DragonSpear -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 17 -Speed: 39 -Physical Damage: 7 -05-16-17_1:13:28 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Katana -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 17 -Speed: 41 -Physical Damage: 7 -05-16-17_1:13:28 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Staff -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 20 -Speed: 34 -Physical Damage: 4 -05-16-17_1:13:28 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 19 -Speed: 30 -Physical Damage: 4 -05-16-17_1:13:29 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 45 -Speed: 48 -Physical Damage: 13 -05-16-17_1:13:29 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Staff -Rarity: Vendor -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 22 -Speed: 41 -Physical Damage: 2 -05-16-17_1:13:29 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Staff -Rarity: Epic -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 240 -Speed: 34 -Physical Damage: 46 -05-16-17_1:13:29 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 43 -Speed: 24 -Physical Damage: 19 -05-16-17_1:13:30 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 15 -Speed: 21 -Physical Damage: 7 -05-16-17_1:13:30 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 15 -Speed: 26 -Physical Damage: 7 -05-16-17_1:13:30 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Katana -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 22 -Speed: 42 -Physical Damage: 4 -05-16-17_1:13:30 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 17 -Speed: 41 -Physical Damage: 7 -05-16-17_1:13:30 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 15 -Speed: 35 -Physical Damage: 10 -05-16-17_1:13:31 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 44 -Speed: 35 -Physical Damage: 13 -05-16-17_1:13:31 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 18 -Speed: 42 -Physical Damage: 7 -05-16-17_1:13:31 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Staff -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 23 -Speed: 47 -Physical Damage: 4 -05-16-17_1:13:31 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Katana -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 45 -Speed: 46 -Physical Damage: 13 - -05-16-17_1:13:31 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: TwinSwords -Rarity: Vendor -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 17 -Speed: 45 -Physical Damage: 3 -05-16-17_1:13:32 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Epic -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 241 -Speed: 24 -Physical Damage: 16 -05-16-17_1:13:32 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Vendor -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 17 -Speed: 47 -Physical Damage: 3 -05-16-17_1:13:32 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Other -Rarity: Vendor -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 15 -Speed: 39 -Physical Damage: 3 -05-16-17_1:13:32 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 43 -Speed: 24 -Physical Damage: 19 -05-16-17_1:13:32 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 43 -Speed: 24 -Physical Damage: 19 -05-16-17_1:13:33 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 15 -Speed: 31 -Physical Damage: 10 -05-16-17_1:13:33 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Epic -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 241 -Speed: 31 -Physical Damage: 31 -05-16-17_1:13:33 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 46 -Speed: 30 -Physical Damage: 7 -05-16-17_1:13:33 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Staff -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 24 -Speed: 48 -Physical Damage: 4 -05-16-17_1:13:34 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 17 -Speed: 36 -Physical Damage: 7 -05-16-17_1:13:34 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 46 -Speed: 33 -Physical Damage: 7 -05-16-17_1:13:34 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 18 -Speed: 43 -Physical Damage: 7 -05-16-17_1:13:34 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: FocusStone -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 44 -Speed: 46 -Physical Damage: 19 -05-16-17_1:13:35 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Staff -Rarity: Rare -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 112 -Speed: 30 -Physical Damage: 11 -05-16-17_1:13:35 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Epic -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 240 -Speed: 31 -Physical Damage: 46 -05-16-17_1:13:35 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 14 -Speed: 21 -Physical Damage: 10 -05-16-17_1:13:36 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 43 -Speed: 22 -Physical Damage: 19 -05-16-17_1:13:36 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Katana -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 21 -Speed: 39 -Physical Damage: 4 -05-16-17_1:13:36 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Rare -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 113 -Speed: 36 -Physical Damage: 11 -05-16-17_1:13:37 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 17 -Speed: 36 -Physical Damage: 7 -05-16-17_1:13:37 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Spear -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 43 -Speed: 21 -Physical Damage: 13 - -05-16-17_1:13:37 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 16 -Speed: 34 -Physical Damage: 7 -05-16-17_1:13:37 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 43 -Speed: 32 -Physical Damage: 19 -05-16-17_1:13:37 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Staff -Rarity: Rare -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 113 -Speed: 33 -Physical Damage: 11 -05-16-17_1:13:37 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Vendor -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 12 -Speed: 41 -Physical Damage: 4 -05-16-17_1:13:38 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Other -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 14 -Speed: 24 -Physical Damage: 10 -05-16-17_1:13:38 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 18 -Speed: 48 -Physical Damage: 7 -05-16-17_1:13:38 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 14 -Speed: 23 -Physical Damage: 10 -05-16-17_1:13:38 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: DragonSpear -Rarity: Epic -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 241 -Speed: 23 -Physical Damage: 16 -05-16-17_1:13:38 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 20 -Speed: 34 -Physical Damage: 4 -05-16-17_1:13:39 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Epic -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 240 -Speed: 28 -Physical Damage: 46 -05-16-17_1:13:39 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Katana -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 20 -Speed: 34 -Physical Damage: 4 -05-16-17_1:13:39 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Vendor -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 9 -Speed: 22 -Physical Damage: 3 -05-16-17_1:13:39 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Katana -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 15 -Speed: 21 -Physical Damage: 7 -05-16-17_1:13:39 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Rare -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 111 -Speed: 31 -Physical Damage: 31 -05-16-17_1:13:39 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 44 -Speed: 28 -Physical Damage: 13 -05-16-17_1:13:40 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 44 -Speed: 48 -Physical Damage: 19 -05-16-17_1:13:40 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Rare -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 110 -Speed: 22 -Physical Damage: 31 -05-16-17_1:13:40 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Vendor -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 14 -Speed: 49 -Physical Damage: 4 -05-16-17_1:13:40 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Rare -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 111 -Speed: 33 -Physical Damage: 21 -05-16-17_1:13:40 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: FocusStone -Rarity: Vendor -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 17 -Speed: 30 -Physical Damage: 2 -05-16-17_1:13:40 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Vendor -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 20 -Speed: 36 -Physical Damage: 2 -05-16-17_1:13:41 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Epic -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 242 -Speed: 35 -Physical Damage: 16 - -05-16-17_1:13:41 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Vendor -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 10 -Speed: 33 -Physical Damage: 4 -05-16-17_1:13:41 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Spear -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 14 -Speed: 25 -Physical Damage: 10 -05-16-17_1:13:41 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Rare -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 110 -Speed: 29 -Physical Damage: 31 -05-16-17_1:15:30 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 15 -Speed: 37 -Physical Damage: 10 -05-16-17_1:15:30 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Rare -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 112 -Speed: 48 -Physical Damage: 21 -05-16-17_1:15:30 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Staff -Rarity: Rare -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 111 -Speed: 47 -Physical Damage: 31 -05-16-17_1:15:31 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Rare -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 112 -Speed: 27 -Physical Damage: 11 -05-16-17_1:15:31 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Epic -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 241 -Speed: 21 -Physical Damage: 16 -05-16-17_1:15:31 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 45 -Speed: 43 -Physical Damage: 13 -05-16-17_1:15:31 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 16 -Speed: 44 -Physical Damage: 10 -05-16-17_1:15:31 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 18 -Speed: 42 -Physical Damage: 7 -05-16-17_1:15:32 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 44 -Speed: 46 -Physical Damage: 19 -05-16-17_1:15:32 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Katana -Rarity: Epic -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 240 -Speed: 37 -Physical Damage: 46 -05-16-17_1:15:32 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 18 -Speed: 27 -Physical Damage: 4 -05-16-17_1:15:32 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Katana -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 43 -Speed: 22 -Physical Damage: 19 -05-16-17_1:15:32 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 49 -Speed: 50 -Physical Damage: 7 -05-16-17_1:15:32 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Other -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 19 -Speed: 30 -Physical Damage: 4 -05-16-17_1:15:33 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 45 -Speed: 39 -Physical Damage: 13 -05-16-17_1:15:33 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 18 -Speed: 25 -Physical Damage: 4 -05-16-17_1:15:33 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Vendor -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 10 -Speed: 25 -Physical Damage: 3 -05-16-17_1:15:33 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 18 -Speed: 27 -Physical Damage: 4 -05-16-17_1:15:33 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Vendor -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 17 -Speed: 46 -Physical Damage: 3 - -05-16-17_1:15:34 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Rare -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 112 -Speed: 47 -Physical Damage: 21 -05-16-17_1:15:34 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Katana -Rarity: Vendor -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 14 -Speed: 25 -Physical Damage: 2 -05-16-17_1:15:34 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 43 -Speed: 22 -Physical Damage: 13 -05-16-17_1:15:34 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Vendor -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 9 -Speed: 31 -Physical Damage: 4 -05-16-17_1:15:34 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: DragonSpear -Rarity: Vendor -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 15 -Speed: 39 -Physical Damage: 3 -05-16-17_1:15:35 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: DragonSpear -Rarity: Epic -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 240 -Speed: 24 -Physical Damage: 31 -05-16-17_1:15:35 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Katana -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 47 -Speed: 39 -Physical Damage: 7 -05-16-17_1:15:35 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Katana -Rarity: Rare -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 111 -Speed: 23 -Physical Damage: 21 -05-16-17_1:15:35 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Katana -Rarity: Vendor -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 10 -Speed: 32 -Physical Damage: 4 -05-16-17_1:15:35 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Vendor -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 14 -Speed: 37 -Physical Damage: 3 -05-16-17_1:15:36 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: TwinSwords -Rarity: Epic -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 241 -Speed: 44 -Physical Damage: 31 -05-16-17_1:15:36 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 14 -Speed: 28 -Physical Damage: 10 -05-16-17_1:15:36 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Vendor -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 13 -Speed: 22 -Physical Damage: 2 -05-16-17_1:15:36 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 44 -Speed: 38 -Physical Damage: 19 -05-16-17_1:15:44 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 18 -Speed: 48 -Physical Damage: 7 -05-16-17_1:15:44 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Staff -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 15 -Speed: 31 -Physical Damage: 10 -05-16-17_1:15:44 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Katana -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 20 -Speed: 35 -Physical Damage: 4 -05-16-17_1:15:45 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 22 -Speed: 42 -Physical Damage: 4 -05-16-17_1:15:45 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 15 -Speed: 32 -Physical Damage: 10 -05-16-17_1:15:45 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Vendor -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 13 -Speed: 22 -Physical Damage: 2 -05-16-17_1:15:46 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Spear -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 15 -Speed: 27 -Physical Damage: 7 -05-16-17_1:15:46 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Staff -Rarity: Rare -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 111 -Speed: 45 -Physical Damage: 31 - -05-16-17_1:15:46 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 17 -Speed: 36 -Physical Damage: 7 -05-16-17_1:15:46 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 19 -Speed: 29 -Physical Damage: 4 -05-16-17_1:15:47 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 43 -Speed: 22 -Physical Damage: 13 -05-16-17_1:15:47 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: DragonSpear -Rarity: Vendor -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 10 -Speed: 34 -Physical Damage: 4 -05-16-17_1:15:47 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 45 -Speed: 44 -Physical Damage: 13 -05-16-17_1:15:47 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Vendor -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 12 -Speed: 43 -Physical Damage: 4 -05-16-17_1:15:47 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Staff -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 24 -Speed: 49 -Physical Damage: 4 -05-16-17_1:15:47 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Staff -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 45 -Speed: 50 -Physical Damage: 13 -05-16-17_1:15:48 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Staff -Rarity: Rare -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 110 -Speed: 24 -Physical Damage: 31 -05-16-17_1:15:48 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Rare -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 114 -Speed: 44 -Physical Damage: 11 -05-16-17_1:15:48 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Rare -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 113 -Speed: 33 -Physical Damage: 11 -05-16-17_1:15:48 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 43 -Speed: 22 -Physical Damage: 13 -05-16-17_1:15:48 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 16 -Speed: 46 -Physical Damage: 10 -05-16-17_1:15:49 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Vendor -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 15 -Speed: 39 -Physical Damage: 3 -05-16-17_1:15:49 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Katana -Rarity: Rare -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 111 -Speed: 24 -Physical Damage: 21 -05-16-17_1:15:49 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 15 -Speed: 36 -Physical Damage: 10 -05-16-17_1:15:49 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Vendor -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 23 -Speed: 42 -Physical Damage: 2 -05-16-17_1:15:49 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Katana -Rarity: Rare -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 112 -Speed: 44 -Physical Damage: 21 -05-16-17_1:15:50 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 15 -Speed: 36 -Physical Damage: 10 -05-16-17_1:15:50 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Katana -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 15 -Speed: 30 -Physical Damage: 10 -05-16-17_1:15:50 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Rare -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 114 -Speed: 45 -Physical Damage: 11 -05-16-17_1:15:50 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Vendor -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 14 -Speed: 36 -Physical Damage: 3 - -05-16-17_1:15:50 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 24 -Speed: 49 -Physical Damage: 4 -05-16-17_1:15:50 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Legendary -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 462 -Speed: 21 -Physical Damage: 64 -05-16-17_1:15:51 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Katana -Rarity: Rare -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 114 -Speed: 49 -Physical Damage: 11 -05-16-17_1:15:51 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Staff -Rarity: Rare -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 111 -Speed: 41 -Physical Damage: 31 -05-16-17_1:16:06 PM :: -########################## Application Stop ########################## - - -05-16-17_1:49:15 PM :: -########################## Application Start ########################## - -05-16-17_1:49:15 PM :: Found Log Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs -05-16-17_1:49:15 PM :: Found Config Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config -05-16-17_1:49:15 PM :: Found Paths.json at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json -05-16-17_1:49:15 PM :: Found ServerConfig.xml at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml -05-16-17_1:49:16 PM :: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json Deserialized: - LogLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs] - ConfigLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config] - PathsConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json] - ServerConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml] -05-16-17_1:49:16 PM :: Finished reading config -05-16-17_1:49:17 PM :: Set Grid grdStatus to Hidden on launch -05-16-17_1:49:17 PM :: Set Grid grdSettings to Hidden on launch -05-16-17_1:49:17 PM :: Set Grid grdServers to Hidden on launch -05-16-17_1:49:17 PM :: Set Grid grdBotInfo to Hidden on launch -05-16-17_1:49:18 PM :: Revealed Grid grdStatus -05-16-17_1:49:18 PM :: Hid Grid grdSettings -05-16-17_1:49:18 PM :: Hid Grid grdServers -05-16-17_1:49:18 PM :: Hid Grid grdBotInfo -05-16-17_1:49:18 PM :: Slid Main Menu out of view -05-16-17_1:49:21 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Katana -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 18 -Speed: 25 -Physical Damage: 4 -05-16-17_1:49:30 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 15 -Speed: 36 -Physical Damage: 10 -05-16-17_1:49:31 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Katana -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 17 -Speed: 35 -Physical Damage: 7 -05-16-17_1:49:32 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Staff -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 18 -Speed: 24 -Physical Damage: 4 -05-16-17_1:49:33 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Katana -Rarity: Rare -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 113 -Speed: 43 -Physical Damage: 11 -05-16-17_1:50:26 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 15 -Speed: 36 -Physical Damage: 10 -05-16-17_1:50:27 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Vendor -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 16 -Speed: 43 -Physical Damage: 3 -05-16-17_1:50:27 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 21 -Speed: 37 -Physical Damage: 4 -05-16-17_1:50:28 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 45 -Speed: 22 -Physical Damage: 7 -05-16-17_1:50:28 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: FocusStone -Rarity: Rare -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 112 -Speed: 24 -Physical Damage: 11 -05-16-17_1:50:28 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Rare -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 111 -Speed: 39 -Physical Damage: 21 -05-16-17_1:50:28 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Katana -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 14 -Speed: 24 -Physical Damage: 10 -05-16-17_1:50:28 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Katana -Rarity: Rare -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 114 -Speed: 48 -Physical Damage: 11 -05-16-17_1:50:29 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 16 -Speed: 44 -Physical Damage: 10 -05-16-17_1:50:29 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 14 -Speed: 26 -Physical Damage: 10 - -05-16-17_1:50:29 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 44 -Speed: 28 -Physical Damage: 13 -05-16-17_1:50:29 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 24 -Speed: 50 -Physical Damage: 4 -05-16-17_1:50:29 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Staff -Rarity: Rare -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 110 -Speed: 27 -Physical Damage: 31 -05-16-17_1:50:29 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 43 -Speed: 30 -Physical Damage: 19 -05-16-17_1:50:30 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Epic -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 242 -Speed: 36 -Physical Damage: 16 -05-16-17_1:50:30 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Katana -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 15 -Speed: 38 -Physical Damage: 10 -05-16-17_1:50:30 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Vendor -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 15 -Speed: 41 -Physical Damage: 3 -05-16-17_1:50:30 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 15 -Speed: 22 -Physical Damage: 7 -05-16-17_1:50:30 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 45 -Speed: 45 -Physical Damage: 13 -05-16-17_1:50:30 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Vendor -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 14 -Speed: 25 -Physical Damage: 2 -05-16-17_1:50:30 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: DragonSpear -Rarity: Rare -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 110 -Speed: 26 -Physical Damage: 31 -05-16-17_1:50:31 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: TwinSwords -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 21 -Speed: 36 -Physical Damage: 4 -05-16-17_1:50:31 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Staff -Rarity: Rare -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 114 -Speed: 47 -Physical Damage: 11 -05-16-17_1:50:31 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Staff -Rarity: Rare -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 111 -Speed: 33 -Physical Damage: 31 -05-16-17_1:50:31 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 43 -Speed: 27 -Physical Damage: 19 -05-16-17_1:50:31 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 45 -Speed: 43 -Physical Damage: 13 -05-16-17_1:50:32 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Katana -Rarity: Rare -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 111 -Speed: 28 -Physical Damage: 21 -05-16-17_1:50:32 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Katana -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 44 -Speed: 45 -Physical Damage: 19 -05-16-17_1:50:32 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Vendor -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 14 -Speed: 38 -Physical Damage: 3 -05-16-17_1:50:32 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 46 -Speed: 30 -Physical Damage: 7 -05-16-17_1:50:32 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Katana -Rarity: Rare -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 111 -Speed: 37 -Physical Damage: 21 -05-16-17_1:50:33 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 16 -Speed: 44 -Physical Damage: 10 - -05-16-17_1:50:33 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Epic -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 240 -Speed: 24 -Physical Damage: 46 -05-16-17_1:50:33 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Vendor -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 17 -Speed: 31 -Physical Damage: 2 -05-16-17_1:50:33 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 14 -Speed: 25 -Physical Damage: 10 -05-16-17_1:50:33 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 46 -Speed: 33 -Physical Damage: 7 -05-16-17_1:50:33 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Vendor -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 12 -Speed: 21 -Physical Damage: 2 -05-16-17_1:50:34 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Spear -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 14 -Speed: 26 -Physical Damage: 10 -05-16-17_1:50:34 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Vendor -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 12 -Speed: 21 -Physical Damage: 2 -05-16-17_1:50:34 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Vendor -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 8 -Speed: 26 -Physical Damage: 4 -05-16-17_1:50:34 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Rare -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 111 -Speed: 35 -Physical Damage: 21 -05-16-17_1:50:34 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 44 -Speed: 42 -Physical Damage: 19 -05-16-17_1:50:34 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Vendor -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 9 -Speed: 29 -Physical Damage: 4 -05-16-17_1:50:35 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 15 -Speed: 36 -Physical Damage: 10 -05-16-17_1:50:35 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 21 -Speed: 37 -Physical Damage: 4 -05-16-17_1:50:35 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Vendor -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 11 -Speed: 36 -Physical Damage: 4 -05-16-17_1:50:35 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Epic -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 240 -Speed: 37 -Physical Damage: 46 -05-16-17_1:50:35 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 17 -Speed: 23 -Physical Damage: 4 -05-16-17_1:50:35 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 24 -Speed: 48 -Physical Damage: 4 -05-16-17_1:50:36 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Staff -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 44 -Speed: 39 -Physical Damage: 19 -05-16-17_1:50:36 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 14 -Speed: 25 -Physical Damage: 10 -05-16-17_1:50:36 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 44 -Speed: 34 -Physical Damage: 13 -05-16-17_1:50:36 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 45 -Speed: 43 -Physical Damage: 13 -05-16-17_1:50:36 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Other -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 45 -Speed: 43 -Physical Damage: 13 - -05-16-17_1:50:37 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Epic -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 241 -Speed: 39 -Physical Damage: 31 -05-16-17_1:50:37 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Katana -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 43 -Speed: 34 -Physical Damage: 19 -05-16-17_1:50:37 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 20 -Speed: 35 -Physical Damage: 4 -05-16-17_1:50:37 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 43 -Speed: 21 -Physical Damage: 13 -05-16-17_1:50:37 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Katana -Rarity: Rare -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 111 -Speed: 42 -Physical Damage: 31 -05-16-17_1:50:37 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 16 -Speed: 31 -Physical Damage: 7 -05-16-17_1:50:38 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: TwinSwords -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 43 -Speed: 35 -Physical Damage: 19 -05-16-17_1:50:38 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 44 -Speed: 34 -Physical Damage: 13 -05-16-17_1:50:38 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Uncommon -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 46 -Speed: 29 -Physical Damage: 7 -05-16-17_1:50:38 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 14 -Speed: 29 -Physical Damage: 10 -05-16-17_1:50:38 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Rare -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 111 -Speed: 35 -Physical Damage: 21 -05-16-17_1:50:39 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Rare -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 114 -Speed: 50 -Physical Damage: 11 -05-16-17_1:50:39 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Dagger -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 16 -Speed: 46 -Physical Damage: 10 -05-16-17_1:50:39 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 17 -Speed: 21 -Physical Damage: 4 -05-16-17_1:50:39 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Other -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 17 -Speed: 41 -Physical Damage: 7 -05-16-17_1:50:39 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Greatsword -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 14 -Speed: 27 -Physical Damage: 10 -05-16-17_1:50:40 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Sword -Rarity: Rare -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 113 -Speed: 37 -Physical Damage: 11 -05-16-17_1:50:40 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Staff -Rarity: Legendary -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 462 -Speed: 25 -Physical Damage: 43 -05-16-17_1:50:40 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Other -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 16 -Speed: 48 -Physical Damage: 10 -05-16-17_1:50:40 PM :: STATUS: -Name: SomeBody Once Told Me -Description: The World is Gonna Rule Me -Type: Other -Rarity: Common -Level: 1 -Max Durability: 10 -Current Durability: 10 -Worth: 18 -Speed: 48 -Physical Damage: 7 -05-16-17_1:51:29 PM :: -########################## Application Stop ########################## - - diff --git a/PersonalDiscordBot/bin/Debug/Logs/DebugLog_05-30-17.txt b/PersonalDiscordBot/bin/Debug/Logs/DebugLog_05-30-17.txt new file mode 100644 index 0000000..d82e933 --- /dev/null +++ b/PersonalDiscordBot/bin/Debug/Logs/DebugLog_05-30-17.txt @@ -0,0 +1,585 @@ +05-30-17_5:59:05 PM :: +########################## Application Start ########################## + +05-30-17_5:59:05 PM :: Found Log Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs +05-30-17_5:59:05 PM :: Found Config Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config +05-30-17_5:59:05 PM :: Found Paths.json at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json +05-30-17_5:59:05 PM :: Found ServerConfig.xml at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml +05-30-17_5:59:05 PM :: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json Deserialized: + LogLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs] + ConfigLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config] + PathsConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json] + ServerConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml] +05-30-17_5:59:05 PM :: Finished reading config +05-30-17_5:59:06 PM :: Set Grid grdStatus to Hidden on launch +05-30-17_5:59:06 PM :: Set Grid grdSettings to Hidden on launch +05-30-17_5:59:06 PM :: Set Grid grdServers to Hidden on launch +05-30-17_5:59:06 PM :: Set Grid grdBotInfo to Hidden on launch +05-30-17_5:59:07 PM :: Revealed Grid grdStatus +05-30-17_5:59:07 PM :: Hid Grid grdSettings +05-30-17_5:59:07 PM :: Hid Grid grdServers +05-30-17_5:59:07 PM :: Hid Grid grdBotInfo +05-30-17_5:59:07 PM :: Slid Main Menu out of view +05-30-17_5:59:09 PM :: STATUS: +Hello. +Richard. + + +You have 120943507 seconds(s) of safety remaining until Heather uses Pokes' you in the eye on yo ass. +Good Luck! +05-30-17_5:59:17 PM :: STATUS: +Hello. +Richard. + + +You have 325578822 seconds(s) of safety remaining until Heather uses Rare Dagger on yo ass. +Good Luck! +05-30-17_5:59:21 PM :: STATUS: +Hello. +Richard. + + +You have 53385796 seconds(s) of safety remaining until Heather uses Not a weapon on yo ass. +Good Luck! +05-30-17_5:59:24 PM :: STATUS: +Hello. +Richard. + + +You have 353925028 seconds(s) of safety remaining until Heather uses Common Dagger on yo ass. +Good Luck! +05-30-17_5:59:25 PM :: STATUS: +Hello. +Richard. + + +You have 250706679 seconds(s) of safety remaining until Heather uses Pokes' you in the eye on yo ass. +Good Luck! +05-30-17_5:59:26 PM :: STATUS: +Hello. +Richard. + + +You have 333111836 seconds(s) of safety remaining until Heather uses Uncommon Dagger on yo ass. +Good Luck! +05-30-17_5:59:27 PM :: STATUS: +Hello. +Richard. + + +You have 105730435 seconds(s) of safety remaining until Heather uses Common Sword on yo ass. +Good Luck! +05-30-17_5:59:27 PM :: STATUS: +Hello. +Richard. + + +You have 18818646 seconds(s) of safety remaining until Heather uses Cut you real bad on yo ass. +Good Luck! +05-30-17_5:59:27 PM :: STATUS: +Hello. +Richard. + + +You have 207691942 seconds(s) of safety remaining until Heather uses Uncommon Twin Swords on yo ass. +Good Luck! +05-30-17_5:59:29 PM :: STATUS: +Hello. +Richard. + + +You have 300321767 seconds(s) of safety remaining until Heather uses Common Dragon Spear on yo ass. +Good Luck! +05-30-17_5:59:29 PM :: STATUS: +Hello. +Richard. + + +You have 7630342 seconds(s) of safety remaining until Heather uses Rogues' Daggers on yo ass. +Good Luck! +05-30-17_5:59:30 PM :: STATUS: +Hello. +Richard. + + +You have 357921446 seconds(s) of safety remaining until Heather uses Stabby McStab Stab on yo ass. +Good Luck! +05-30-17_5:59:31 PM :: STATUS: +Hello. +Richard. + + +You have 30336913 seconds(s) of safety remaining until Heather uses Common Dagger on yo ass. +Good Luck! +05-30-17_5:59:35 PM :: STATUS: +Hello. +Richard. + + +You have 216999579 seconds(s) of safety remaining until Heather uses Pokes' you in the eye on yo ass. +Good Luck! +05-30-17_5:59:36 PM :: +########################## Application Stop ########################## + + +05-30-17_6:01:21 PM :: +########################## Application Start ########################## + +05-30-17_6:01:21 PM :: Found Log Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs +05-30-17_6:01:21 PM :: Found Config Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config +05-30-17_6:01:21 PM :: Found Paths.json at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json +05-30-17_6:01:21 PM :: Found ServerConfig.xml at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml +05-30-17_6:01:21 PM :: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json Deserialized: + LogLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs] + ConfigLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config] + PathsConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json] + ServerConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml] +05-30-17_6:01:21 PM :: Finished reading config +05-30-17_6:01:22 PM :: Set Grid grdStatus to Hidden on launch +05-30-17_6:01:22 PM :: Set Grid grdSettings to Hidden on launch +05-30-17_6:01:22 PM :: Set Grid grdServers to Hidden on launch +05-30-17_6:01:22 PM :: Set Grid grdBotInfo to Hidden on launch +05-30-17_6:01:24 PM :: Revealed Grid grdStatus +05-30-17_6:01:24 PM :: Hid Grid grdSettings +05-30-17_6:01:24 PM :: Hid Grid grdServers +05-30-17_6:01:24 PM :: Hid Grid grdBotInfo +05-30-17_6:01:24 PM :: Slid Main Menu out of view +05-30-17_6:01:25 PM :: STATUS: +Hello. +Richard. +You have 31949209 seconds(s) of safety remaining until Heather uses +************************** +Name: Common Sword +Description: An average Common Sword +Type: Sword +Rarity: Common +Level: 1 +Max Durability: 22 +Current Durability: 22 +Worth: 23 +Speed: 135 +Physical Damage: 12************************** +on yo ass. +Good Luck! +05-30-17_6:02:07 PM :: +########################## Application Stop ########################## + + +05-30-17_6:09:03 PM :: +########################## Application Start ########################## + +05-30-17_6:09:03 PM :: Found Log Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs +05-30-17_6:09:03 PM :: Found Config Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config +05-30-17_6:09:03 PM :: Found Paths.json at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json +05-30-17_6:09:03 PM :: Found ServerConfig.xml at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml +05-30-17_6:09:04 PM :: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json Deserialized: + LogLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs] + ConfigLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config] + PathsConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json] + ServerConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml] +05-30-17_6:09:04 PM :: Finished reading config +05-30-17_6:09:05 PM :: Set Grid grdStatus to Hidden on launch +05-30-17_6:09:05 PM :: Set Grid grdSettings to Hidden on launch +05-30-17_6:09:05 PM :: Set Grid grdServers to Hidden on launch +05-30-17_6:09:05 PM :: Set Grid grdBotInfo to Hidden on launch +05-30-17_6:09:07 PM :: Revealed Grid grdStatus +05-30-17_6:09:07 PM :: Hid Grid grdSettings +05-30-17_6:09:07 PM :: Hid Grid grdServers +05-30-17_6:09:07 PM :: Hid Grid grdBotInfo +05-30-17_6:09:07 PM :: Slid Main Menu out of view +05-30-17_6:09:09 PM :: STATUS: +Hello. +Richard. +You have 270831889 seconds(s) of safety remaining until Heather uses Rare Sword on yo ass. +Good Luck! +************************** + +Name: Rare Sword +Description: An average Rare Sword +Type: Sword +Rarity: Rare +Level: 2 +Max Durability: 60 +Current Durability: 60 +Worth: 127 +Speed: 149 +Physical Damage: 21 +************************** + +05-30-17_6:09:23 PM :: +########################## Application Stop ########################## + + +05-30-17_6:09:37 PM :: +########################## Application Start ########################## + +05-30-17_6:09:37 PM :: Found Log Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs +05-30-17_6:09:37 PM :: Found Config Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config +05-30-17_6:09:37 PM :: Found Paths.json at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json +05-30-17_6:09:37 PM :: Found ServerConfig.xml at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml +05-30-17_6:09:38 PM :: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json Deserialized: + LogLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs] + ConfigLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config] + PathsConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json] + ServerConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml] +05-30-17_6:09:38 PM :: Finished reading config +05-30-17_6:09:38 PM :: Set Grid grdStatus to Hidden on launch +05-30-17_6:09:38 PM :: Set Grid grdSettings to Hidden on launch +05-30-17_6:09:38 PM :: Set Grid grdServers to Hidden on launch +05-30-17_6:09:38 PM :: Set Grid grdBotInfo to Hidden on launch +05-30-17_6:09:41 PM :: Revealed Grid grdStatus +05-30-17_6:09:41 PM :: Hid Grid grdSettings +05-30-17_6:09:41 PM :: Hid Grid grdServers +05-30-17_6:09:41 PM :: Hid Grid grdBotInfo +05-30-17_6:09:41 PM :: Slid Main Menu out of view +05-30-17_6:09:42 PM :: STATUS: +Hello. +Richard. +You have 6058965 seconds(s) of safety remaining until Heather uses Rare Dagger on yo ass. +Good Luck! +************************** +Name: Rare Dagger +Description: An average Rare Dagger +Type: Dagger +Rarity: Rare +Level: 1 +Max Durability: 50 +Current Durability: 50 +Worth: 123 +Speed: 190 +Physical Damage: 14 +************************** + +05-30-17_6:09:49 PM :: +########################## Application Stop ########################## + + +05-30-17_6:10:03 PM :: +########################## Application Start ########################## + +05-30-17_6:10:03 PM :: Found Log Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs +05-30-17_6:10:03 PM :: Found Config Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config +05-30-17_6:10:03 PM :: Found Paths.json at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json +05-30-17_6:10:03 PM :: Found ServerConfig.xml at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml +05-30-17_6:10:03 PM :: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json Deserialized: + LogLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs] + ConfigLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config] + PathsConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json] + ServerConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml] +05-30-17_6:10:03 PM :: Finished reading config +05-30-17_6:10:04 PM :: Set Grid grdStatus to Hidden on launch +05-30-17_6:10:04 PM :: Set Grid grdSettings to Hidden on launch +05-30-17_6:10:04 PM :: Set Grid grdServers to Hidden on launch +05-30-17_6:10:04 PM :: Set Grid grdBotInfo to Hidden on launch +05-30-17_6:10:06 PM :: Revealed Grid grdStatus +05-30-17_6:10:06 PM :: Hid Grid grdSettings +05-30-17_6:10:06 PM :: Hid Grid grdServers +05-30-17_6:10:06 PM :: Hid Grid grdBotInfo +05-30-17_6:10:06 PM :: Slid Main Menu out of view +05-30-17_6:10:07 PM :: STATUS: +Hello. +Richard. +You have 128387275 seconds(s) of safety remaining until Heather uses Uncommon Spear on yo ass. +Good Luck! +************************** +Name: Uncommon Spear +Description: An average Uncommon Spear +Type: Spear +Rarity: Uncommon +Level: 1 +Max Durability: 34 +Current Durability: 34 +Worth: 52 +Speed: 160 +Physical Damage: 16 +************************** +05-30-17_6:10:21 PM :: +########################## Application Stop ########################## + + +05-30-17_6:11:39 PM :: +########################## Application Start ########################## + +05-30-17_6:11:39 PM :: Found Log Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs +05-30-17_6:11:39 PM :: Found Config Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config +05-30-17_6:11:39 PM :: Found Paths.json at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json +05-30-17_6:11:39 PM :: Found ServerConfig.xml at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml +05-30-17_6:11:39 PM :: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json Deserialized: + LogLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs] + ConfigLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config] + PathsConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json] + ServerConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml] +05-30-17_6:11:39 PM :: Finished reading config +05-30-17_6:11:40 PM :: Set Grid grdStatus to Hidden on launch +05-30-17_6:11:40 PM :: Set Grid grdSettings to Hidden on launch +05-30-17_6:11:40 PM :: Set Grid grdServers to Hidden on launch +05-30-17_6:11:40 PM :: Set Grid grdBotInfo to Hidden on launch +05-30-17_6:11:42 PM :: Revealed Grid grdStatus +05-30-17_6:11:42 PM :: Hid Grid grdSettings +05-30-17_6:11:42 PM :: Hid Grid grdServers +05-30-17_6:11:42 PM :: Hid Grid grdBotInfo +05-30-17_6:11:42 PM :: Slid Main Menu out of view +05-30-17_6:11:43 PM :: STATUS: +Hello Richard. +You have 218357162 seconds(s) of safety remaining until Heather uses Common Great Sword on yo ass. You know why. Hint: Marriage. +Good Luck! +************************** +Name: Common Great Sword +Description: An average Common Great Sword +Type: Greatsword +Rarity: Common +Level: 2 +Max Durability: 32 +Current Durability: 32 +Worth: 18 +Speed: 83 +Physical Damage: 21 +************************** +05-30-17_6:11:51 PM :: +########################## Application Stop ########################## + + +05-30-17_6:12:59 PM :: +########################## Application Start ########################## + +05-30-17_6:12:59 PM :: Found Log Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs +05-30-17_6:12:59 PM :: Found Config Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config +05-30-17_6:12:59 PM :: Found Paths.json at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json +05-30-17_6:12:59 PM :: Found ServerConfig.xml at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml +05-30-17_6:13:00 PM :: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json Deserialized: + LogLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs] + ConfigLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config] + PathsConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json] + ServerConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml] +05-30-17_6:13:00 PM :: Finished reading config +05-30-17_6:13:01 PM :: Set Grid grdStatus to Hidden on launch +05-30-17_6:13:01 PM :: Set Grid grdSettings to Hidden on launch +05-30-17_6:13:01 PM :: Set Grid grdServers to Hidden on launch +05-30-17_6:13:01 PM :: Set Grid grdBotInfo to Hidden on launch +05-30-17_6:13:03 PM :: Revealed Grid grdStatus +05-30-17_6:13:03 PM :: Hid Grid grdSettings +05-30-17_6:13:03 PM :: Hid Grid grdServers +05-30-17_6:13:03 PM :: Hid Grid grdBotInfo +05-30-17_6:13:03 PM :: Slid Main Menu out of view +05-30-17_6:13:04 PM :: STATUS: +Hello Richard. +You have 381275924 seconds(s) of safety remaining until Heather uses Common Dagger on yo ass. +You know why. +Hint: Marriage. +Good Luck! +************************** +Name: Common Dagger +Description: An average Common Dagger +Type: Dagger +Rarity: Common +Level: 1 +Max Durability: 22 +Current Durability: 22 +Worth: 47 +Speed: 177 +Physical Damage: 5 +05-30-17_6:14:39 PM :: +########################## Application Stop ########################## + + +05-30-17_6:14:55 PM :: +########################## Application Start ########################## + +05-30-17_6:14:55 PM :: Found Log Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs +05-30-17_6:14:55 PM :: Found Config Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config +05-30-17_6:14:55 PM :: Found Paths.json at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json +05-30-17_6:14:55 PM :: Found ServerConfig.xml at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml +05-30-17_6:14:55 PM :: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json Deserialized: + LogLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs] + ConfigLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config] + PathsConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json] + ServerConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml] +05-30-17_6:14:55 PM :: Finished reading config +05-30-17_6:14:55 PM :: Set Grid grdStatus to Hidden on launch +05-30-17_6:14:55 PM :: Set Grid grdSettings to Hidden on launch +05-30-17_6:14:55 PM :: Set Grid grdServers to Hidden on launch +05-30-17_6:14:55 PM :: Set Grid grdBotInfo to Hidden on launch +05-30-17_6:14:57 PM :: Revealed Grid grdStatus +05-30-17_6:14:57 PM :: Hid Grid grdSettings +05-30-17_6:14:57 PM :: Hid Grid grdServers +05-30-17_6:14:57 PM :: Hid Grid grdBotInfo +05-30-17_6:14:57 PM :: Slid Main Menu out of view +05-30-17_6:14:58 PM :: STATUS: +Hello Richard. +You have 79937952 seconds(s) of safety remaining until Heather uses Stabby McStab Stab on yo ass. You know why. +Hint: Marriage. +Good Luck! +************************** +Name: Stabby McStab Stab +Description: Stab. Stabby. Stab, stab stab. Stab stab stab stabby Mcstab stab. Stab, stab stab. +Type: Katana +Rarity: Common +Level: 2 +Max Durability: 40 +Current Durability: 40 +Worth: 43 +Speed: 167 +Physical Damage: 19 +05-30-17_6:15:17 PM :: +########################## Application Stop ########################## + + +05-30-17_6:16:25 PM :: +########################## Application Start ########################## + +05-30-17_6:16:25 PM :: Found Log Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs +05-30-17_6:16:25 PM :: Found Config Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config +05-30-17_6:16:25 PM :: Found Paths.json at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json +05-30-17_6:16:25 PM :: Found ServerConfig.xml at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml +05-30-17_6:16:25 PM :: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json Deserialized: + LogLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs] + ConfigLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config] + PathsConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json] + ServerConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml] +05-30-17_6:16:26 PM :: Finished reading config +05-30-17_6:16:26 PM :: Set Grid grdStatus to Hidden on launch +05-30-17_6:16:26 PM :: Set Grid grdSettings to Hidden on launch +05-30-17_6:16:26 PM :: Set Grid grdServers to Hidden on launch +05-30-17_6:16:26 PM :: Set Grid grdBotInfo to Hidden on launch +05-30-17_6:16:27 PM :: Revealed Grid grdStatus +05-30-17_6:16:27 PM :: Hid Grid grdSettings +05-30-17_6:16:27 PM :: Hid Grid grdServers +05-30-17_6:16:27 PM :: Hid Grid grdBotInfo +05-30-17_6:16:27 PM :: Slid Main Menu out of view +05-30-17_6:16:28 PM :: STATUS: +Hello Richard. +You have 224443381 seconds(s) of safety remaining until Heather uses +*********************** +This was supposed to be a weapon but the code blew it. +Thankfull I handled the unhandled exception exceptionally. +*********************** +on yo ass. You know why. Hint: Marriage. +Good Luck! +05-30-17_6:16:49 PM :: +########################## Application Stop ########################## + + +05-30-17_6:18:55 PM :: +########################## Application Start ########################## + +05-30-17_6:18:55 PM :: Found Log Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs +05-30-17_6:18:55 PM :: Found Config Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config +05-30-17_6:18:55 PM :: Found Paths.json at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json +05-30-17_6:18:55 PM :: Found ServerConfig.xml at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml +05-30-17_6:18:55 PM :: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json Deserialized: + LogLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs] + ConfigLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config] + PathsConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json] + ServerConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml] +05-30-17_6:18:56 PM :: Finished reading config +05-30-17_6:18:56 PM :: Set Grid grdStatus to Hidden on launch +05-30-17_6:18:56 PM :: Set Grid grdSettings to Hidden on launch +05-30-17_6:18:56 PM :: Set Grid grdServers to Hidden on launch +05-30-17_6:18:56 PM :: Set Grid grdBotInfo to Hidden on launch +05-30-17_6:18:58 PM :: Revealed Grid grdStatus +05-30-17_6:18:58 PM :: Hid Grid grdSettings +05-30-17_6:18:58 PM :: Hid Grid grdServers +05-30-17_6:18:58 PM :: Hid Grid grdBotInfo +05-30-17_6:18:58 PM :: Slid Main Menu out of view +05-30-17_6:18:59 PM :: STATUS: +Hello Richard. +You have 366807145 seconds(s) of safety remaining until Heather uses [[ExceptionUnhandled]] on yo ass. You know why. +Hint: Marriage. +Good Luck! +*********************** +This was supposed to be a weapon but the code blew it. +Thankfully I handled the unhandled exception exceptionally. +05-30-17_6:19:11 PM :: +########################## Application Stop ########################## + + +05-30-17_6:19:23 PM :: +########################## Application Start ########################## + +05-30-17_6:19:23 PM :: Found Log Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs +05-30-17_6:19:23 PM :: Found Config Directory at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config +05-30-17_6:19:23 PM :: Found Paths.json at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json +05-30-17_6:19:23 PM :: Found ServerConfig.xml at: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml +05-30-17_6:19:24 PM :: C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json Deserialized: + LogLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Logs] + ConfigLocation[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config] + PathsConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\Paths.json] + ServerConfig[C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\bin\Debug\Config\ServerConfig.xml] +05-30-17_6:19:24 PM :: Finished reading config +05-30-17_6:19:24 PM :: Set Grid grdStatus to Hidden on launch +05-30-17_6:19:24 PM :: Set Grid grdSettings to Hidden on launch +05-30-17_6:19:24 PM :: Set Grid grdServers to Hidden on launch +05-30-17_6:19:24 PM :: Set Grid grdBotInfo to Hidden on launch +05-30-17_6:19:28 PM :: Revealed Grid grdStatus +05-30-17_6:19:28 PM :: Hid Grid grdSettings +05-30-17_6:19:28 PM :: Hid Grid grdServers +05-30-17_6:19:28 PM :: Hid Grid grdBotInfo +05-30-17_6:19:28 PM :: Slid Main Menu out of view +05-30-17_6:19:29 PM :: STATUS: +Hello Richard. +You have 302521585 seconds(s) of safety remaining until Heather uses Common Katana on yo ass. You know why. +Hint: Marriage. +Good Luck! +************************** +Name: Common Katana +Description: An average Common Katana +Type: Katana +Rarity: Common +Level: 1 +Max Durability: 22 +Current Durability: 22 +Worth: 22 +Speed: 147 +Physical Damage: 14 +05-30-17_6:19:38 PM :: STATUS: +Hello Richard. +You have 360107131 seconds(s) of safety remaining until Heather uses Common Sword on yo ass. You know why. +Hint: Marriage. +Good Luck! +************************** +Name: Common Sword +Description: An average Common Sword +Type: Sword +Rarity: Common +Level: 1 +Max Durability: 22 +Current Durability: 22 +Worth: 22 +Speed: 138 +Physical Damage: 13 +05-30-17_6:19:40 PM :: STATUS: +Hello Richard. +You have 306595699 seconds(s) of safety remaining until Heather uses Stabby McStab Stab on yo ass. You know why. +Hint: Marriage. +Good Luck! +************************** +Name: Stabby McStab Stab +Description: Stab. Stabby. Stab, stab stab. Stab stab stab stabby Mcstab stab. Stab, stab stab. +Type: Greatsword +Rarity: Rare +Level: 2 +Max Durability: 68 +Current Durability: 68 +Worth: 171 +Speed: 98 +Physical Damage: 25 +05-30-17_6:19:42 PM :: STATUS: +Hello Richard. +You have 31778204 seconds(s) of safety remaining until Heather uses Butterknife on yo ass. You know why. +Hint: Marriage. +Good Luck! +************************** +Name: Butterknife +Description: Used to butter that toast, or butter your bread. Mmmmm bread +Type: Katana +Rarity: Rare +Level: 2 +Max Durability: 68 +Current Durability: 68 +Worth: 177 +Speed: 171 +Physical Damage: 19 +05-30-17_6:19:48 PM :: +########################## Application Stop ########################## + + diff --git a/PersonalDiscordBot/bin/Debug/PersonalDiscordBot.exe b/PersonalDiscordBot/bin/Debug/PersonalDiscordBot.exe index e38fbdc..db8c555 100644 Binary files a/PersonalDiscordBot/bin/Debug/PersonalDiscordBot.exe and b/PersonalDiscordBot/bin/Debug/PersonalDiscordBot.exe differ diff --git a/PersonalDiscordBot/bin/Debug/PersonalDiscordBot.pdb b/PersonalDiscordBot/bin/Debug/PersonalDiscordBot.pdb index d60e32f..fc99fa8 100644 Binary files a/PersonalDiscordBot/bin/Debug/PersonalDiscordBot.pdb and b/PersonalDiscordBot/bin/Debug/PersonalDiscordBot.pdb differ diff --git a/PersonalDiscordBot/obj/Debug/App.baml b/PersonalDiscordBot/obj/Debug/App.baml new file mode 100644 index 0000000..611728a Binary files /dev/null and b/PersonalDiscordBot/obj/Debug/App.baml differ diff --git a/PersonalDiscordBot/obj/Debug/CoreCompileInputs.cache b/PersonalDiscordBot/obj/Debug/CoreCompileInputs.cache index a5f5a9e..287739c 100644 --- a/PersonalDiscordBot/obj/Debug/CoreCompileInputs.cache +++ b/PersonalDiscordBot/obj/Debug/CoreCompileInputs.cache @@ -1 +1 @@ -16035cde046cb5738e5b167011d4e68502be8c5c +f041a8bb8d23b37cfd6ce7edf8a033beeabf9b54 diff --git a/PersonalDiscordBot/obj/Debug/MainWindow.baml b/PersonalDiscordBot/obj/Debug/MainWindow.baml new file mode 100644 index 0000000..0046fe8 Binary files /dev/null and b/PersonalDiscordBot/obj/Debug/MainWindow.baml differ diff --git a/PersonalDiscordBot/obj/Debug/PersonalDiscordBot.csprojResolveAssemblyReference.cache b/PersonalDiscordBot/obj/Debug/PersonalDiscordBot.csprojResolveAssemblyReference.cache index db78e1f..face71f 100644 Binary files a/PersonalDiscordBot/obj/Debug/PersonalDiscordBot.csprojResolveAssemblyReference.cache and b/PersonalDiscordBot/obj/Debug/PersonalDiscordBot.csprojResolveAssemblyReference.cache differ diff --git a/PersonalDiscordBot/obj/Debug/PersonalDiscordBot.exe b/PersonalDiscordBot/obj/Debug/PersonalDiscordBot.exe index e38fbdc..db8c555 100644 Binary files a/PersonalDiscordBot/obj/Debug/PersonalDiscordBot.exe and b/PersonalDiscordBot/obj/Debug/PersonalDiscordBot.exe differ diff --git a/PersonalDiscordBot/obj/Debug/PersonalDiscordBot.pdb b/PersonalDiscordBot/obj/Debug/PersonalDiscordBot.pdb index d60e32f..fc99fa8 100644 Binary files a/PersonalDiscordBot/obj/Debug/PersonalDiscordBot.pdb and b/PersonalDiscordBot/obj/Debug/PersonalDiscordBot.pdb differ diff --git a/PersonalDiscordBot/obj/Debug/PersonalDiscordBot_MarkupCompile.cache b/PersonalDiscordBot/obj/Debug/PersonalDiscordBot_MarkupCompile.cache index be1a3e7..0005659 100644 --- a/PersonalDiscordBot/obj/Debug/PersonalDiscordBot_MarkupCompile.cache +++ b/PersonalDiscordBot/obj/Debug/PersonalDiscordBot_MarkupCompile.cache @@ -4,17 +4,17 @@ winexe C# .cs -C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\obj\Debug\ +C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\obj\Debug\ PersonalDiscordBot none false DEBUG;TRACE -C:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\App.xaml +C:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\App.xaml 2-946423739 14-1138568734 -961854594963 +962029036776 MainWindow.xaml;Windows\Server Editor.xaml; -True +False diff --git a/PersonalDiscordBot/obj/Debug/PersonalDiscordBot_MarkupCompile.lref b/PersonalDiscordBot/obj/Debug/PersonalDiscordBot_MarkupCompile.lref index 045483e..8139864 100644 --- a/PersonalDiscordBot/obj/Debug/PersonalDiscordBot_MarkupCompile.lref +++ b/PersonalDiscordBot/obj/Debug/PersonalDiscordBot_MarkupCompile.lref @@ -1,5 +1,5 @@  -FC:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\App.xaml;; -FC:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\MainWindow.xaml;; -FC:\Users\Rick\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\Windows\Server Editor.xaml;; +FC:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\App.xaml;; +FC:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\MainWindow.xaml;; +FC:\Users\mpegler\Source\Repos\ServerRPGAdventure\PersonalDiscordBot\Windows\Server Editor.xaml;; diff --git a/PersonalDiscordBot/obj/Debug/Windows/Server Editor.baml b/PersonalDiscordBot/obj/Debug/Windows/Server Editor.baml new file mode 100644 index 0000000..2e36916 Binary files /dev/null and b/PersonalDiscordBot/obj/Debug/Windows/Server Editor.baml differ