Results 1 to 5 of 5
  1. #1
    DBFunx's Avatar
    Join Date
    Jul 2015
    Gender
    male
    Posts
    166
    Reputation
    10
    Thanks
    37

    A /addeff command that can be "thrown" to other players?

    The title says what the help request is for does anyone have a command for example:
    /throweff? that allows me to give players a effect

  2. #2
    The First Sin's Avatar
    Join Date
    May 2016
    Gender
    male
    Location
    At the Jugg House
    Posts
    54
    Reputation
    10
    Thanks
    16
    My Mood
    Devilish
    ~ Any questions or concerns just pm.

     
    Code:
        internal class TossEffCommand : Command
        {
            public TossEffCommand()
                : base("tosseff", 1)
            {
            }
    
            protected override bool Process(Player player, RealmTime time, string[] args)
            {
                if (args.Length != 2)
                {
                    player.SendHelp("Usage: /tosseff <PlayerName> <Effectname or Effectnumber>");
                    return false;
                }
                try
                {
                    foreach (KeyValuePair<string, Client> i in player.Manager.Clients.Where(i => i.Value.Player.Name.EqualsIgnoreCase(args[0])))
                    {
                        i.Value.Player.ApplyConditionEffect(new ConditionEffect
                        {
                            Effect =
                                (ConditionEffectIndex) Enum.Parse(typeof (ConditionEffectIndex), args[1].Trim(), true),
                            DurationMS = -1
                        });
                        player.SendInfo("Success!");
                    }
                }
                catch
                {
                    player.SendError("Invalid effect or player name! ");
                    return false;
                }
                return true;
            }
        }


    ~ Just an edited version of addeff
    @DBFunx
    Last edited by The First Sin; 05-30-2016 at 10:48 PM.
    Be thankful that you're blessed yet cursed with life and death.
     



    Violence, Bad Words, Scammers, Pornography, Drugs, Discrimination, Gambling, All on the internet.
    PEGI FAQ
    Review Internet Safety and Stay Safe Kids.

     


    ESRB RATINGS GUIDE
    Review Internet Safety and Stay Safe Kids.



    Gaming since 1994
    Microsoft Computing since 2000
    C since 2001
    Java since 2003
    Mobile since 2007
    Python since 2010


  3. The Following User Says Thank You to The First Sin For This Useful Post:

    DBFunx (05-30-2016)

  4. #3
    DBFunx's Avatar
    Join Date
    Jul 2015
    Gender
    male
    Posts
    166
    Reputation
    10
    Thanks
    37
    Thanks it was really helpful anyways
    //solved @Joe

  5. #4
    The First Sin's Avatar
    Join Date
    May 2016
    Gender
    male
    Location
    At the Jugg House
    Posts
    54
    Reputation
    10
    Thanks
    16
    My Mood
    Devilish
    @Nyaro's Panda

    solved
    Be thankful that you're blessed yet cursed with life and death.
     



    Violence, Bad Words, Scammers, Pornography, Drugs, Discrimination, Gambling, All on the internet.
    PEGI FAQ
    Review Internet Safety and Stay Safe Kids.

     


    ESRB RATINGS GUIDE
    Review Internet Safety and Stay Safe Kids.



    Gaming since 1994
    Microsoft Computing since 2000
    C since 2001
    Java since 2003
    Mobile since 2007
    Python since 2010


  6. #5
    Luis's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Posts
    2,801
    Reputation
    348
    Thanks
    1,845
    My Mood
    Psychedelic
    Problem solved.
    /closed.

Similar Threads

  1. [Solved] Can some1 give me a command that gives you 999 ballista spears??
    By majinvegeta5612 in forum Vindictus Help
    Replies: 2
    Last Post: 12-21-2011, 05:35 AM
  2. Is there any command that can cause mission fail?
    By wongkc987 in forum Vindictus Help
    Replies: 2
    Last Post: 10-31-2011, 10:50 AM
  3. [Help Request] can some1 tell me a few commands that are usefull
    By zerg32196 in forum Vindictus Help
    Replies: 11
    Last Post: 05-16-2011, 01:12 AM
  4. For Whoever That Can Make Good Hacks
    By ip_ban in forum Visual Basic Programming
    Replies: 0
    Last Post: 04-15-2008, 02:38 PM
  5. Need UCE that can make trainers
    By lolliepop in forum WarRock - International Hacks
    Replies: 12
    Last Post: 04-18-2007, 02:16 PM