Page 1 of 7 123 ... LastLast
Results 1 to 15 of 100
  1. #1
    Nubzgetkillz's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    hacktown
    Posts
    838
    Reputation
    13
    Thanks
    411
    My Mood
    Amazed

    Nubzgetkillz's D3D Base | Tabs | Combat Arms

    OK, Lets get this Started!
    First of all, If any of you have a question that can be answered by google or the search button on these forums then please refrain from asking.. Other then that lets do this.


    Screen shot:



    Video:




    Features:
    • D3D Tabs
    • D3D Checkboxes
    • Others, Look inside and find out for yourself!



    How to add another Tab:
    Code:
    Tab4 = false; //unless you want it to show up when insert is pressed then put true
    Add this..
    Code:
    if(isMouseinRegion(200,300,200+50,300+25)){
    	if(GetAsyncKeyState(VK_LBUTTON)&1){
    		Close = false;
    		Tab1 = false; 
                    Tab2 = false;
    		Tab3 = false;
                    Tab4 = true;
    	}
    }
    Code:
    if(isMouseinRegion(200,300,200+50,300+25))
    Explanation: if(isMouseinRegion(X coord,Y coord,Xcoord+Width,Ycoord+Height)

    The width and height are the width and height of the box/Tab
    Drawing the Tab.
    Code:
    //Tab4 Box / Tab
    DrawBox(menux+150,menuy,70,25,Black,White,pDevice)  ;
    DrawText(menux+165,menuy+5,White,"Tab3", pDevice);
    I recomend you increase the x coord by 50 after adding new tab since the box sizes won't effect it. like it won't overlay another tab.
    for the text I increased about 5-15 so it doesn't stay in left corner kinda centered
    Code:
    if(Tab4 == true)
    {
    	DrawBox(menux+50,menuy,50,25,Black,Cyan,pDevice);
    	DrawText(menux+65,menuy+5,Cyan,"Tab4", pDevice);
    	DrawBox(menux,menuy+26,170,100,Black,White,pDevice  );//Main box with hacks
    	DrawBox(menux+5,menuy+40,10,10,Black,White,pDevice  );//hack2 box
    	DrawText(menux+20,menuy+37,White,"Hack4",pDevice);//hack2 text
    	//This checks if The checkbox is checked
    	if(isMouseinRegion(55,340,55+7,340+7)){
    		if(GetAsyncKeyState(VK_LBUTTON)&1){
    			hack4 =! hack4; 
    		}
    	}
    	//If checkbox is checked then the hack will be activated and the checkbox will be filled/checked/whatever
    	if(hack4) {
    	DrawBox(menux+5,menuy+40,10,10,Black,Cyan,pDevice)  ;//hack4 box turns it cyan
    	DrawText(menux+20,menuy+37,Cyan,"Hack4",pDevice);//hack4 text turns it cyan
    	DrawBox(menux+7,menuy+42,7,7,White,White,pDevice);//hack4
    checkbox fills the checkbox white. inside
    	}
    }
    For the checkboxes the ismouseinregion is same as the tabs.
    so do the same thing.
    Now to add some hacks.

    How to add Hacks into the source:
    declarations
    Code:
    hack4 = false; //unless you want it to be on at start. then true
    Code:
    if(hack4) {
        CrossHair(pDevice, Red);
    }
    simple as that. just replace hack4 with the hackname that u declared

    Questions feel free to ask as long as they weren't answered on google or search bar

    Please don't say this is messy.. Because I know it is. If you don't want to use it and think it is bad? Then please don't reply, use, or even think about this thread again ok bye!

    VirusScans:
    NubzD3DTabs.rar - Jotti's malware scan

    https://www.virustotal.com/file-scan/...915-1290637428


    Credits:
    Mostly Everyone (You know who you are)
    Solify - Original Base
    Rusty - Telling me how he does Tabs, Giving me functions
    CodeDemon - Thread on functions
    Whoever created some of the d3d functions I used
    (If I didn't add you and you know you need to be on credits tell me in a post)

    Please Thank, and Enjoy if you use.

    Last edited by Nubzgetkillz; 11-24-2010 at 03:27 PM.

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

    ғᴜᴋᴏᴊʀ (11-27-2010),..:Sasuke:.. (02-25-2011),Alessandro10 (02-12-2011),Amatowarrior (11-24-2010),bebopr (12-07-2010),Birtday (04-24-2012),Capevaldo (11-24-2010),DethBlaze (11-24-2010),diegosarria12 (03-01-2013),dllbase (11-24-2010),evilgaia (05-05-2012),eXaLtIc™ (11-24-2010),Gistix (05-10-2013),GodHack2 (11-24-2010),Hawk_ (12-05-2010),iDarkness (04-28-2012),iMelo~* (08-17-2012),justiniscool5 (11-24-2010),leoisso (02-11-2011),MEkhi2 (11-24-2010),Mr..Bob (02-17-2011),MrSkafighter (11-24-2010),NewCories (03-12-2011),nicolas175 (01-26-2011),o-o (11-28-2010),OMFGDUDE (10-06-2012),Otaviomorais (02-19-2013),picoruxo (04-21-2011),S0aD (02-12-2011),Skaterforeva1 (08-25-2011),The Decoder (02-11-2013),the grim reaper (01-24-2011),Turbulence (02-12-2011),Xmagz (05-08-2011),yaserifti1 (02-10-2011)

  3. #2
    DethBlaze's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Posts
    93
    Reputation
    30
    Thanks
    96
    Seems legit, cant wait to try it out!

  4. #3
    GodHack2's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    644
    Reputation
    38
    Thanks
    762
    My Mood
    Amused
    if you remove the binaries you won't need another scan

    //good job and thanks for sharing





    beat this bitches ^^^^^^^

    Current Stats : Bored :/


    Respect list :
    Crash !
    Gordon'
    Markoj

  5. #4
    Nubzgetkillz's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    hacktown
    Posts
    838
    Reputation
    13
    Thanks
    411
    My Mood
    Amazed
    Quote Originally Posted by GodHack2 View Post
    if you remove the binaries you won't need another scan

    //good job and thanks for sharing
    xD idk. .really

    Member since September 25, 2010

    Current Objectives:
    • Graduate college with a degree in Computer Science
    • Find a decent job in the Computer Science Field
    • Learn more programming languages

    Looking for Elo Boosting Job - League of Legends
    Looking for Bronze -> Gold Jobs


    Skype: whatthedream

  6. #5
    dllbase's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    IN YOUR %#$
    Posts
    117
    Reputation
    10
    Thanks
    19
    My Mood
    Cool
    im waiting..

  7. #6
    GodHack2's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    644
    Reputation
    38
    Thanks
    762
    My Mood
    Amused
    Quote Originally Posted by Nubzgetkillz View Post
    xD idk. .really
    nvm the rules says all attachments xD





    beat this bitches ^^^^^^^

    Current Stats : Bored :/


    Respect list :
    Crash !
    Gordon'
    Markoj

  8. #7
    Nubzgetkillz's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    hacktown
    Posts
    838
    Reputation
    13
    Thanks
    411
    My Mood
    Amazed
    Quote Originally Posted by GodHack2 View Post
    nvm the rules says all attachments xD
    xD, some minion any minion please get me 1 more virus scan? somehow lol. thanks bye /

    Quote Originally Posted by DethBlaze View Post
    Seems legit, cant wait to try it out!
    Quote Originally Posted by GodHack2 View Post
    if you remove the binaries you won't need another scan

    //good job and thanks for sharing
    Thanks to the both of you

    Member since September 25, 2010

    Current Objectives:
    • Graduate college with a degree in Computer Science
    • Find a decent job in the Computer Science Field
    • Learn more programming languages

    Looking for Elo Boosting Job - League of Legends
    Looking for Bronze -> Gold Jobs


    Skype: whatthedream

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

    GodHack2 (11-24-2010)

  10. #8
    whit's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7,159
    Reputation
    490
    Thanks
    2,253
    /Appoved
    Prolly the last approval ill do..

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

    Nubzgetkillz (11-24-2010)

  12. #9
    GodHack2's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    644
    Reputation
    38
    Thanks
    762
    My Mood
    Amused
    Quote Originally Posted by whit View Post
    /Appoved
    Prolly the last approval ill do..
    wa wa what ?

    last ?/





    beat this bitches ^^^^^^^

    Current Stats : Bored :/


    Respect list :
    Crash !
    Gordon'
    Markoj

  13. #10
    Nubzgetkillz's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    hacktown
    Posts
    838
    Reputation
    13
    Thanks
    411
    My Mood
    Amazed
    Quote Originally Posted by whit View Post
    /Appoved
    Prolly the last approval ill do..
    Thanks Whit, And I love you man.
    If you stop now. just don't leave

    Member since September 25, 2010

    Current Objectives:
    • Graduate college with a degree in Computer Science
    • Find a decent job in the Computer Science Field
    • Learn more programming languages

    Looking for Elo Boosting Job - League of Legends
    Looking for Bronze -> Gold Jobs


    Skype: whatthedream

  14. #11
    whit's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7,159
    Reputation
    490
    Thanks
    2,253
    Quote Originally Posted by GodHack2 View Post
    wa wa what ?

    last ?/
    Im resigning..
    Hopefully ill get GH..

  15. #12
    Nubzgetkillz's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    hacktown
    Posts
    838
    Reputation
    13
    Thanks
    411
    My Mood
    Amazed
    Quote Originally Posted by whit View Post


    Im resigning..
    Hopefully ill get GH..
    You will and you deserve it.
    Good Minion, better GH

    lol GH = Game Hacking Team? or what


    Member since September 25, 2010

    Current Objectives:
    • Graduate college with a degree in Computer Science
    • Find a decent job in the Computer Science Field
    • Learn more programming languages

    Looking for Elo Boosting Job - League of Legends
    Looking for Bronze -> Gold Jobs


    Skype: whatthedream

  16. #13
    Moothew =^_^='s Avatar
    Join Date
    Oct 2010
    Gender
    female
    Posts
    148
    Reputation
    10
    Thanks
    56
    My Mood
    Amazed
    Quote Originally Posted by whit View Post
    /Appoved
    Prolly the last approval ill do..
    Because of this?

    [MPGH]whit

  17. #14
    Nubzgetkillz's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    hacktown
    Posts
    838
    Reputation
    13
    Thanks
    411
    My Mood
    Amazed
    Quote Originally Posted by Moothew =^_^= View Post
    Because of this?

    [MPGH]whit
    Lol, of this post? probably not. he told me why he was resigning! WHIT DON't STOP... BELIEVING!!

    Member since September 25, 2010

    Current Objectives:
    • Graduate college with a degree in Computer Science
    • Find a decent job in the Computer Science Field
    • Learn more programming languages

    Looking for Elo Boosting Job - League of Legends
    Looking for Bronze -> Gold Jobs


    Skype: whatthedream

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

    whit (11-24-2010)

  19. #15
    BSOD's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    181
    Reputation
    31
    Thanks
    35
    Quote Originally Posted by whit View Post


    Im resigning..
    Hopefully ill get GH..
    Niqqa plox. You think you deserve GH?

























    Cause you do /

  20. The Following User Says Thank You to BSOD For This Useful Post:

    whit (11-24-2010)

Page 1 of 7 123 ... LastLast