Thread: WEAPON HACK!!

Page 1 of 6 123 ... LastLast
Results 1 to 15 of 76
  1. #1
    killertime's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Posts
    367
    Reputation
    10
    Thanks
    221
    My Mood
    Cynical

    WEAPON HACK!!

    can anyone tell me and teach me how to use this
    in microsoft C++




    "DA_KNUCKLE [1]",

    "DA_SWORD_JP [7]",


    what is the patern please tell me thanks ^_^

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

    icare17 (07-15-2013),seli (07-14-2013)

  3. #2
    TrAdEMaRc's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    221B
    Posts
    200
    Reputation
    10
    Thanks
    532
    My Mood
    Psychedelic
    float ADR_Weapon1 = 7;
    float ADR_Weapon2 = 7;
    float ADR_Weapon3 = 7;

  4. The Following User Says Thank You to TrAdEMaRc For This Useful Post:

    icare17 (07-15-2013)

  5. #3
    Ghost304's Avatar
    Join Date
    May 2012
    Gender
    male
    Location
    Philippines
    Posts
    221
    Reputation
    10
    Thanks
    403
    My Mood
    Bored
    "DG_NTW_20 [180]",
    "DF_MP7A1 [44]",
    how to code this? ^_^
    -Everyone starts from knowing nothing-
    -Ghost304-

    Reading manga!
    Watching anime!
    Playing visual novel!



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

    icare17 (07-15-2013)

  7. #4
    MJCreado's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Location
    Germany
    Posts
    557
    Reputation
    58
    Thanks
    810
    My Mood
    Bored
    visual.

    /msg2short

  8. The Following User Says Thank You to MJCreado For This Useful Post:

    icare17 (07-15-2013)

  9. #5
    TrAdEMaRc's Avatar
    Join Date
    May 2013
    Gender
    male
    Location
    221B
    Posts
    200
    Reputation
    10
    Thanks
    532
    My Mood
    Psychedelic
    Quote Originally Posted by MJCreado View Post
    visual.

    /msg2short
    :3 naman haha

  10. #6
    Ghost304's Avatar
    Join Date
    May 2012
    Gender
    male
    Location
    Philippines
    Posts
    221
    Reputation
    10
    Thanks
    403
    My Mood
    Bored
    Paturo please?
    -Everyone starts from knowing nothing-
    -Ghost304-

    Reading manga!
    Watching anime!
    Playing visual novel!



  11. #7
    AeroMan's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    Hell
    Posts
    3,294
    Reputation
    189
    Thanks
    3,049
    My Mood
    Busy
    Thats just your text that is drawed in your menu
    for example:
    Code:
    char * weapons [] = { "DA_KNUCKLE [1]", "DA_SWORD_JP [7]" };
    This code defines the 'weapons' char where the text is stored in.

    So you can for example use this:
    Code:
    menuopt->AddItem(text, x, y, xWeapon, &weapons, 1); // <- your menu char, max items = 2
    Then your source code could be:
    Code:
    switch(xWeapon && dwPlayer != 0)
    {
    case 0:
    *(DWORD*)dwPlayer+OFS_Weapon_1 = 1; //We set our nuckles
    *(DWORD*)dwPlayer+OFS_Weapon_2 = 1; //We set our nuckles
    *(DWORD*)dwPlayer+OFS_Weapon_3 = 1; //We set our nuckles
    break;
    
    case 2:
    *(DWORD*)dwPlayer+OFS_Weapon_1 = 7; //We set our DA_SWORD_JP
    *(DWORD*)dwPlayer+OFS_Weapon_2 = 7; //We set our DA_SWORD_JP
    *(DWORD*)dwPlayer+OFS_Weapon_3 = 7; //We set our DA_SWORD_JP
    break;
    }
    When we switch now you get the weapon that is showed on your text.

    I hope this helps

  12. The Following 4 Users Say Thank You to AeroMan For This Useful Post:

    αςε.εmόkόι (07-18-2013),cieloem0 (11-07-2013),DaneCoder (06-05-2014),SyncMaster (Hacker) (07-17-2013)

  13. #8
    F l a p J a c K ™'s Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    WarRock PH Force
    Posts
    1,737
    Reputation
    10
    Thanks
    1,472
    My Mood
    Bitchy
    Yhea go go go AeroMan ehehe

    A good coder is someone who always looks both ways before crossing a one-way street.
    ~Doug Linder

    Ramzking Injector: Press Here
    MPGH member since: 07-18-2012











  14. #9
    killertime's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Posts
    367
    Reputation
    10
    Thanks
    221
    My Mood
    Cynical
    Quote Originally Posted by Alex_Agnew View Post
    Thats just your text that is drawed in your menu
    for example:
    Code:
    char * weapons [] = { "DA_KNUCKLE [1]", "DA_SWORD_JP [7]" };
    This code defines the 'weapons' char where the text is stored in.

    So you can for example use this:
    Code:
    menuopt->AddItem(text, x, y, xWeapon, &weapons, 1); // <- your menu char, max items = 2
    Then your source code could be:
    Code:
    switch(xWeapon && dwPlayer != 0)
    {
    case 0:
    *(DWORD*)dwPlayer+OFS_Weapon_1 = 1; //We set our nuckles
    *(DWORD*)dwPlayer+OFS_Weapon_2 = 1; //We set our nuckles
    *(DWORD*)dwPlayer+OFS_Weapon_3 = 1; //We set our nuckles
    break;
    
    case 2:
    *(DWORD*)dwPlayer+OFS_Weapon_1 = 7; //We set our DA_SWORD_JP
    *(DWORD*)dwPlayer+OFS_Weapon_2 = 7; //We set our DA_SWORD_JP
    *(DWORD*)dwPlayer+OFS_Weapon_3 = 7; //We set our DA_SWORD_JP
    break;
    }
    When we switch now you get the weapon that is showed on your text.

    I hope this helps

    i wish you have video so i can understand more easier that i think

    ---------- Post added at 04:19 AM ---------- Previous post was at 04:17 AM ----------

    Quote Originally Posted by F l a p J a c K ™ View Post
    Yhea go go go AeroMan ehehe
    YEAh gogogog !!

    ---------- Post added at 04:20 AM ---------- Previous post was at 04:19 AM ----------

    Quote Originally Posted by TrAdEMaRc View Post
    float ADR_Weapon1 = 7;
    float ADR_Weapon2 = 7;
    float ADR_Weapon3 = 7;
    how to use that please teach me can you be my teacher please

  15. #10
    F l a p J a c K ™'s Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    WarRock PH Force
    Posts
    1,737
    Reputation
    10
    Thanks
    1,472
    My Mood
    Bitchy
    wow titindi agad ng gs2 mo matutunan tol may alam ako kng san ka makakahanap ng gs2 mo add mo ehehe

    A good coder is someone who always looks both ways before crossing a one-way street.
    ~Doug Linder

    Ramzking Injector: Press Here
    MPGH member since: 07-18-2012











  16. The Following User Says Thank You to F l a p J a c K ™ For This Useful Post:

    haychickz (11-07-2013)

  17. #11
    killertime's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Posts
    367
    Reputation
    10
    Thanks
    221
    My Mood
    Cynical
    Quote Originally Posted by F l a p J a c K ™ View Post
    wow titindi agad ng gs2 mo matutunan tol may alam ako kng san ka makakahanap ng gs2 mo add mo ehehe
    cge san ako makaka hanap heheh sa google nag hanap na ako wala eh add san??

  18. #12
    F l a p J a c K ™'s Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    WarRock PH Force
    Posts
    1,737
    Reputation
    10
    Thanks
    1,472
    My Mood
    Bitchy
    huh??

    msgtooshort/

    A good coder is someone who always looks both ways before crossing a one-way street.
    ~Doug Linder

    Ramzking Injector: Press Here
    MPGH member since: 07-18-2012











  19. #13
    killertime's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Posts
    367
    Reputation
    10
    Thanks
    221
    My Mood
    Cynical
    Quote Originally Posted by F l a p J a c K ™ View Post
    huh??

    msgtooshort/
    FLAPJACK>>diba sabi mu sir may alam ka na makakahanap ng gusto ko???

    killertime>>reply ko dun san sir?? nag google na ako wala ako mahanap ehhh
    Flapjack >>>add mu
    killertime>> anu ang i add ko sir??



    MEsage to long ^_^

  20. #14
    F l a p J a c K ™'s Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    WarRock PH Force
    Posts
    1,737
    Reputation
    10
    Thanks
    1,472
    My Mood
    Bitchy
    Quote Originally Posted by killertime View Post
    FLAPJACK>>diba sabi mu sir may alam ka na makakahanap ng gusto ko???

    killertime>>reply ko dun san sir?? nag google na ako wala ako mahanap ehhh
    Flapjack >>>add mu
    killertime>> anu ang i add ko sir??



    MEsage to long ^_^

    makakabili ka ng hack at kng panu gumawa at mag update un ung ibig kong sabihin ..

    A good coder is someone who always looks both ways before crossing a one-way street.
    ~Doug Linder

    Ramzking Injector: Press Here
    MPGH member since: 07-18-2012











  21. #15
    killertime's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Posts
    367
    Reputation
    10
    Thanks
    221
    My Mood
    Cynical
    Quote Originally Posted by F l a p J a c K ™ View Post
    makakabili ka ng hack at kng panu gumawa at mag update un ung ibig kong sabihin ..
    ahhhhh get kona ahahhaha

Page 1 of 6 123 ... LastLast

Similar Threads

  1. I wanna make weapon hack but need help
    By allard123 in forum WarRock - International Hacks
    Replies: 13
    Last Post: 02-19-2007, 08:19 PM
  2. weapon hack?
    By MaskedFox in forum WarRock - International Hacks
    Replies: 0
    Last Post: 02-19-2007, 07:07 PM
  3. weapon hacks
    By pomchris69 in forum WarRock - International Hacks
    Replies: 9
    Last Post: 07-09-2006, 10:17 PM
  4. Wpe weapons hack how?
    By xterminator in forum WarRock - International Hacks
    Replies: 9
    Last Post: 03-17-2006, 02:44 PM
  5. [Searching] Weapons Hack
    By OutZida in forum WarRock - International Hacks
    Replies: 4
    Last Post: 01-19-2006, 12:06 PM