Ah shit, I'm sorry.
Yes, that's right. By default the plugin doesn't publicise stats for admins.
My bad, man. I should have caught that.
Do you get the same SQL issue on your fresh server?

Player Ranks
Player ranks and stats database
Total Downloads: 4,906 - First Release: Mar 4, 2017 - Last Update: May 29, 2018
- 5/5, 19 likes
-
-
If stats are getting to MySQL database without issue, can you let me know your MySQL version please?
-
Failed to call hook 'OnEntityDeath' on plugin 'PlayerRanks v1.2.3' (NullReferenceException: Object reference not set to an instance of an object)
at Oxide.Plugins.PlayerRanks.ProcessHeliKills (.BasePlayer player) [0x00000] in :0 at Oxide.Plugins.PlayerRanks.OnEntityDeath (.BaseEntity entity, .HitInfo hitinfo, .HitInfo info) [0x00000] in :0 at Oxide.Plugins.PlayerRanks.DirectCallHook (System.String name, System.Object& ret, System.Object[] args) [0x00000] in :0 at Oxide.Plugins.CSharpPlugin.InvokeMethod (HookMethod method, System.Object[] args) [0x00000] in :0 at Oxide.Core.Plugins.CSPlugin.OnCallHook (System.String name, System.Object[] args) [0x00000] in :0 at Oxide.Core.Plugins.Plugin.CallHook (System.String hook, System.Object[] args) [0x00000] in :0 -
Maybe add support for clan tags in categories (mysql)? I mean if player is in clan, display clan name, if not display 'no clan'. : )
-
@christi
Do you know who the attacker was for the kill?
Deluxe, thanks for the suggestion.
I'll look into that. -
Dont know was exactly, but i think was a rust NPCs. Was not a normal player and maybe the causes this error.
-
To the best of my knowledge they won't target a hell but, at the same time, it's hardly a coincidence.
I'll keep an eye. Let me know if you see anything else? -
Sure, i am gonna replay here if i see antything else. Thanks
-
Sometimes when trying to reload plugin, it lags all server, dq's all players with "Packet Flooding: Player Tick" and this error shows up after
Code:18:29 [Error] Exception while invoking event handler (NullReferenceException: Object reference not set to an instance of an object) 18:29 [Stacktrace] at MySql.Data.MySqlClient.MySqlDataReader.Close () [0x00000] in <filename unknown>:0 at MySql.Data.MySqlClient.MySqlConnection.Close () [0x00000] in <filename unknown>:0 at Oxide.Core.MySql.Libraries.MySql.OnRemovedFromManager (Oxide.Core.Plugins.Plugin sender, Oxide.Core.Plugins.PluginManager manager) [0x00000] in <filename unknown>:0 at Oxide.Core.Event+Callback`2[Oxide.Core.Plugins.Plugin,Oxide.Core.Plugins.PluginManager].Call (Oxide.Core.Plugins.Plugin arg0, Oxide.Core.Plugins.PluginManager arg1) [0x00000] in <filename unknown>:0 18:29 [Stacktrace] ExType: MySqlException 18:29 [Error] MySql handle raised an exception in 'PlayerRanks v1.2.3' plugin (SocketException: Operation timed out.) 18:29 [Stacktrace] at System.Net.Sockets.Socket.Receive (System.Byte[] buffer, Int32 offset, Int32 size, SocketFlags flags) [0x00000] in <filename unknown>:0 at System.Net.Sockets.NetworkStream.Read (System.Byte[] buffer, Int32 offset, Int32 size) [0x00000] in <filename unknown>:0
-
-
This is new....
Although, I'm not getting it.
Are you all on build date 08/03/17 @ 22:02, and Oxide 2.0.3389? -
Yup, all latest.
EDIT: Updated to latest oxide, still happens : (Last edited by a moderator: Aug 4, 2017 -
Protocol hasn't changed but Wulf just updated Oxide to Oxide build 2.0.3393 now. Sooooooo, we'll see -
Ok, cool.
Hopefully that oxide update addresses it. I'll get up to date on both and keep an eye out for issues.
Thanks folks. -
why it did not work if i do not have installed the economics? I am using the RP sytem and the console still showing me this:
[PlayerRanks] Economics is not installed. Category will show 0 for all players. -
Hi,
Economics for Rust | Oxide is a separate plugin. Do you have it installed? -
delete
-
How to disable the chat notifications?
-
Hi,
Could you maybe change the mysql type on column "TimePlayed" from VARCHAR(11) to TIME
I belive its this:
Code:`TimePlayed` VARCHAR(11) NOT NULL Change to: `TimePlayed` TIME NOT NULL
I had to do this to fix it on my website:
Code:ALTER TABLE `playerranksdb` CHANGE `TimePlayed` `TimePlayed` TIME NOT NULL;