ACR_CreatureBehavior.PowerShellInterop.GetGameObject C# (CSharp) Method

GetGameObject() public method

Get an object for debugging purposes.
public GetGameObject ( uint ObjectId ) : ACR_CreatureBehavior.GameObject
ObjectId uint Supplies the object id to translate.
return ACR_CreatureBehavior.GameObject
        public GameObject GetGameObject(uint ObjectId)
        {
            ObjectId &= 0x7FFFFFFF;

            return Server.ObjectManager.GetGameObjectUnsafe(ObjectId);
        }