Search results

  1. DreTaX

    {SOLVED} Problem with detecting SLeepingBag on placement

    FindEntitiesAround may not be the fastest solution for this.
  2. DreTaX

    Is there a hook for a player's first connect?

    __name__ = 'FirstConnectMSG' __author__ = 'ice cold' __version__ = '1.1' import clr clr.AddReferenceByPartialName("Fougerite") import Fougerite cyan = "[color#00ffff]" green = "[color#00ff00]" sysname = "Server" class FirstJoin: def On_PlayerConnected(self, Player): if...
  3. DreTaX

    Approved Ultimate Logger (AdminTools)

    It happens when someone disconnects with a non ASCII name.
  4. DreTaX

    Get field

    Wut?
  5. DreTaX

    Fougerite Official

    The best would be if you would send your server's logs zipped in pm.
  6. DreTaX

    Need Help With AirStrike Plugin!

    I will see if there is a way to do it.
  7. DreTaX

    RustBusterServer - 1.6.4

    New Client hooks such as playermove, playerhurt, and npchurt were added to work with, i also plan to add new hooks to the client. Some fixes The client should start faster The browser is now loading smoother, but slower, trying to find a way to load the servers faster and cool atm will be fixed...
  8. DreTaX

    Solved Research kit not working

    Let me know if it worked out.
  9. DreTaX

    Solved Research kit not working

    No. If you copied everything I said, then you are done.
  10. DreTaX

    Solved Research kit not working

    You should download 1.6.0B Anything that is in the prepatched folder (rust_server_Data\Managed\prepatched dlls), you go ahead and copy those dlls to the: rust_server_Data\Managed folder and overwrite anything. You also grab Fougerite.dll from the downloaded package, and copy and paste it to...
  11. DreTaX

    Supporting old rust

    We would need the actual zombie models to be loaded in the game, and then apply them to be an NPC.
  12. DreTaX

    Solved Research kit not working

    Your Fougerite.dll is not updated. Your assemblycsharp dll is bigger, and also modified? same with ulink and facepunch id. You messed up something.
  13. DreTaX

    Solved Research kit not working

    Can you take a screenshot of your managed folder?
  14. DreTaX

    Solved Research kit not working

    I will take a quick look and test 1.6.0B's patched assembly @Revezunds
  15. DreTaX

    Need help!

    I will take a look.
  16. DreTaX

    Airdrop Location

    http://fougerite.com/resources/airdrops.155/ ?
  17. DreTaX

    Fougerite Official

    I don't think you have the patched files correctly. The first image is not relevant, facepunch doesn't support legacy anymore. The second one tells that the assembly is trying to call a fougerite method but fails. Fougerite.dll and everything else in the prepatched folder. Copy and overwrite...
  18. DreTaX

    Need some help with AutoRewards Plugin PY

    Here is your fixed code __title__ = 'Timed Reward' __author__ = 'ice cold' __version__ = '1.0' import clr clr.AddReferenceByPartialName("Fougerite") import Fougerite rose = "[color #ff4040]" class TimedReward: Timer = None Items = None def On_PluginInit(self): ini =...
  19. DreTaX

    Is it just me or Something with FrameWork?

    Always check to avoid null exceptions: if (de.VictimIsPlayer) { var victim =(Fougerite.Player) de.Victim; Server.GetServer().BroadcastNotice(victim.Name+" Killed Admin"); }