Thread: Add god mode?

Results 1 to 5 of 5
  1. #1
    WeirdNerds's Avatar
    Join Date
    Nov 2016
    Gender
    male
    Location
    Sweden
    Posts
    19
    Reputation
    10
    Thanks
    0

    Add god mode?

    Anyone have any idea about how-to add godmode on fabianos?

  2. #2
    LegumI's Avatar
    Join Date
    Jan 2014
    Gender
    male
    Posts
    340
    Reputation
    10
    Thanks
    131
    My Mood
    Blah
    Quote Originally Posted by WeirdNerds View Post
    Anyone have any idea about how-to add godmode on fabianos?
    ./addeff 21
    ./addeff 24
    Or https://lmgtfy.com/?q=fabiano+%2Fgod+command

  3. #3
    Invader_Zim's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    Atlas 2
    Posts
    546
    Reputation
    10
    Thanks
    300
    My Mood
    Tired
    Code:
    internal class God : Command
        {
            public God()
            : base("god", 2)
            {
            }
    
            protected override bool Process(Player player, RealmTime time, string[] args)
            {
                if (player.HasConditionEffect(ConditionEffectIndex.Invincible))
                {
                    player.ApplyConditionEffect(new ConditionEffect
                    {
                        Effect = ConditionEffectIndex.Invincible,
                        DurationMS = 0
                    });
                    player.ApplyConditionEffect(new ConditionEffect
                    {
                        Effect = ConditionEffectIndex.Damaging,
                        DurationMS = 0
                    });
                    player.ApplyConditionEffect(new ConditionEffect
                    {
                        Effect = ConditionEffectIndex.Berserk,
                        DurationMS = 0
                    });
                    player.SendInfo("Godmode Off");
                }
                else
                {
                    player.ApplyConditionEffect(new ConditionEffect
                    {
                        Effect = ConditionEffectIndex.Invincible,
                        DurationMS = -1
                    });
                    player.ApplyConditionEffect(new ConditionEffect
                    {
                        Effect = ConditionEffectIndex.Damaging,
                        DurationMS = -1
                    });
                    player.ApplyConditionEffect(new ConditionEffect
                    {
                        Effect = ConditionEffectIndex.Berserk,
                        DurationMS = -1
                    });
                    player.SendInfo("Godmode On");
                }
                return true;
            }
        }

    My weapon is a backpack.

  4. #4
    Lxys's Avatar
    Join Date
    Jan 2014
    Gender
    male
    Location
    England.
    Posts
    1,156
    Reputation
    208
    Thanks
    2,235
    My Mood
    Devilish
    Quote Originally Posted by Invader_Zim View Post
    Code:
    internal class God : Command
        {
            public God()
            : base("god", 2)
            {
            }
    
            protected override bool Process(Player player, RealmTime time, string[] args)
            {
                if (player.HasConditionEffect(ConditionEffectIndex.Invincible))
                {
                    player.ApplyConditionEffect(new ConditionEffect
                    {
                        Effect = ConditionEffectIndex.Invincible,
                        DurationMS = 0
                    });
                    player.ApplyConditionEffect(new ConditionEffect
                    {
                        Effect = ConditionEffectIndex.Damaging,
                        DurationMS = 0
                    });
                    player.ApplyConditionEffect(new ConditionEffect
                    {
                        Effect = ConditionEffectIndex.Berserk,
                        DurationMS = 0
                    });
                    player.SendInfo("Godmode Off");
                }
                else
                {
                    player.ApplyConditionEffect(new ConditionEffect
                    {
                        Effect = ConditionEffectIndex.Invincible,
                        DurationMS = -1
                    });
                    player.ApplyConditionEffect(new ConditionEffect
                    {
                        Effect = ConditionEffectIndex.Damaging,
                        DurationMS = -1
                    });
                    player.ApplyConditionEffect(new ConditionEffect
                    {
                        Effect = ConditionEffectIndex.Berserk,
                        DurationMS = -1
                    });
                    player.SendInfo("Godmode On");
                }
                return true;
            }
        }
    Don't be silly, he won't know how to implement..
    probably doesn't know how to open the fucking solution xd
    Specs
    Motherboard - Asus Z170-P
    CPU- Intel Core i5 6500
    SSD - Samsung SM951
    Ram - 8 GB (2 x 4 DDR2)
    HDD - Random 500GB One
    GPU - Integrated i5 (Intel HD Graphics 530)
    OS - Win10

  5. The Following 2 Users Say Thank You to Lxys For This Useful Post:

    LegumI (12-30-2016),Orbit (12-30-2016)

  6. #5
    LegumI's Avatar
    Join Date
    Jan 2014
    Gender
    male
    Posts
    340
    Reputation
    10
    Thanks
    131
    My Mood
    Blah
    Quote Originally Posted by Luverdark's Cute Daughter View Post
    Don't be silly, he won't know how to implement..
    probably doesn't know how to open the fucking solution xd
    Yeah he really doesn't, and then when I helped him through team viewer he tries to fucking frame me because he's dumb and broke things himself

Similar Threads

  1. [Discussion] dbased,since you are taking a break, why don't you add the god mode back?
    By Warsong in forum Mission Against Terror Discussions
    Replies: 20
    Last Post: 03-03-2011, 07:58 PM
  2. God mode?
    By scooby107 in forum WarRock - International Hacks
    Replies: 22
    Last Post: 05-01-2007, 12:47 PM
  3. god mode!!!!!!!!!!
    By 98244345 in forum Gunz General
    Replies: 11
    Last Post: 05-20-2006, 01:43 AM
  4. gunz god mode
    By pepsi_dude_777 in forum Gunz General
    Replies: 6
    Last Post: 02-21-2006, 10:00 PM
  5. can i have a god mode
    By plapla1 in forum Gunz General
    Replies: 21
    Last Post: 02-21-2006, 12:06 PM