NPC movement on player's buildings Rust

Dear friends. Tell me if it is possible to do this.I have my own building, my base, and I want to find out if it's possible to make NPCs walk around my building. If it is possible, then tell me or hint how best to implement it.

-----------------

Дорогие друзья. Подскажите возможно ли сделать так.У меня есть моя собственная постройка, моя база, я хочу узнать можно ли сделать так что бы NPC ходили, бродлили по моей постройке. Если это возможно то подскажите или намекните как лучше это реализовать

npc will only walk on navmesh and navemesh is not dynamic so you cant use that to make them walk on buildings  you can check out human npc to see how they make them walk on foundations but its verry buggy you could make a path for them but if you expect them to chace players and sitch that will require you to do more caculations to try and make them path to the player by using closest path points and sutch.    In other words unless just want them to walk a path this will invalve lots of work.

I use the HumanNPC plugin and another plugin called Path Finding.  It works well when you get used to it.  You have to set up waypoints and between these waypoints you can adjust  the speed.  Say, you have them walking around, but then going up a set of stairs (preferably straight stairs), you can speed it up a bit so they don't hang up and appear to be trotting up the stairs.

I usually only use this for larger bases that have long, straight pathing directions, becuase like Razor says ... it can be a bit buggy.  But, it does the job.  You can also make them (HumanNPC) return fire, take damage, let them die, make it so they spawn back and set that timer too.  You can also use RustKits to dress them up.

I