1. eed

    eed

    Hi, tell me if it is possible to find out the rights(permission) of the person who put the foundation or wall, through these objects (foundation and wall)
     
  2. Yes of course, use hook void OnEntityBuilt(Planner plan, GameObject go), then easily check something like:
    var block = go.ToBaseEntity()
    if (permission.UserHasPermission(block.OwnerID.ToString(), "PERMISSION THAT YOU WANT TO CHECK") e.t.c.