Search results

  1. DreTaX

    Approved ChangeOwner

    DreTaX submitted a new resource: ChangeOwner - This is able to change ownership of a structure or all objects Read more about this resource...
  2. DreTaX

    ChangeOwner - ChangeOwner

    Description: This plugin is able to change ownership of a building structure or all objects on the server. Commands: /changeowner NewPlayerOwnerName STEAMIDOfOldOwner - Changes all objects to the new owner /changeowner2 NewPlayerOwnerName - You will be prompted to hit an object to change the...
  3. DreTaX

    Help About Admin access/Tag[Admin]/ Admin Color Name.

    http://fougerite.com/resources/donatorrank.47/ http://fougerite.com/resources/color.138/
  4. DreTaX

    Fougerite Official

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

    Fougerite Official - 1.3.9

    Core Update Patcher Update. Re-patch! This update has little modifications, and I repatched the on connection event to a different place. Maybe this will solve the disconnect crashes, where the player is not connected fully yet, but disconnects. Magma and Jint update Jint Engine got the ini file...
  6. DreTaX

    Fougerite Official

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

    Important Break Time Runs In

    I am actually looking at the player connected hook. It was patched in a weird way by the original magma authors. I think Its in a wrong method, or in a pretty early one. Sent From My Samsung Galaxy S4
  8. DreTaX

    Search components the player

    Yes thats possible Sent From My Samsung Galaxy S4
  9. DreTaX

    Search components the player

    You can only add server sided components.
  10. DreTaX

    Environment.TickCount returns negative numbers

    Negative? Wot. I never knew that. Maybe DateTime.Now.Ticks can be better, It's a bit longer though. Console.WriteLine(DateTime.Now.Ticks); Console.WriteLine(Environment.TickCount); 635944957893440109 1423140875 I believe the same calculation mechanism can be applied to It.
  11. DreTaX

    Important Break Time Runs In

    @tarynkelley @PearlJ Please also do feedback about the last EAC
  12. DreTaX

    Important Break Time Runs In

    I got this, and the next week as a full break time. I will spend this time to research RustBuster, and push out a Beta finally. This is possible, since not much remains of It as I mentioned It before. It should be finished in these days. I also but my concentration of the unknown disconnect...
  13. DreTaX

    Approved DonatorRank

    parseInt("10");
  14. DreTaX

    Approved DonatorRank

    That doesn't mean you solved It.
  15. DreTaX

    NoSuicide

    I think It's a hook
  16. DreTaX

    StackSizes

    Do you still want to do this plugin?
  17. DreTaX

    C# CODE

    Nope. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Fougerite; namespace TestPlugin { public class TestPlugin : Fougerite.Module { public override string Name { get { return "Name"...
  18. DreTaX

    Please help me

    function On_PluginInit() { DataStore.Flush("Players"); var ini = Datas(); var keys = ini.EnumSection("Settings"); for (var count in keys) { DataStore.Add("Players", count, ini.GetSetting("Settings", count)); } } function Datas() { if (!Plugin.IniExists("Datas"))...