Page 2 of 3 FirstFirst 123 LastLast
Results 16 to 30 of 39
  1. #16
    14mth3v01d's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Location
    Photoshop<3
    Posts
    109
    Reputation
    16
    Thanks
    2,526
    My Mood
    Bitchy
    Nice base , might use this, and make a release. i'll be sure to give credits.

  2. #17
    iamspeedforyou's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    Look up.
    Posts
    88
    Reputation
    10
    Thanks
    54
    Quote Originally Posted by N3OH4X View Post
    Gonna use this for fun and release sometehing small lol.

    ---------- Post added at 05:21 PM ---------- Previous post was at 05:11 PM ----------

    eh there's a bug in the menu , great look btw! , when you want to open weapons to - it doesn't open but when you open visuals to - weapons and visuals open . just pointing that out haha .
    that is fixed by a simple line of code.
    just change
    Code:
    VOID hBuildItems( VOID )
    {
        hMenu->AddGroup( "[ Visual ]", &hGameFolder[1], hFld, 2 );
        if( hGameFolder[1] )
        {
            hMenu->AddItem( "Item 1", &hGameItem[1], hOpt, 2 );
            hMenu->AddItem( "Item 2", &hGameItem[2], hOpt, 2 );
        }
    
        hMenu->AddGroup( "[ Weapon ]", &hGameFolder[2], hFld, 2 );
        if( hGameFolder[1] )
        {
            hMenu->AddItem( "Item 3", &hGameItem[3], hOpt, 2 );
            hMenu->AddItem( "Item 4", &hGameItem[4], hOpt, 2 );
        }
    }
    to
    Code:
    VOID hBuildItems( VOID )
    {
        hMenu->AddGroup( "[ Visual ]", &hGameFolder[1], hFld, 2 );
        if( hGameFolder[1] )
        {
            hMenu->AddItem( "Item 1", &hGameItem[1], hOpt, 2 );
            hMenu->AddItem( "Item 2", &hGameItem[2], hOpt, 2 );
        }
    
        hMenu->AddGroup( "[ Weapon ]", &hGameFolder[2], hFld, 2 );
        if( hGameFolder[2] )
        {
            hMenu->AddItem( "Item 3", &hGameItem[3], hOpt, 2 );
            hMenu->AddItem( "Item 4", &hGameItem[4], hOpt, 2 );
        }
    }
    i have had no error with this, i have memory and PTC hacks in this right now.

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

    R4v0r (02-07-2013)

  4. #18
    R4v0r's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    London
    Posts
    234
    Reputation
    11
    Thanks
    142
    My Mood
    Amazed
    Quote Originally Posted by N3OH4X View Post
    Gonna use this for fun and release sometehing small lol.

    ---------- Post added at 05:21 PM ---------- Previous post was at 05:11 PM ----------

    eh there's a bug in the menu , great look btw! , when you want to open weapons to - it doesn't open but when you open visuals to - weapons and visuals open . just pointing that out haha .
    Just change the hGameFolder[1] to hGameFolder[2] under the hMenu->AddItem("[ Weapons ]", etc );

  5. #19
    iamspeedforyou's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    Look up.
    Posts
    88
    Reputation
    10
    Thanks
    54
    Quote Originally Posted by R4v0r View Post
    Just change the hGameFolder[1] to hGameFolder[2] under the hMenu->AddItem("[ Weapons ]", etc );
    hey bro, did you see that PM? and do you know how to do that 0.o

  6. #20
    R4v0r's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    London
    Posts
    234
    Reputation
    11
    Thanks
    142
    My Mood
    Amazed
    Quote Originally Posted by iamspeedforyou View Post
    hey bro, did you see that PM? and do you know how to do that 0.o
    I replied to your PM? Or again:

    First:
    Code:
    char* hOpt_Speed[] = {"[Off]","[Legit]","[Fast]"};//Add more if you want.
    Then:
    Code:
    hMenu->AddItem("Speed Hack", &MenuItem[YourValue], hOpt_Speed, 3);//String, The pointer to activate your hack, The options, size of options(3)

  7. #21
    Skaterforeva1's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Up your ass
    Posts
    936
    Reputation
    32
    Thanks
    485
    My Mood
    Psychedelic
    This base is to damn confusing... It literally took my like five minutes to find out where the menu is actually located, menu.h and menu.cpp just has what is used to draw the menu but not the actual menu itself.

    And why is Core.cpp not even included? That was the most confusing part of it all.

    /edit
    Didn't see the folder that had Core, idk why but i read it as External Dependencies because that is where it normally is LOL my bad
    Last edited by Skaterforeva1; 02-08-2013 at 05:20 PM.




    ^Suck it!

  8. #22
    iamspeedforyou's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    Look up.
    Posts
    88
    Reputation
    10
    Thanks
    54
    Quote Originally Posted by Skaterforeva1 View Post
    This base is to damn confusing... It literally took my like five minutes to find out where the menu is actually located, menu.h and menu.cpp just has what is used to draw the menu but not the actual menu itself.

    And why is Core.cpp not even included? That was the most confusing part of it all.

    /edit
    Didn't see the folder that had Core, idk why but i read it as External Dependencies because that is where it normally is LOL my bad
    her
    ok, its the easyest base i have ever read... my little brother could read and understand this without any C++ exp.
    ilove this base.

  9. #23
    Skaterforeva1's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Up your ass
    Posts
    936
    Reputation
    32
    Thanks
    485
    My Mood
    Psychedelic
    Quote Originally Posted by iamspeedforyou View Post
    her
    ok, its the easyest base i have ever read... my little brother could read and understand this without any C++ exp.
    ilove this base.
    Yes im starting to use it now and its making much more since, It just really pissed me off not being able to find where the menu was, I have done so much to it now its great I put in 17 features and im adding now, cant make up my mind if i should release it when im done or not lol




    ^Suck it!

  10. #24
    R4v0r's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    London
    Posts
    234
    Reputation
    11
    Thanks
    142
    My Mood
    Amazed
    Quote Originally Posted by Skaterforeva1 View Post
    Yes im starting to use it now and its making much more since, It just really pissed me off not being able to find where the menu was, I have done so much to it now its great I put in 17 features and im adding now, cant make up my mind if i should release it when im done or not lol
    If you can't find the Core folder, means someone fucked with my download, maybe a minion?

  11. #25
    merp.'s Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    147
    Reputation
    10
    Thanks
    301
    My Mood
    Bored
    Thanks for this! I like it, but my base is "neater". Hopefully I can learn some new things with this base.

  12. #26
    Skaterforeva1's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Up your ass
    Posts
    936
    Reputation
    32
    Thanks
    485
    My Mood
    Psychedelic
    Quote Originally Posted by R4v0r View Post
    Quote Originally Posted by Skaterforeva1 View Post
    Yes im starting to use it now and its making much more since, It just really pissed me off not being able to find where the menu was, I have done so much to it now its great I put in 17 features and im adding now, cant make up my mind if i should release it when im done or not lol
    If you can't find the Core folder, means someone fucked with my download, maybe a minion?
    Nah it's just the folder was collapsed so I didn't see it I miss took it for external dependencies. But it's all good now! Nice work




    ^Suck it!

  13. The Following User Says Thank You to Skaterforeva1 For This Useful Post:

    R4v0r (02-09-2013)

  14. #27
    Flengo's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    /admincp/banning.php
    Posts
    20,591
    Reputation
    5180
    Thanks
    14,178
    My Mood
    Inspired
    Quote Originally Posted by R4v0r View Post
    If you can't find the Core folder, means someone fucked with my download, maybe a minion?
    No one really will change the attachment after approval.
    I Read All Of My PM's & VM's
    If you need help with anything, just let me know.

     


     
    VM | PM | IM
    Staff Administrator Since 10.13.2019
    Publicist Since 04.04.2015
    Middleman Since 04.14.2014
    Global Moderator Since 08.01.2013
    Premium Since 05.29.2013

    Minion+ Since 04.18.2013

    Combat Arms Minion Since 12.26.2012
    Contributor Since 11.16.2012
    Member Since 05.11.2010


  15. #28
    Acea's Avatar
    Join Date
    Oct 2012
    Gender
    female
    Location
    Home of the elks
    Posts
    346
    Reputation
    80
    Thanks
    2,216
    My Mood
    Stressed
    Possible they did though :/

  16. #29
    giniyat101's Avatar
    Join Date
    Sep 2011
    Gender
    male
    Location
    Not telling.
    Posts
    1,935
    Reputation
    130
    Thanks
    1,380
    My Mood
    Dead
    Quote Originally Posted by ~FALLEN~ View Post
    It's source code noob... nothing to scan, that's like saying scan a text document... rofl
    feel the stupidity of mpgh rulez :P


     



    [img]https://i43.photobucke*****m/albums/e367/DeteSting/Steam-update.gif[/img]

  17. The Following User Says Thank You to giniyat101 For This Useful Post:

    ~FALLEN~ (02-10-2013)

  18. #30
    R4v0r's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    London
    Posts
    234
    Reputation
    11
    Thanks
    142
    My Mood
    Amazed
    Quote Originally Posted by giniyat101 View Post
    feel the stupidity of mpgh rulez :P
    Indeed. It went through us all

Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. Java based multiplayer games
    By Tops in forum Hack Requests
    Replies: 8
    Last Post: 03-13-2008, 11:28 PM
  2. How to may spawn on all bases
    By Naeron in forum WarRock - International Hacks
    Replies: 8
    Last Post: 05-13-2007, 07:44 PM
  3. Spawn on enemy base
    By analog70 in forum WarRock - International Hacks
    Replies: 36
    Last Post: 03-18-2007, 04:17 AM
  4. BASE Avversary
    By vers900 in forum WarRock - International Hacks
    Replies: 5
    Last Post: 03-14-2007, 11:51 PM
  5. Web-based game hacking..
    By Krilliam in forum General Game Hacking
    Replies: 7
    Last Post: 02-20-2006, 01:12 PM