Skip to content

Commit 10706f3

Browse files
committed
Closes #5
1 parent 6c23395 commit 10706f3

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

Plugins/CChatGUIDStatsLogger.inc

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,7 @@ namespace PRoConEvents
574574

575575
public string GetPluginVersion()
576576
{
577-
return "1.0.0.3";
577+
return "1.0.0.4";
578578
}
579579

580580
public string GetPluginAuthor()
@@ -617,7 +617,7 @@ If you like my Plugins, please feel free to donate<br>
617617
<p>Go to Tools --> Options --> Plugins --> Enter you databaseserver under outgoing Connections and allow all outgoing connections</p>
618618
<p>Restart Procon</p>
619619
<p>Enter your settings into Plugin Settings and THEN enable the plugin</p>
620-
<p>Now the plugin should work if not request help in the <a href='https://forum.myrcon.com' target='_blank'>Forum</a></p>
620+
<p>Now the plugin should work if not request help in the <a href='https://myrcon.net' target='_blank'>Forum</a></p>
621621
622622
623623
<h2>Things you have to know:</h2>
@@ -769,6 +769,8 @@ Example: M16A4{M16} --> 40MMGL{M16,M16A3} <br><br>
769769
770770
771771
<h3>Changelog:</h3><br>
772+
<b>1.0.0.4</b><br>
773+
Allow NON PB enabled Servers to use the Plugin for Stats tracking. See <a href='https://github.com/AdKats/ChatGUIDStatsAndMapstatsLogger/issues/5' target='_blank'>#5</a>. Thanks @icecoldme<br>
772774
<b>1.0.0.2</b><br>
773775
Bugfixes for column errors.<br>
774776
Bugfixes for the sessions streaming bug<br>
@@ -2956,7 +2958,7 @@ Multigame Support<br>
29562958
this.DebugInfo("Trace", "StatsID: " + this.m_ID_cache[kvp.Value.EAGuid].StatsID);
29572959
}
29582960

2959-
if (kvp.Key.Length > 0 && StatsTrackerCopy[kvp.Key].Guid.Length > 0 && this.m_ID_cache[kvp.Value.EAGuid].StatsID >= 1)
2961+
if (this.m_ID_cache[kvp.Value.EAGuid].StatsID >= 1)
29602962
{
29612963
string playerstatsSQL = @"INSERT INTO " + this.tbl_playerstats + @"(StatsID, Score, Kills, Headshots, Deaths, Suicide, TKs, Playtime, Rounds, FirstSeenOnServer, LastSeenOnServer, Killstreak, Deathstreak, HighScore , Wins, Losses)
29622964
VALUES(@StatsID, @Score, @Kills, @Headshots, @Deaths, @Suicide, @TKs, @Playtime, @Rounds, @FirstSeenOnServer, @LastSeenOnServer, @Killstreak, @Deathstreak, @HighScore , @Wins, @Losses)

0 commit comments

Comments
 (0)