Thread: Command /ci

Results 1 to 5 of 5
  1. #1
    Drowlys's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Location
    The Crawling Depths
    Posts
    196
    Reputation
    10
    Thanks
    2,675

    Command /ci

    This command clear your inventory.
    Add this code in AdminCommands.cs

    Code:
    class ClearInventory : ICommand
        {
            public string Command { get { return "ci"; } } // Clear Inventory
            public int RequiredRank { get { return 0; } } //Choose a rank for the command, here all people can use /ci
            public int RequiredDonation { get { return 0; } } //Delete this line if you don't have a donator system
    
            public void Execute(Player player, string[] args)
            {
                string name = string.Join(" ", args.ToArray()).Trim();
                name = name.ToLower();
                try
                {
    
                        player.Inventory[0] = null;
                        player.Inventory[1] = null;
                        player.Inventory[2] = null;
                        player.Inventory[3] = null;
                        player.Inventory[4] = null;
                        player.Inventory[5] = null;
                        player.Inventory[6] = null; ;
                        player.Inventory[7] = null;
                        player.Inventory[8] = null;
                        player.Inventory[9] = null;
                        player.Inventory[10] = null;
                        player.Inventory[11] = null;
                        player.UpdateCount++;
                        return;
                }
                catch
                {
                    player.SendInfo("Error !");
                }
            }
        }

    Credits : @Drowlys for all the work !

  2. #2
    sacredmike's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Location
    Uranus ;)
    Posts
    685
    Reputation
    15
    Thanks
    3,255
    My Mood
    Devilish
    No credits? Lol. Jk :P

  3. #3
    BlackRayquaza's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Posts
    574
    Reputation
    10
    Thanks
    186
    My Mood
    In Love
    Quote Originally Posted by Drowlys View Post
    player.Inventory[6] = null; ;
    Is there supposed to be a double ; ?
    YEP cock

  4. #4
    BlackRayquaza's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Posts
    574
    Reputation
    10
    Thanks
    186
    My Mood
    In Love
    Quote Originally Posted by BlackRayquaza View Post
    Is there supposed to be a double ; ?
    @Drowlys Is there supposed to be a double ; ?
    YEP cock

  5. #5
    Trollaux's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Posts
    2,074
    Reputation
    137
    Thanks
    792
    Quote Originally Posted by BlackRayquaza View Post
    @Drowlys Is there supposed to be a double ; ?
    No. That's just a bug. Anyway thanks drowlys this is very helpful
    d e a d b o y s
    Quote Originally Posted by Dave84311 View Post
    What do you call a troll with shitty jokes?
    Trollaux
    Quote Originally Posted by Kyeran View Post
    Foot job with lots of oil.
    Quote Originally Posted by Kyeran View Post
    If she's 12, I'm 12.

Similar Threads

  1. Run Commands!
    By AN1MAL in forum Spammers Corner
    Replies: 12
    Last Post: 01-01-2007, 01:51 PM
  2. supreme commander and command&conquer hacking
    By TheDisruptor in forum General Game Hacking
    Replies: 3
    Last Post: 11-26-2006, 10:50 PM
  3. Command & Conquer Generals
    By heero_yuy in forum General Game Hacking
    Replies: 2
    Last Post: 06-21-2006, 03:12 AM
  4. Warrock Command List
    By Dave84311 in forum WarRock - International Hacks
    Replies: 5
    Last Post: 05-26-2006, 11:03 PM
  5. Demon of some commands
    By HolyFate in forum Gunz Hacks
    Replies: 12
    Last Post: 02-21-2006, 01:43 PM