Jump to content
Welcome, Guest
Existing user? Sign In

Sign In



Sign Up
The MatriX
  • Welcome To Ghbsys
  • CS GO Streaming Version is released. Have fun streaming while cheating!
  • Have a Payment Issue? Send us a Support ticket.
  • Make a thread if you need support or join our discord for live support.
  • Have Suggestions? Make a thread and you'll earn Ghbsys Points for implemented suggestions.
  • Join our discord to stay well connected! Don't forget to integrate your discord to the site
  • Welcome to [GHB] - GAmEhAcKbAsTaRdS Forum

    Welcome to [GHB] - GAmEhAcKbAsTaRdS Forum, like most online communities you must register to view or post in our community, but don't worry this is a simple free process that requires minimal information for you to signup. Be apart of [GHB] - GAmEhAcKbAsTaRdS Forum by signing in or creating an account.
    • Start new topics and reply to others
    • Subscribe to topics and forums to get email updates
    • Get your own profile page and make new friends
    • Send personal messages to other members.

    Programming Related

    Sub Category  

    16 files

    1. ReadWritinReadWritingMemorygMemory

      ReadWritingMemory "Required​" for the Trainer.


      How To use scroll down for the downloads

      ----------------------------------------­----
      Cheat Engine:
      ----------------------
      1. Download Cheat Engine
      2. Download The File "ReadWrite.."
      3. Open The Game
      4. Open Cheat Engine
      5. Attach the game process to cheat engine
      6. Search the current value
      7. Change the value in the game
      8. Search for the new value (keep searching until you find the correct address)
      ----------------------
      Visual Studio:
      ----------------------
      Open the File you downloaded "ReadWrite.." (DOWNLOADS ARE BELOW)
      1. You will need
      x1 Button
      x1 Textbox
      2. After you add the button and the textbox to your form double click on the Button and write the code you will find it below

      ----------------------------------------­----------------------------------------­------

      Download Cheat Engine: ➨ http://www.cheatengine.org/
      Download Visual Studio: ➨ https://www.visualstudio.com/fr/
      Download the File you need in to make Trainers works:
      ➨http://www.-!Forbidden Upload Site, please give me 3 days Suspend!-...ritingMemory.vb
      Download the code: ➨ http://www38.zippysh...36849/file.html
       
      ----------------------------------------­----------------------------------------­------
      Note:
      This is not working for all weapons if you want to do it, you should find the Right address of "Every Single" weapon.
      ----------------------------------------­----------------------------------------­------

      17 downloads

      0 comments

      Updated

    2. [PHP] Contact Form With Bootstrap

      I will release my own written easy contact form specially for you guys.
      Just edit your things @ the config.php included in the .zip file.
       
      Added:
      - Name field
      - Email field
      - Message field
      - Security Question
       

      43 downloads

      0 comments

      Submitted

    3. [PHP] Site checker

      Today i will release my PHP site checker.
      This checkt the following things:
      - HTTP
      - FTP
      - SMTP
      - POP3

      35 downloads

      0 comments

      Submitted

    4. D3D9 Base by KingClem | God-Cheater Relase

      Its a lil bit older,but anyways enjoy:
      cMenu.cpp

      #include "cMenu.h" /*INFORMATIONS =====POINT 1=====FUNCTIONS==== *Folder Function *Descrition Function *Colored Items *Arrow Control ====POINT 2===CREDITING==== *KingClem -Menu Class,Hooking,Examples.... *Hans211 -Some hints *MSDN -always helpfull ========================== */ int M_X,M_Y,i,u,Items,Position; int M_W = 210; //Menu widht int Line = 25; //Height of one Line int Visible = 1; //Visible by Startup? int Key = VK_INSERT; //Menu Key DWORD Col_Title = D3DCOLOR_ARGB(255,255,255,255); //Color Title DWORD Col_Cur = D3DCOLOR_ARGB(255, 255, 125, 000); //Color Current DWORD Col_On = D3DCOLOR_ARGB(255, 000, 255, 000); //Color ON DWORD Col_Off = D3DCOLOR_ARGB(255, 255, 000, 000); //Color OFF DWORD Col_Desc = D3DCOLOR_ARGB(255,255,0,0); //Color from the Description Text DWORD Col_Folder = D3DCOLOR_ARGB(255, 255, 255, 000) ; //Color for the Folder //Enable Descrition Box (You must fill it out self if you deactivate) BYTE Desc_Box_Enable = 1; //1 = Enabled,0 = Disabled struct Menu{ char *Name; int *options; char **Items; char *Description; int Max; int Type; }M_Struct[200]; //200 = Max Hacks...You can change it like you want //Adding a Hack to the Struct void cMenu::AddMenuOption(char *text,int *opt,char **ItemArray,char *ItemDescription,int Max,int Type) { M_Struct[items].Name = text;//adding text char to menu struct M_Struct[items].options = opt;//adding int to menu struct M_Struct[items].Items = ItemArray;//Adding Off/on chars to to menu struct M_Struct[items].Description = ItemDescription;//Adding item desc to menu struct M_Struct[items].Max = Max; //Adding max val to menu struct M_Struct[items].Type = Type; //Menuitem?MenuFolder? Items++;//One more Item } //Navigating the Menu void cMenu::Navigation() { int value; if (GetAsyncKeyState(Key)&1) Visible=(!Visible);//Visible Change if (Visible){//Is menu visible? value=0;//we make value to zero,to prevent errors if(GetAsyncKeyState(VK_DOWN)&1){//Down Arrow Position++;//calculating Position +1 if(M_Struct[Position].Name == 0)//if no text entred we calculate one back,so the user cant leave the menu Position--;//read above } if(GetAsyncKeyState(VK_UP)&1){//if pressing arrow up Position--; //calculating Position -1 if(Position == -1)Position=0;//If position is -1 ,position = 0,so we cant leave the menu } //if pressing right arrow else if(GetAsyncKeyState(VK_RIGHT)&1) { if(*M_Struct[Position].options < M_Struct[Position].Max-1)//Is options smaler then Maximal - 1? value++;//calculating value +1 } //If pressing left arrow else if((GetAsyncKeyState(VK_LEFT)&1) && *M_Struct[Position].options >0){//Is options bigger then 0 value--;//calculating value -1 } if(value){//value is not 0 *M_Struct[Position].options += value; if(M_Struct[Position].Type == FOLDER){ Items = 0; memset(&M_Struct,0,sizeof(M_Struct)); }//Ending Menu Rebuild }//Ending Value Change } //Ending Visible Check } void cMenu::DrawMenu(char *Title,int x,int y,ID3DXFont *pFont) { DWORD Item_Color;//The Variable for Item Color int i3;//Variable used for for(; D3D cD3D;//Initzializing the D3D Helper M_X = x+25;//Setting X Cord M_Y = y+25;//Setting Y Cord if(Visible){//Is Menu Visible? cD3D.DrawTextA(x+25,y,Col_Title,Title,pFont);//Drawing the Title for (i3=0; i3<Items; i3++) {//Check MSDN:http://msdn.microsoft.com/en-us/library/b80153d8%28v=vs.71%29.aspx if(*M_Struct[i3].options==0)//If option is 0 (off) Item_Color = Col_Off;//change Item Color to Color Off if(*M_Struct[i3].options>0)//If option is higher then 0 Item_Color = Col_On; //change Item Color to Color On if(M_Struct[i3].Type==FOLDER)//If type is folder Item_Color = Col_Folder;//change Item Color to Folder Color if(i3 == Position)//If current Item_Color = Col_Cur;//change Item Color to Current Color cD3D.DrawTextA(M_X,M_Y+Line*i3,Item_Color,M_Struct[i3].Name,pFont);//Drawing item text cD3D.DrawTextA(M_X+(M_W-20),M_Y+Line*i3,Item_Color,M_Struct[i3].Items[*M_Struct[i3].options],pFont);//Drawing Off/On Text /*Description Box*/ if(Desc_Box_Enable){ cD3D.DrawTextA(M_X+M_W+50,M_Y,Col_Desc,"Description:",pFont); cD3D.DrawTextA(M_X+M_W+50,M_Y+Line,Col_Desc,M_Struct[Position].Description,pFont);//Drawing the Desc Text }//ending descritiption box draw }//Ending the for statement }//Ending Visible check } cMenu.h

      #pragma once #include "D3D.h" #include <Windows.h> extern int Items,Key; #define FOLDER 2 #define ITEM 1 class cMenu { public: void AddMenuOption(char *text,int *opt,char **ItemArray,char *ItemDescription,int Max,int Type); void Navigation(); void DrawMenu(char *Title,int x,int y,ID3DXFont *pFont); }; D3D.cpp

      #include "D3D.h" //Little D3D Draw Class void D3D::DrawTextC(int x,int y,DWORD color,char *text, ID3DXFont* pFont1) { RECT rect; SetRect( &rect, x, y, x, y ); pFont1->DrawTextA(NULL,text,-1,&rect, DT_CENTER|DT_NOCLIP, color ); } void D3D::DrawTextA(int x,int y,DWORD color,char *text,ID3DXFont* pFont1) { RECT rect; SetRect( &rect, x, y, x, y ); pFont1->DrawTextA(NULL,text,-1,&rect, DT_LEFT|DT_NOCLIP, color ); } void D3D::DrawRect(IDirect3DDevice9* pDevice, int CordX, int CordY, int CordW, int CordH, D3DCOLOR Color) { D3DRECT Cords = { CordX, CordY, CordX + CordW, CordY + CordH }; pDevice->Clear(1, &Cords, D3DCLEAR_TARGET, Color, 0, 0); } D3D.h

      #pragma once #include <d3d9.h> #include <d3dx9.h> class D3D { public: void DrawTextC(int x,int y,DWORD color,char *text, ID3DXFont* pFont1); void DrawRect(IDirect3DDevice9* pDevice, int CordX, int CordY, int CordW, int CordH, D3DCOLOR Color); void DrawTextA(int x,int y,DWORD color,char *text,ID3DXFont* pFont1); }; First include : cMenu.h in your Main.
      Then add this:

      cHelper *Helper; //Initzializing our Helper Class cHook *Hook;//"" Hooking Class D3D *cD3D;// "" Helper Draw Class cMenu KC_Menu;//"" Menu Class ID3DXFont* pFont;//"" Font then you create a Void for the Menu Building:
      Example:

      //Adding menu items void MyMenu(void) { KC_Menu.AddMenuOption("Menu Settings",&Folder1,cFolder,"Here are the Menu Settings",2,FOLDER); if(Folder1){ KC_Menu.AddMenuOption("Change Key",&Change_Key,cKey,"Change the Menu Visbible Key",3,ITEM); //You can add thinks like change color,or menu widht or something } KC_Menu.AddMenuOption("Folder Two",&Folder2,cFolder,"This is another Folder",2,FOLDER); if(Folder2){ KC_Menu.AddMenuOption("Hack Two",&Example2,cNbr,"This is only another Example",101,ITEM); KC_Menu.AddMenuOption("BlaBla",&Example3,Off_On,"Well,nothing to say",2,ITEM); } } Then call it like this in your Endscene:

      if(Items==0){MyMenu(); }//if no items loadet,we do it KC_Menu.DrawMenu("KingClem's Public",50,30,pFont);//Drawing the Menu KC_Menu.Navigation(); //Menu Navigation
       
       
       

       
       
       
       
       
      Hooked Base Download:

      195 downloads

      0 comments

      Submitted

    5. Simple Application

      http://i.imgur.com/7ZxHD.png

      15 downloads

      0 comments

      Submitted

    6. TiendichKill's Spammer V1

      Spammer with HOtkeys
      Small game
      Hardbase
      Technobase
      Housetime
      and more!

      38 downloads

      0 comments

      Submitted

    7. Spambot v.4

      Spambot v.4 Hotykeys etc..

      101 downloads

      0 comments

      Updated

    8. 0 comments

      Submitted

    9. Injektor v0.1 by xDinqzl3umz & Intoxicated

      Hello Ghb, Members and staff ill Present my new Injektor with some funktions :

      CREDITS:Me(xDinqzl3umz),Intoxicated

      At first 2 ScreenZ:


      Radio Player :


      Funktions for Radio :

      Visible is Key F8 you can in game play and the player is in the background
      Show is Key F9 and the player show you the display

      Funktions for BunnyHop :

      Press F5 for start it ACHTUNG start this only in game or you pc lagg !
      Press F6 for disable the BunnyHop
      And F7 close the Programm


      Virustotal:http://www.virustotal.com/file-scan/reanalysis.html?id=1e4fc9dab15d8a1b66005c849e21cd1c10938140dfb418f63a0e51d2db7d5c83-1284313318


      98 downloads

      0 comments

      Submitted

    10. Metin2 Beta Hook ..PE..

      Orginal thread : http://forum.ghbsys.net/index.php?showtopic=27548
       
       
      thx

      209 downloads

      0 comments

      Submitted

    11. [WR]Neovo's Injector v1.1

      Neovo's Injector: v1.1

      179 downloads

      1 comment

      Submitted

    12. My New Spammer Update!!!!

      To try and to think

       
      No Dude Press: Tanks
       
      Virustotal Result: 1/42 (2.39%)
       
      It does not contain virus

      142 downloads

      0 comments

      Submitted

    13. COD6 PACKET

      PACKET COD6

      51 downloads

      0 comments

      Submitted

    14. TheILegend's Injector Base

      Virustotal - Scan

      279 downloads

      0 comments

      Submitted

    15. MSWINSCK.OCX

      MSWINSCK.OCX
       
      Virustotal für Mswinsck.ocx

      357 downloads

      0 comments

      Submitted

    16. WarRock Online Checker V3

      ViRuS???? NO!
       
       
       
       
      WROnlineChecker
       
      Virustotal für WRONLINECHECKER
       
       
       
      MSWINSCK.OCX
       
      Virustotal für Mswinsck.ocx

      858 downloads

      0 comments

      Submitted

    ×
    ×
    • Create New...