-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added detecting for log uploader's account name
Added base files for Healing stats plugin for arcpds
- Loading branch information
Showing
10 changed files
with
107 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using Newtonsoft.Json; | ||
|
||
namespace PlenBotLogUploader.DpsReport.ExtraJson | ||
{ | ||
internal class StatsBarrier | ||
{ | ||
[JsonProperty("outgoingBarrier")] | ||
internal StatsBarrierOutgoingBarrier OutgoingBarrier { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
using Newtonsoft.Json; | ||
|
||
namespace PlenBotLogUploader.DpsReport.ExtraJson | ||
{ | ||
internal class StatsBarrierOutgoingBarrier | ||
{ | ||
[JsonProperty("barrier")] | ||
internal long Barrier { get; set; } | ||
|
||
[JsonProperty("bps")] | ||
internal long BarrierPerSecond { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using Newtonsoft.Json; | ||
|
||
namespace PlenBotLogUploader.DpsReport.ExtraJson | ||
{ | ||
internal class StatsHealing | ||
{ | ||
[JsonProperty("outgoingHealing")] | ||
internal StatsHealingOutgoingHealing[] OutgoingHealing; | ||
Check warning on line 8 in DpsReport/ExtraJSON/StatsHealing.cs GitHub Actions / build
Check warning on line 8 in DpsReport/ExtraJSON/StatsHealing.cs GitHub Actions / build
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
using Newtonsoft.Json; | ||
|
||
namespace PlenBotLogUploader.DpsReport.ExtraJson | ||
{ | ||
internal class StatsHealingOutgoingHealing | ||
{ | ||
[JsonProperty("healing")] | ||
internal long Healing { get; set; } | ||
|
||
[JsonProperty("hps")] | ||
internal long HealingPerSecond { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters