1. Wulf

    Wulf Community Admin

    What do you expect it to do? You aren’t actually doing anything in the plugin.
     
  2. Fixed it I took away the if part and left it a else because the only outcomes are building block or no building block.
    [DOUBLEPOST=1517774666][/DOUBLEPOST]
    finally work yayyy
     
  3. So I made a plugin that let you control props but the controlling part works but sometimes it just goes invisible. The shadow of the prop will still be there but the prop won't and they can pick it up.

    Code:
    void Loaded()
        {
            permission.RegisterPermission("controlprop.use", this);
    timer.Repeat(0.1f, 0, () =>
    {
        foreach (BasePlayer player in props.Keys)
        {
            BaseEntity prop = props[player];
            prop.transform.position = (new Vector3(player.transform.position.x, player.transform.position.y, player.transform.position.z));
            prop.SendNetworkUpdate();
        }
    });
        }
     
  4. Wulf

    Wulf Community Admin

    Please dont make a new thread for each little change you make while working on this, it is getting a bit spammy and could be contained in a single thread as you work through the issues you are having while tinkering.
     
  5. Sorry didn't realize that after I was like 3 hours bug-free until I know does this.