Results 1 to 9 of 9
  1. #1
    Zhr33's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0

    Working Godmode Script?

    Is there any working Godmode Script?

  2. #2
    Dave84311's Avatar
    Join Date
    Dec 2005
    Gender
    male
    Location
    The Wild Wild West
    Posts
    35,837
    Reputation
    5782
    Thanks
    41,292
    My Mood
    Devilish
    Search the forum next time.

    https://www.mpgh.net/forum/624-dayz-h...mode-hack.html

    Works, but you need a bypass.





    THE EYE OF AN ADMINISTRATOR IS UPON YOU. ANY WRONG YOU DO IM GONNA SEE, WHEN YOU'RE ON MPGH, LOOK BEHIND YOU, 'CAUSE THATS WHERE IM GONNA BE


    "First they ignore you. Then they laugh at you. Then they fight you. Then you lose.” - Dave84311

    HAVING VIRTUAL DETOX

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

    lockdown6435 (08-08-2012)

  4. #3
    Zhr33's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    I have tryed this Script bevor i made this Thread and its not working...

  5. #4
    lockdown6435's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    DayZ Forum Babysitter
    Posts
    1,369
    Reputation
    98
    Thanks
    5,698
    My Mood
    Tired
    Here's one that I have. Not sure if it is working or not. Credits to wuat.

    Code:
    // anti hack scripts cannot disable your user input
    // this is irrelivant now as the code is deprected by the main hack.
    // Dependant on version may be removed without notice.
    
    
    
    
    
    if (isNil "igodokxtt") then {igodokxtt = 0;};
    if (igodokxtt==0) then
    {
    (vehicle player) removeAllEventHandlers "handleDamage";
    (vehicle player) addEventHandler ["handleDamage", { false }];	
    (vehicle player) allowDamage false;
    igodokxtt=1;
    hint "GOD mode ON";
    sleep 0.001;
    }
    else
    {
    
    
    (vehicle player) addEventHandler ["handleDamage", { true }];	
    (vehicle player) removeAllEventHandlers "handleDamage";
    (vehicle player) allowDamage true;
    igodokxtt=0;
    hint "YOU ARE NO LONGER GOD";
    sleep 0.001;
    };
    Quote Originally Posted by VindictusMods
    I'll just change my IP, and I have all your IP's guys. So watch it. I may hack or put a virus in ur computer.
    Quote Originally Posted by sd333221
    Injecting in the lobby gets you directly banned. Thats my secret deal with Battleye, I let them have the people who can't read the instructions and they don't ban the others in return.

  6. The Following User Says Thank You to lockdown6435 For This Useful Post:

    Zhr33 (08-09-2012)

  7. #5
    Nullibicty's Avatar
    Join Date
    Dec 2010
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by lockdown6435 View Post
    Here's one that I have. Not sure if it is working or not. Credits to wuat.

    Code:
    // anti hack scripts cannot disable your user input
    // this is irrelivant now as the code is deprected by the main hack.
    // Dependant on version may be removed without notice.
    
    
    
    
    
    if (isNil "igodokxtt") then {igodokxtt = 0;};
    if (igodokxtt==0) then
    {
    (vehicle player) removeAllEventHandlers "handleDamage";
    (vehicle player) addEventHandler ["handleDamage", { false }];	
    (vehicle player) allowDamage false;
    igodokxtt=1;
    hint "GOD mode ON";
    sleep 0.001;
    }
    else
    {
    
    
    (vehicle player) addEventHandler ["handleDamage", { true }];	
    (vehicle player) removeAllEventHandlers "handleDamage";
    (vehicle player) allowDamage true;
    igodokxtt=0;
    hint "YOU ARE NO LONGER GOD";
    sleep 0.001;
    };


    How would I go about useing this script for god mode?

  8. #6
    lockdown6435's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    DayZ Forum Babysitter
    Posts
    1,369
    Reputation
    98
    Thanks
    5,698
    My Mood
    Tired
    create a file called godmode.sqf in your arma 2 operation arrowhead directory and paste this in. Use the injector hack that I have posted and type
    Code:
    execVM "godmode.sqf";
    into the console.
    Quote Originally Posted by VindictusMods
    I'll just change my IP, and I have all your IP's guys. So watch it. I may hack or put a virus in ur computer.
    Quote Originally Posted by sd333221
    Injecting in the lobby gets you directly banned. Thats my secret deal with Battleye, I let them have the people who can't read the instructions and they don't ban the others in return.

  9. #7
    Zhr33's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by lockdown6435 View Post
    Here's one that I have. Not sure if it is working or not. Credits to wuat.

    Code:
    // anti hack scripts cannot disable your user input
    // this is irrelivant now as the code is deprected by the main hack.
    // Dependant on version may be removed without notice.
    
    
    
    
    
    if (isNil "igodokxtt") then {igodokxtt = 0;};
    if (igodokxtt==0) then
    {
    (vehicle player) removeAllEventHandlers "handleDamage";
    (vehicle player) addEventHandler ["handleDamage", { false }];	
    (vehicle player) allowDamage false;
    igodokxtt=1;
    hint "GOD mode ON";
    sleep 0.001;
    }
    else
    {
    
    
    (vehicle player) addEventHandler ["handleDamage", { true }];	
    (vehicle player) removeAllEventHandlers "handleDamage";
    (vehicle player) allowDamage true;
    igodokxtt=0;
    hint "YOU ARE NO LONGER GOD";
    sleep 0.001;
    };
    also not working

  10. #8
    yokhaji's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    4
    My Mood
    Devilish
    lol, that script needs a few modifications to work. Removing a few lines and it works fine.

    Code:
    (vehicle player) removeAllEventHandlers "handleDamage";
    (vehicle player) addEventHandler ["handleDamage", { false }];	
    (vehicle player) allowDamage false;
    hint "GOD mode ON";
    sleep 0.001;

  11. The Following User Says Thank You to yokhaji For This Useful Post:

    lockdown6435 (08-09-2012)

  12. #9
    lockdown6435's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    DayZ Forum Babysitter
    Posts
    1,369
    Reputation
    98
    Thanks
    5,698
    My Mood
    Tired
    Quote Originally Posted by yokhaji View Post
    lol, that script needs a few modifications to work. Removing a few lines and it works fine.

    Code:
    (vehicle player) removeAllEventHandlers "handleDamage";
    (vehicle player) addEventHandler ["handleDamage", { false }];	
    (vehicle player) allowDamage false;
    hint "GOD mode ON";
    sleep 0.001;
    Thanks, mine was really outdated and I've been too busy helping to review code . Once again, thanks a lot for fixing this!
    Quote Originally Posted by VindictusMods
    I'll just change my IP, and I have all your IP's guys. So watch it. I may hack or put a virus in ur computer.
    Quote Originally Posted by sd333221
    Injecting in the lobby gets you directly banned. Thats my secret deal with Battleye, I let them have the people who can't read the instructions and they don't ban the others in return.

Similar Threads

  1. [Info] Confirmed Working - Godmode & 1 Hit
    By mrperez816 in forum Vindictus Discussions
    Replies: 42
    Last Post: 10-17-2011, 03:21 AM
  2. WORKING GODMOD CA-NA AND EU
    By FWESFWSERGFwesg in forum General
    Replies: 10
    Last Post: 06-04-2011, 03:42 AM
  3. GODMODE-search not working
    By mgofca in forum Combat Arms Hacks & Cheats
    Replies: 20
    Last Post: 09-07-2008, 01:46 PM
  4. Vac hack / Script "Updated and Working"
    By kiko in forum Combat Arms Hacks & Cheats
    Replies: 5
    Last Post: 08-15-2008, 10:56 PM
  5. Replies: 2
    Last Post: 08-03-2008, 05:25 PM