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.

    Basti

    Special Member
    • Posts

      9
    • Joined

    • Last visited

    Posts posted by Basti

    1. lol, gerechter Gebrauch die php Kodierung ist es easer und noch wird nicht ermittelt werden.

       

       

      well there some people asking me for some basics latley so i diseded to upload that so people stop anpying me xD

    2. I just wanted to say i changed my ip address

      ^^ and i will be back in hacking ^^ hail

      router

       

       

      Well all i got to say ... i dont realy think it is your ip...

       

      the problem is in aao when you get a hardwareban from pb it is your mac adress as far as i know from the router that tey ban ...ore mac of your network interface...

       

      Hardware bans are cause when you react against pb... like bypass

    3. Here are some basics in c++ for everyone how wnat o learn it

       

      ********************************************************************************

      *************************************************

      ********************************************************************************

      *************************************************

      ********************************************************************************

      *************************************************

       

      -----------------------------------------------------------------------------

      Jusing Strings in c++

      -----------------------------------------------------------------------------

      /**********************************************
      **			created by Hooligan8x			  **
      **			how to handel strings				**
      **	  with some othere string funktion examples		 **
      ***********************************************/
      
      #include <iostream>
      #include <string>
      #include <stdio.h>
      #include <conio.h>
      
      std::string first_name; //Name of the Author
      std::string last_name;
      std::string full_name;
      std::string part;
      int main(){
      
      first_name ="Hooligan";
      last_name = "8x";
      full_name = first_name + last_name; //Strings can be added together with an +
      std::cout << "The hole name is " << full_name <<'\n';
      
      std::cout <<full_name << " is " << full_name.length() <<" long! \n";
      //-->full_name.length() give the length of the string back<--
      
      part = full_name.substr(3,5);
      //-->.substr(first , last) is cuting out the part between 3 and 5 in that example 
      std::cout << "part of it from 3 too 5 is " << part <<" !!\n";
      
      
      getch();
      return 0;
      }
      
      ********************************************************************************
      *************************************************
      ********************************************************************************
      *************************************************
      ********************************************************************************
      *************************************************
      
      
      
      
      -----------------------------------------------------------------------------
      Jusing Pointers for 2 diferent Memory Types
      Heap = Main memory area 
      stack = Temporary ram 
      -----------------------------------------------------------------------------
      
      /*****************************************************************************
      ******************************************************************************
      **						Created by Hooligan8x							**
      **			How to make Pointers and deltete them again						 **	
      **							on local and heap						   **
      ******************************************************************************
      ******************************************************************************/
      
      
      #include <conio.h>
      #include <stdio.h>
      
      int main() {
      
      int local = 123;			//Local var. is not on the heap where programs put there adresses
      int *plocal = &local;		//Adress for loacl var.  
      							// & <- Adressoperator
      							// * <- Indirection operator
      							//it is local so no need to delet it 
      							//casue the program will delete it by it selfe
      int *pHeap = new int;		//reserve the memory in the heap
      							//-->new reservs the heap memory and returns the adress of it
      *pHeap =12345;				// Gives a value to the heap
      
      printf("------------------------------------\n");
      printf("Resrving and deleating of pointers-!\n");
      printf("------------------------------------\n");
      printf("\n");
      
      printf("Value of local Variable			:%d\n", local);
      printf("Adress of local				:%X\n", plocal);
      printf("Value of the pHep-Pointer		:%d\n", *plocal);
      printf("\n");
      
      printf("Adress of Heap-Pointer			:%X\n", pHeap);
      printf("Value of Heap-Adress			:%d\n", *pHeap);
      printf("Adress of pHeap-Pointer			:%X\n", &pHeap);
      printf("\n");
      
      delete pHeap;				// needed to be done to get the reserverd heap free again. 
      							//if you dont do you will fill p yor rams and thats not good.. 
      							// cause you need to reboot your system othere wise it wold not be 
      							//geting free again
      
      getch();
      return 0;
      }

      If you have any questions contackt me...

      i will post some new things soon

    4. [xD] Why?

      LOL i just dont like anemy...

       

      Did you do them your selfe??? Well my n isnt the best but... it is my mice i juse...

       

      will do myn in a bit after my damn test for exam are over...

       

      Hardest part will be Programing ... goes 3 hours and we have no idear what we get there so we have to learn everything...

      Langewich c++ java and php... lol so what the fuck are they doing with use there

    5. ---------

       

      I have ALOT of Edward Icons, but I can't pick one. They are all very interesting and designed well. I finally got to the final 4 best logos, and im wondering,"What logo would you pick?".

      Don't need to rate them if you want, um.. Arg? The 4 I am currently trying to pick as my gamehackbastards Forums logo.

      Here they are:

       

      1. th5970a4ec.gif

       

      2. forgiveme.jpg

       

      3. 66.jpg

       

      4. i51.jpg

       

      ---------

       

      [i dont mind if you make suggestions or comments]

      [i was going to make this into a poll, but.. Oh well.]

       

      ~Arg

       

      Well i dont like any one them above....

    ×
    ×
    • Create New...