Page 1 of 2 12 LastLast
Results 1 to 15 of 30
  1. #1
    radnomguywfq3's Avatar
    Join Date
    Jan 2007
    Gender
    male
    Location
    J:\E\T\A\M\A\Y.exe
    Posts
    8,858
    Reputation
    381
    Thanks
    1,823
    My Mood
    Sad

    MPGH is in need of a programmer.

    MPGH Is Recruiting A Programmer


    Will be developing hacks for War Rock.
    Requirements :
    - Basic understanding of C++.
    - Can program a D3D Hook.
    - Ability to implement or create a signature scanner for the D3D Hook.
    - Ability to bypass Hack Shield and PunkBuster. (Warrock is currently testing Hack Shield, but may switch back to PunkBuster)
    - Ability to create a suitable number of features for the hack.
    - Able to use a debugger of your choice.
    - Can update the hack whenever there is a problem with it, and fix it within 24 hours, an extended time will be provided if you have personal events to attend to.
    - Must check the Warrock VIP section for problems at least every day.
    - Provide the final source to Dave (if you can't bypass it, he will) after every release.

    Payment :
    For now payment will be access to the VIP hacks. Later, a monthly paycheck.

    Post your applications here
    And join the IRC to be reviewed.
    Last edited by arunforce; 10-25-2008 at 12:37 PM.



    There are two types of tragedies in life. One is not getting what you want, the other is getting it.

    If you wake up at a different time in a different place, could you wake up as a different person?


  2. The Following 3 Users Say Thank You to radnomguywfq3 For This Useful Post:

    hama (12-12-2008),heroesrising (11-06-2008),victor76170 (10-27-2008)

  3. #2
    radnomguywfq3's Avatar
    Join Date
    Jan 2007
    Gender
    male
    Location
    J:\E\T\A\M\A\Y.exe
    Posts
    8,858
    Reputation
    381
    Thanks
    1,823
    My Mood
    Sad
    Only post applications here, all other posts will be deleted.



    There are two types of tragedies in life. One is not getting what you want, the other is getting it.

    If you wake up at a different time in a different place, could you wake up as a different person?


  4. #3
    PyroCorona's Avatar
    Join Date
    Aug 2008
    Location
    Canada.. Eh?
    Posts
    514
    Reputation
    10
    Thanks
    33
    My app:
    -Has been using C++ for 2 months now.
    -Has edited/made a prv hack for WarRock using D3D.
    -Made my own "VIP Hack".
    -Will update hack whenever there is a patch.
    -Will check for bugs in the hack in the VIP section everychance i get.

  5. #4
    papermonster's Avatar
    Join Date
    Aug 2008
    Posts
    15
    Reputation
    10
    Thanks
    4

    for me

    OK. You know, i may be a choob, but i can do more. You see, i was origannly a ************* programmer until i got banned for leeching even though i didnt. T Hing is, i know how to make them and this would be a great job.

  6. #5
    radnomguywfq3's Avatar
    Join Date
    Jan 2007
    Gender
    male
    Location
    J:\E\T\A\M\A\Y.exe
    Posts
    8,858
    Reputation
    381
    Thanks
    1,823
    My Mood
    Sad
    Next person to spam here will be permanently banned.



    There are two types of tragedies in life. One is not getting what you want, the other is getting it.

    If you wake up at a different time in a different place, could you wake up as a different person?


  7. The Following User Says Thank You to radnomguywfq3 For This Useful Post:

    heroesrising (11-06-2008)

  8. #6
    Leaum's Avatar
    Join Date
    Sep 2008
    Location
    Araknsas, USA
    Posts
    145
    Reputation
    11
    Thanks
    58
    My app I suppose ill give it a shot.
    -I have been using C++ for about 2 weeks HOWEVER i script in secondlife and there coding is based off of C++ so i understand it alot faster (aside i know like 5 other codes)
    -I have done some C++ work in another game called Conquer 2.0 not much but i got the basic idea about the game coding
    -I can take a quick lesson from another person to get the idea on how this game works
    -Will help update a hack whenever there is a patch Or I'm needed to.
    -Will check for bugs in the hack in the VIP section everychance i get.
    -Also If you do accept me please do not give me a "paycheck" at any point in time if I do get on the team I will be there to help and service the group have a good day!
    -Side note(If there is a opening on combat arms Id much rather work in that general area since I think its a overall much better game)

    *A idea of the scripting I do know already*


    float delay = 3.0;
    integer reset;
    integer rezzed;
    integer worn;
    integer removed;

    out(string message) {
    llWhisper(0, message);
    //llMessageLinked(LINK_SET, 0, "environment " + message, NULL_KEY);
    }

    default
    {
    state_entry()
    {
    ++reset;
    if (llGetAttached()) ++worn;
    llSetTimerEvent(delay);
    }

    on_rez(integer param)
    {
    ++rezzed;
    llSetTimerEvent(delay);
    }

    attach(key who)
    {
    if (who != NULL_KEY) {
    ++worn;
    } else {
    ++removed;
    }
    llSetTimerEvent(delay);
    }

    timer()
    {
    llSetTimerEvent(0);

    if (reset && !worn)
    out("reset on ground");
    else if (reset && worn)
    llRequestPermissions(llGetOwner(),PERMISSION_TRIGG ER_ANIMATION | PERMISSION_TAKE_CONTROLS | PERMISSION_ATTACH);
    //out("reset while worn");
    else if (worn && rezzed && removed)
    llRequestPermissions(llGetOwner(),PERMISSION_TRIGG ER_ANIMATION | PERMISSION_TAKE_CONTROLS | PERMISSION_ATTACH);
    //out("worn from inventory");
    else if (worn && rezzed && !removed)
    {
    llResetOtherScript("rifle.main");
    }
    else if (worn && !rezzed)
    llRequestPermissions(llGetOwner(),PERMISSION_TRIGG ER_ANIMATION | PERMISSION_TAKE_CONTROLS | PERMISSION_ATTACH);
    //out("worn from ground");
    else if (!worn && !rezzed && removed)
    //out("dropped while attached");
    llReleaseControls();
    else out("unexpected runtime environment");

    worn = removed = rezzed = reset = 0;
    }
    run_time_permissions(integer perm)
    {
    llTakeControls(CONTROL_ML_LBUTTON | CONTROL_FWD | CONTROL_BACK | CONTROL_LEFT | CONTROL_RIGHT,TRUE,TRUE);
    }
    }

    This was the Rifle main script for the sniper i made in the game (do remember this is not REAL C++ its just strongly based off of it its called lsl)
    Last edited by Leaum; 10-26-2008 at 03:04 AM.

  9. The Following User Says Thank You to Leaum For This Useful Post:

    goerge goloes (12-12-2008)

  10. #7
    gerben498's Avatar
    Join Date
    Jan 2008
    Posts
    1
    Reputation
    10
    Thanks
    1
    hey, im volunteerin xD

    - Basic understanding of C++. //GOT THAT
    - Can program a D3D Hook. //GOT THAT
    - Ability to implement or create a signature scanner for the D3D Hook. //DUNNO WHAT YA MEAN BUT MAYBE I CAN
    - Ability to bypass Hack Shield and PunkBuster. (Warrock is currently testing Hack Shield, but may switch back to PunkBuster)//NOT MUCH LUCK ON THAT 1 YET BUT IM DOIN MA BEST
    - Ability to create a suitable number of features for the hack. // HELL YEAH
    - Able to use a debugger of your choice. //GOT EXPERIENCE BUT NOT THAT MUCH
    - Can update the hack whenever there is a problem with it, and fix it within 24 hours, an extended time will be provided if you have personal events to attend to. //HELL I CAN
    - Must check the Warrock VIP section for problems at least every day. //CAN DO THAT TO
    - Provide the final source to Dave (if you can't bypass it, he will) after every release. //ALSO CAN DO THAT

    hope ya find me good enuf.
    here is an hack im workin on:


    Greetz Gerben498
    Last edited by gerben498; 10-26-2008 at 03:11 PM.

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

    xxandycxx (10-29-2008)

  12. #8
    robeszkunesz's Avatar
    Join Date
    Aug 2007
    Gender
    male
    Location
    Homeless
    Posts
    158
    Reputation
    10
    Thanks
    14
    My Mood
    Buzzed
    i can do all !!!!!!!!!!!!!!!


    robeszkunesz

    Please Help me raise my Habamon!

    Respect List:
    schokk21
    Dead Bones Brook

    youtube.com/troxcss !! WATCH AND SUB PLEASE<3

  13. #9
    bug123's Avatar
    Join Date
    Oct 2008
    Posts
    8
    Reputation
    10
    Thanks
    1
    I've made personal god mode hack for all nexon games I can help mainly on nexon cause I'm nexon game programmer Me and my colleagues always leave hole in games to hack I'd be glad to help ya

  14. #10
    GG2GG's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    United Kingdom
    Posts
    3,382
    Reputation
    21
    Thanks
    4,294,967,295
    My Mood
    Blah
    ****** carnt you read dont spam?

    anyway if you want to be taken srsly contact me or jetamay on irc
    or pm me on mpgh [jetamays pm box is always full so hes doesnt look at it]
    jetamay stop deleting my posts ****** D:
    Last edited by GG2GG; 10-30-2008 at 12:00 PM.

  15. The Following 2 Users Say Thank You to GG2GG For This Useful Post:

    Ddos (12-06-2008),heroesrising (11-06-2008)

  16. #11
    goodfoot362's Avatar
    Join Date
    Sep 2008
    Gender
    male
    Posts
    18
    Reputation
    10
    Thanks
    1
    i can make Hack Shield Bypass And PB Also I am in the middle of finshing D3D with C++ 2003

    i never started to code C++ 6

    But Problem is i got school so i cant fix any problem ASAP

  17. #12
    GG2GG's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    United Kingdom
    Posts
    3,382
    Reputation
    21
    Thanks
    4,294,967,295
    My Mood
    Blah
    make a prototype and send me a link via pm i or someone else can update the hack if needed long as u can code and bypass it

  18. The Following User Says Thank You to GG2GG For This Useful Post:

    Ddos (12-06-2008)

  19. #13
    Kung Fu Penguin31's Avatar
    Join Date
    Jun 2007
    Gender
    male
    Location
    how am i supposed to know....
    Posts
    473
    Reputation
    12
    Thanks
    48

    Post ooo pick me !!

    - i have quite a lot of experience with c++ and know most aspects of it. Been using it to code hacks for well over a year.I can create hacks from scratch. And i have also realeased quite a few.

    - I know how to code a d3d hook (implement features) but i dont know how to fully create a d3d hooking base from scratch, but i soon will.

    -I am available to update hacks most times of the day, and i can check the forums daily to see if anyone has problems.

    - I know how to use OllyDbg and IDA , but i prefer OllyDbg.

    - I know how to implement a bypass for PB from someone's theory but i haven't tried to find a bypass method myself, but it's never too late to try .

    I admit im not a fully fledged game hacking expert but i know enought to call my self a well rounded game hacker .







    [img]https://www.danasof*****m/sig/ghghhkjklk.jpg[/img]

    drill sargeant: How tall are you boy!?
    soldier: umm....urr about 5' 11''
    drill sargeant: I didn't know they stacked shit that high!!

    Creator of the Annihilation,Freebie and KFP Series.

    <MASTER HACKER>

  20. #14
    heroesrising's Avatar
    Join Date
    Nov 2008
    Posts
    2
    Reputation
    10
    Thanks
    0
    well i have knowledge on c++, so much that i am the proud owner/programmer of EvolutionWoW - Home which is a world of warcraft private server. check it out and you will see my work, i will be active and do what is asked, i dont ask for any payment because i just like to help and program. i dont need the money i make enough off my website. i also have basic knowledge on java not that i think you will need. but if you need me contact me i will not contact you guys because im not going to chase you guys for a job. I am doing this to help out therefore i should not chase any of you. my aim is swatrules4life and one of my msn's that im on is dashit3000@hotmail.com

    Also gerben498 that picture you showed is not yours please dont lie to yourself and to people like that, that doesn't belong to you so dont post it as your work , you very well know it.
    Last edited by heroesrising; 11-06-2008 at 04:51 PM.

  21. #15
    GG2GG's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    United Kingdom
    Posts
    3,382
    Reputation
    21
    Thanks
    4,294,967,295
    My Mood
    Blah
    wait here ******s

  22. The Following User Says Thank You to GG2GG For This Useful Post:

    Ddos (12-06-2008)

Page 1 of 2 12 LastLast

Similar Threads

  1. [SOLVED]OFFICIAL MPGH Middle Man Needed
    By darklynk in forum CrossFire Help
    Replies: 5
    Last Post: 10-08-2010, 09:44 PM
  2. MPGH Assemble (Song Needed)
    By arunforce in forum General
    Replies: 7
    Last Post: 09-01-2010, 02:46 PM
  3. [Discussion] dont we need a master programmer like unmentianbell for mpgh CA NA
    By a_randomguy in forum Combat Arms Hacks & Cheats
    Replies: 11
    Last Post: 10-27-2009, 05:11 PM
  4. MPGH's irc needs some lovin
    By iverson954360 in forum General
    Replies: 9
    Last Post: 07-31-2007, 11:40 PM
  5. HEY CHRONO, the MPGH gunz clan NEEDS A SIG
    By A7X Oblivian in forum Help & Requests
    Replies: 22
    Last Post: 03-24-2006, 04:34 PM

Tags for this Thread