Search results

  1. Jakkee

    RCON logging

    I didn't even add ini.Save() lol... But heres the Plugin.Log() :)
  2. Jakkee

    Hook when player joined the map / completely loaded

    Will this be used to stop EAC warnings?
  3. Jakkee

    Approved DonatorRank

    Jakkee updated DonatorRank with a new update entry: V 1.6 - DataStore to Dictionary Read the rest of this update entry...
  4. Jakkee

    DonatorRank - V 1.6 - DataStore to Dictionary

    Changed to Dictionary, Getting a users rank/kit/permission is now a LOT faster!
  5. Jakkee

    Approved DonatorRank

    When I was editing the code (Changing that one line) I decided to finally change from DataStore to Dictionary. Dictionary will hold all the temp items, E.G Kits, TP locations, User Perms etc. DataStore will now hold data that is needed over a restart (Cooldowns). Hopefully a lot of these...
  6. Jakkee

    Approved DonatorRank

    Line: 148 SETTINGS.clear() needs to be PSettings.clear() Thats a quick fix, I'll do a update later
  7. Jakkee

    Approved DonatorRank

    Sounds like the plugin didn't load, I'll download Legacy and see
  8. Jakkee

    RCON logging

    hmm.. Try this, it will not through errors but it also may not log anything as well
  9. Jakkee

    Analyzation of the Thread Crashes

    I think he is saying to use this method:
  10. Jakkee

    Rust++ Temporary mute

    Uses rust++ mute/unmute system. Should work, Not sure if the timer gets cancel on a reload. It will be cancelled on a restart and you'll have to manually unmute the player/s
  11. Jakkee

    RCON logging

    I don't know how much this will log or even if it will log RCON commands, But here you go
  12. Jakkee

    Analyzation of the Thread Crashes

    If that's true, I'd assume you could probably mod the client so it does not disconnect (Unless you quit the game). You could make a pretty OP hack from that; No ban/kick hack?
  13. Jakkee

    @[1:@DreTaX]. I think this is from DeathMSGS? If so I think the bans are handled in the...

    @[1:@DreTaX]. I think this is from DeathMSGS? If so I think the bans are handled in the DeathMSGS folder, if not it'll be found in GlobalBansList.ini. There's probably even an unban command (unban SteamID) in server console?
  14. Jakkee

    Approved DonatorRank

    Jakkee updated DonatorRank with a new update entry: V 1.5.6 - Fix for muted players + moved settings to dictionary Read the rest of this update entry...
  15. Jakkee

    DonatorRank - V 1.5.6 - Fix for muted players + moved settings to dictionary

    Fix for players that were muted but could talk (VIP's & Donators). Thanks tarynkelley Also started to move settings to Dictionary, Hoping to have everything in a dictionary (Tp locations & kits are left to do). This will speed up the plugin a lot once complete
  16. Jakkee

    Approved VoteBan

    Jakkee updated VoteBan with a new update entry: V 1.1.3 - Fixes, Thanks tarynkelley Read the rest of this update entry...
  17. Jakkee

    VoteBan - V 1.1.3 - Fixes, Thanks tarynkelley

    Fixes, Thanks to tarynkelley for spotting them
  18. Jakkee

    Approved VoteBan

    Thanks @tarynkelley, Will update now
  19. Jakkee

    Approved StackSizes

    255 is the most you can stack
  20. Jakkee

    Approved DonatorRank

    Well args[0] would be string and "2" is string, So doing > wouldn't be right and probably always return False. You'll have to convert the string to int by doing Number("String"); or PhaseInt("String);