Search results

  1. DreTaX

    Fougerite Official

    This shitty Rsut Ulink is getting shitter all the time. I will see if i can patch that.
  2. DreTaX

    Player Logging

    Something with EAC. I will check It out.
  3. DreTaX

    Player Logging

    http://fougerite.com/resources/admintools.119/
  4. DreTaX

    Fougerite Official

    ////KillMessages //By ABC function On_PlayerHurt(HurtEvent) { if (HurtEvent.Victim == null || HurtEvent.Attacker == null || HurtEvent.Sleeper) { return; } var a = HurtEvent.DamageAmount; var b = HurtEvent.Attacker.Name; if (b == "MutantWolf") { if (a > 10 &&...
  5. DreTaX

    Fougerite Official

    [9/5/2015 12:55:20 AM] [Error] [Magma] Error invoking function On_PlayerHurt in tishi plugin. What's tishi?
  6. DreTaX

    Fougerite Official

    Try 1.4.4
  7. DreTaX

    Approved AdminPlus

    Yes, but Rust++ stores the admins ID as ulong. You need to use Player.UID
  8. DreTaX

    Fougerite Official

    I don't think that's Fougerite. Do you have EAC? Which version?
  9. DreTaX

    Approved AdminPlus

    You just add flags in the admins.xml under the user. Player.Moderator checks if the player has the Moderator flag. https://github.com/Notulp/Fougerite/blob/master/Fougerite/Fougerite/Player.cs#L426 in a plugin you would do: if not Server.HasRustPP: return...
  10. DreTaX

    Approved AdminPlus

    Moderator flag feature was added later and jakkee still uses the mosderator plugin as a dependency. If he updates It then It will support It.
  11. DreTaX

    Approved HungerGames

    DreTaX updated HungerGames with a new update entry: 1.4.8 Read the rest of this update entry...
  12. DreTaX

    HungerGames - 1.4.8

    Performance tweaks. Using 1.1.8 methods
  13. DreTaX

    Approved BannedPeople

    CanBan refers to the Rust++ permission. Give him the permission called Moderator and It will work.
  14. DreTaX

    Approved EasyAirdrops

    //Plugin:EasyAirDrops //Author:CorrosionX //Version:1.1 function On_PluginInit(){ if(!Plugin.IniExists("EasyAirdrops")){ var setini = Plugin.CreateIni("EasyAirdrops"); setini.AddSetting("Settings", "PlayersRequired", 3); //Default setini.AddSetting("Settings"...
  15. DreTaX

    Fougerite Official

    DreTaX updated Fougerite Official with a new update entry: 1.1.8 Read the rest of this update entry...
  16. DreTaX

    Fougerite Official - 1.1.8

    Updated IronPython module Updated Fougerite.cfg (Clears player cache after reaching the given amount) Entity finding methods for developers ( https://github.com/Notulp/Fougerite/blob/master/Fougerite/Fougerite/Util.cs#L303 ) Updated patcher Re-patch! Added On_Airdrop hook finally. def...
  17. DreTaX

    Approved BannedPeople

    If you wish to give access to non RCON admin either give the Moderator flag to the user in Rust++ or use the moderators plugin. Sent From My Samsung Galaxy S4
  18. DreTaX

    Approved Whitelist

    Duplicated ID..... Sent From My Samsung Galaxy S4
  19. DreTaX

    RustBuster

    @Snake and I have been working on a client side anti cheat, which will be able to fuck up injected/premade assembly hacks externally. Our first aim is to make sure that RustBuster is safe to use, and encrypted. We might be willing to provide Developing API on It, and It will be able to...
  20. DreTaX

    Solved Function Player.Find (Bug ?)

    Here is my Python CheckV code converted (Untested) /* CheckV method based on Spock's method. Upgraded by DreTaX Can Handle Single argument and Array args. ~~~ JavaScript Version ~~~ V4.1 */ function GetPlayerName(namee) { try...