Search results

  1. DreTaX

    Question on wiki

    Can you test this for me please? P ut some items in the chest and do: Server.GetServer().Broadcast(e.Inventory.Items.Length.ToString()); Tell me if it tells you any number or no.
  2. DreTaX

    Question on wiki

    Already told you. No idea about the bandage. public void On_ItemAdded(InventoryModEvent e) { if (e.Player != null) { Server.GetServer().Broadcast(e.Player.Name + " added " + e.Item.Name + " to: " + e.Inventory.name); } }
  3. DreTaX

    Question on wiki

    If you also want the inventory name: public void On_ItemAdded(InventoryModEvent e) { if (e.Player != null) { Server.GetServer().Broadcast(e.Player.Name + " added " + e.Item.Name + " to: " + e.Inventory.name); } }
  4. DreTaX

    Question on wiki

    public void On_ItemAdded(InventoryModEvent e) { if (e.Player != null) { Server.GetServer().Broadcast(e.Player.Name + " added " + e.Item.Name); } } No Idea if this works, but It should. public void On_EntityDestroyed(Entity e) { if (e.Inventory != null) {...
  5. DreTaX

    Question on wiki

    You are really hard to understand, I have no idea what you are saying. public void OnItemRemoved(InventoryModEvent e) { Server.Broadcast(e.Player.Name + " took out: " + e.Item.Name + " Quanity: " + e.Item.Quantity) } public void GetEntityItems(Entity e) { if (e.Inventory != null)...
  6. DreTaX

    Approved Recorder

    DreTaX updated Recorder with a new update entry: 1.2.1 Read the rest of this update entry...
  7. DreTaX

    Recorder - 1.2.1

    Some fixes Changed commands.
  8. DreTaX

    Progress on RustBuster

    Post It in the right forum. ~~~~~ 1/5/2017 10:01:06 AM [Console] [RustBuster Players] 76561197961762770 aa0aed57db6741143c0219fcff7bdb154d21b52c 1/5/2017 10:01:17 AM [Console] [RustBuster Login] head250 - 76561197961762770 - aa0aed57db6741143c0219fcff7bdb154d21b52c 1/5/2017 10:01:17 AM...
  9. DreTaX

    Approved DeathMSG

  10. DreTaX

    Approved DeathMSG

    Codecs info errors happen if there is a non ascii character in the config only.
  11. DreTaX

    Approved DeathMSG

    No way, they started updating IronPython. I will include the latest one in the new Fougerite release.
  12. DreTaX

    Approved DeathMSG

    SystemError: An exception was thrown by the type initializer for CodecsInfo Because .NET Python doesn't support the Russian characters. But as I see after years they have finally fixed it lol.. https://bugzilla.xamarin.com/show_bug.cgi?id=8117
  13. DreTaX

    Solved Rustbuster Self Managed Server List

    Not at the moment.
  14. DreTaX

    Progress on RustBuster

    Dear users of Fougerite, Now with the last 1.3.0B release, which seems pretty stable, and has all the bugs solved, my possible next steps will be working on the Plugin/Modding Section of the client. Obviously the Plugin API would be a built in thing in the client, and It would download the...
  15. DreTaX

    Approved DeathMSG

    It does run...
  16. DreTaX

    Approved TpFriend

    If player is in HungerGames: https://github.com/dretax/Python-Plugins/blob/master/FougeritePlugins/TpFriend/TpFriend.py#L275
  17. DreTaX

    Important RustBuster Beta is out

    Had the wrong version uploaded. Updated.
  18. DreTaX

    RustBusterServer - 1.3.0B

    Wrong version.
  19. DreTaX

    Important RustBuster Beta is out

    I'm all fine here
  20. DreTaX

    Solved How to run server command (C#)

    Atm there is no API for that in Fougerite, but It's simple: ConsoleSystem.Run("airdrop.drop");