1. Hi!
    I am looking for a plugin that I have seen on creative servers. The plugin basically is activated when you press the middle mouse button and it opens up this big menu that allows animal spawns, flying, bgrades and you dont need to have wood or any resource to build. I was just wondering if anyone knew what this plugin is called.
    Thanks
     
  2. This is with 95% NO Oxide/Server Plugin, this sounds much more like an Client-AutoIt-script designed as overlay...
     
  3. One of the sandbox servers did this. The people that made battle royal created it. So honestly I am fairly sure it is a plugin due to the fact middle mouse button is a valid button if I am correct.
     
  4. I have that plugin. Was looking for something different.
     
  5. Hello there, I am new to this forum board - and semi-new to Rust.
    I have been wondering if there was a plugin similar to this that was available to freely download.
    I would love to have this kind of thing on my server, just for personal use, for a bit of fun!

    If anyone can help me, thank you so much!
     
  6. Wulf

    Wulf Community Admin

    Wouldn't that be the same as the F1 items menu?
     
  7. Oh.
    My.
    God.
    I am sorry - today is my first day playing Rust, and call me a noob, but I never even noticed that. :/
    Sorry for bothering you - feel free to lock this thread.
    Again, sorry.
     
  8. Wulf

    Wulf Community Admin

    No worries, just wasn't sure if it was something else you wanted.
     
  9. i would like to know what menu hes using in this

     
  10. Wulf

    Wulf Community Admin

    The pie planner menu? That's Rust's construction planner menu, it's been there for... 2 years or so?
     
  11. I see what u mean. You talking about that UI that has build grade, god mode, tree spawning.... Im guessing it is a mod, but a private mode. I know a few people on here are who could build custom version.
     
  12. That's the Intoxicated creative server mod. You won't find it anywhere and I highly doubt it would ever be released. I would like to know how he managed to place walls diagonally on square foundations though :p
     
  13. no, the ui at like 2:33
    yeah, that ui looks cool.
    damn, thank you
     
  14. You know I have been thinking of making something like that for a long time for my server. I added the command buttons (see page 2) on my server for players.
    But making a larger UI with a lot of options might be cool :)
     
  15. I think I know how he did it as I watched it as I slept last night :p, But Ill have a look today, I also would love to make something like that, But would have to come after PvX V1 release and my FriendList API update :p.
     
  16. Yeah, something like this would be awesome, I still really want a fly plugin that isn't buggy and doesn't require giving full IsAdmin privs. A fly but not no-clip plugin would be awesome, but unfortunately I don't think it's supported by the game without flagging as cheating.
     
  17. Wulf

    Wulf Community Admin

    The FauxClip plugin should handle that, but not really related to this thread. ;)
     
  18. Could you maybe over-ride this for a semi-creative building option?
    Code:
      internal void FindTerrainPlacement(ref Construction.Target target, Construction component)
      {
        RaycastHit hitInfo;
        if (GamePhysics.Trace(target.ray, 0.0f, out hitInfo, component.maxplaceDistance, 27328768, (QueryTriggerInteraction) 1))
        {
          // ISSUE: explicit reference operation
          // ISSUE: explicit reference operation
          // ISSUE: explicit reference operation
          target.position = Vector3.op_Addition(((Ray) @target.ray).get_origin(), Vector3.op_Multiply(((Ray) @target.ray).get_direction(), ((RaycastHit) @hitInfo).get_distance()));
          // ISSUE: explicit reference operation
          target.normal = ((RaycastHit) @hitInfo).get_normal();
          target.rotation = this.rotationOffset;
          target.onTerrain = true;
          target.valid = true;
        }
        else
        {
          // ISSUE: explicit reference operation
          // ISSUE: explicit reference operation
          target.position = Vector3.op_Addition(((Ray) @target.ray).get_origin(), Vector3.op_Multiply(((Ray) @target.ray).get_direction(), component.maxplaceDistance));
          target.normal = Vector3.get_up();
          target.rotation = this.rotationOffset;
          target.onTerrain = component.canPlaceAtMaxDistance;
          target.valid = component.canPlaceAtMaxDistance;
        }
    Code:
      public bool CanAffordToPlace(Construction component)
      {
        if (this.isTypeDeployable)
          return true;
        BasePlayer ownerPlayer = this.GetOwnerPlayer();
        if (!Object.op_Implicit((Object) ownerPlayer))
          return false;
        using (List<ItemAmount>.Enumerator enumerator = component.defaultGrade.costToBuild.GetEnumerator())
        {
          while (enumerator.MoveNext())
          {
            ItemAmount current = enumerator.Current;
            if ((double) ownerPlayer.inventory.GetAmount(current.itemDef.itemid) < (double) current.amount)
              return false;
          }
        }
        return true;
      }
     
  19. Well, the initial post does mention being able to fly :p and FauxClip's flying is pretty buggy haha.