Esempio n. 1
0
        /// <summary>
        /// Pickup and item off the ground. Called from client-side.
        /// </summary>
        /// <param name="client"></param>
        /// <param name="args"></param>
        public static void PickupItem(Client client, params object[] args)
        {
            if (args[1] == null)
            {
                return;
            }

            InventoryHandler.RemoveDroppedItemFromGround(client, Convert.ToInt32(args[1]));
        }