예제 #1
0
        public void botResumeMovement(string bot)
        {
            if (!ScriptProtection.CheckThreatLevel(ThreatLevel.Moderate, "botResumeMovement", m_host, "bot", m_itemID))
            {
                return;
            }
            IBotManager manager = World.RequestModuleInterface <IBotManager>();

            if (manager != null)
            {
                manager.ResumeMovement(UUID.Parse(bot), m_host.OwnerID);
            }
        }