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
  1. 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?
     
  2. At unload while MySQL is activated it freezes. For now I'll disable it while configuring it
     
  3. If stats are getting to MySQL database without issue, can you let me know your MySQL version please?
     
  4. 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
     
  5. Maybe add support for clan tags in categories (mysql)? I mean if player is in clan, display clan name, if not display 'no clan'. : )
     
  6. @christi
    Do you know who the attacker was for the kill?

    Deluxe, thanks for the suggestion.
    I'll look into that. :)
     
  7. Dont know was exactly, but i think was a rust NPCs. Was not a normal player and maybe the causes this error.
     
  8. 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?
     
  9. Sure, i am gonna replay here if i see antything else. Thanks
     
  10. 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 
     
  11. Same thing just happened to me, and there also seems to be an issue with mysql.
     
  12. 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?
     
  13. Yup, all latest.
    EDIT: Updated to latest oxide, still happens : (
     
    Last edited by a moderator: Aug 4, 2017
  14. There was a little update this morning and is when this started.
    Protocol hasn't changed but Wulf just updated Oxide to Oxide build 2.0.3393 now. Sooooooo, we'll see
     
  15. 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.
     
  16. 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.
     
  17. delete
     
  18. How to disable the chat notifications?
     
  19. 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
    This is for if someone gonna use it to show on a website, it will sort in wrong order.

    I had to do this to fix it on my website:
    Code:
    ALTER TABLE `playerranksdb` CHANGE `TimePlayed` `TimePlayed` TIME NOT NULL;
    Thanks