Exemplo n.º 1
0
        /// <summary>
        /// Enemy Transform
        /// </summary>
        bool Command336()
        {
            // Get enemy
            GameNpc enemy = InGame.Troops.Npcs[InGame.Troops.Npcs.Count - 1 - intParams[0]];

            // Transform processing
            if (enemy != null)
            {
                enemy.Transform(intParams[1]);
            }
            return(true);
        }