Search results

  1. balu92

    Important Pluton for Experimental Branch

    that wasn't a fix, cuz I didn't even know about a problem... it's fixed now ;)
  2. balu92

    Important Pluton for Experimental Branch

    I'll look in it now, thanks for the report.
  3. balu92

    Important Pluton for Experimental Branch

    @EquiFox used his magic wand again.
  4. balu92

    TimedEvent

    I made several timer running simultaneously each with a random number between 2000 and 5000 in ms, like there was 8-10 running printing msg in Debug.Log() without any lag.
  5. balu92

    Important Pluton for Experimental Branch

    I don't understand your question
  6. balu92

    Important Pluton for Experimental Branch

    then use: Web.POST(url, data):string
  7. balu92

    Important Pluton for Experimental Branch

    it's imported by def
  8. balu92

    Server won't start, gives errors(crash)

    is anything in your output_log?
  9. balu92

    Important Pluton for Experimental Branch

    String(somenullvalue) should give a string "Null"
  10. balu92

    Server won't start, gives errors(crash)

    download the source files again, update your Pluton.cfg according to this: https://github.com/Notulp/Pluton/blob/master/Pluton/Pluton.cfg
  11. balu92

    Important Pluton for Experimental Branch

    I think that's good as is.
  12. balu92

    Important Pluton for Experimental Branch

    That homepage will soon change! :)
  13. balu92

    Important Pluton for Experimental Branch

    that's ok, I asked about linux, cuz linux rust dedicated servers can't connect to the steam servervices atm... if the ports are ok, and you have both, rcon and the other set up, then it should show up in the browser, firewall probably?
  14. balu92

    Datastore not loading

    I'll look in this!
  15. balu92

    [JS] HomeTeleport

    if there is nothing in the ds entry, then you get an undefined in js and None in python. You most likely get an error when you want to use those not defined values
  16. balu92

    Rock Drop!

    you can specify a location in the respawn event, where they will respawn, that works when they respawn in the wild, I'm not sure if it works if they spawn in a sleeping bag
  17. balu92

    Rock Drop!

    For information about items you can also use: Util.Items() that will create an ini file containing information about all the items. If you want to apply a kit instead of the rock right on respawn, you can set the GiveDefault property of the respawn event to false.
  18. balu92

    TimedEvent

    We will add js officialy as soon as we can add it in a form where you guys can work with it normaly. When you won't need to use duct tape, magic and some chemical X to get a simple for loop to work. ;)
  19. balu92

    TimedEvent

    TimedEvents changed in pluton. From now on TimedEvent "Callback"s will always have a parameter and that's the timer itself. And I'm introducing the parallel timed events: def On_PlayerConnected(self, player): myDict = Plugin.CreateDict() myDict["joined"] = player...