Results 1 to 14 of 14
  1. #1
    GER-Domi.'s Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    277
    Reputation
    15
    Thanks
    823
    My Mood
    Cool

    need help with coding vip console

    hi guis i code a vip console who show me the address of senkeys from visual basic menue > simple method to make d3d menue without bypass

    can someone edit my code please :
    - if i give in a address the and press enter the screen is clean but i can make it only 1 times becouse after it says "press any key" then it is close .. what can i do?

    Code:
    #include <iostream>
    
    using namespace std;
    
    
    int main()
    {
    	float  address;
    	cin  >>  address;
    	system ("CLS");
        
    		system("pause");
    	return 0;
    }

  2. The Following 2 Users Say Thank You to GER-Domi. For This Useful Post:

    thewolf2009 (09-08-2010),[Banned]mark0108 (09-08-2010)

  3. #2
    MiNT's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    551
    Reputation
    266
    Thanks
    2,559
    My Mood
    Psychedelic
    ill help you but i need to know what you want lol.

    from what i see is that this is a console application that asks the person for the input of a floating value, then it clears the screen and asks the person for press any key to continue and in this case exit because the return 0 is right after the system("pause");

  4. #3
    GER-Domi.'s Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    277
    Reputation
    15
    Thanks
    823
    My Mood
    Cool
    Hmmm ok i will try it without return 0 ( i will show you all what i mean later! ) becouse i hate z8games > they spy out our codes

  5. #4
    MiNT's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    551
    Reputation
    266
    Thanks
    2,559
    My Mood
    Psychedelic
    lol DONT TAKE THE >>return 0;<< OUT !! your return type is int .. so you will get a compiler error, unless you change it to >>void<< main

    well PM me your msn/yahoo/skype or wt ever u use to talk and it would be easier.

  6. #5
    GER-Domi.'s Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    277
    Reputation
    15
    Thanks
    823
    My Mood
    Cool
    ok i explane now >

    i need a console:

    i used this code for a console but there is a loop missing and i don t know how to code a loop > becouse i m still learning c++ someone have to edit this code and add a loop

    Code:
    #include <iostream>
    
    using namespace std;
    
    int main()
    
    {
        float address;
    	cin >> address;
    
    		system("pause");
    }
    what the programm have to do:
    - if i type a adress like this in it: 0x97342 and i press enter the console have to be empty and ... i can do it again.. type a adress in it and if i press enter again its empty again. <<< please add this on the code

  7. #6
    bandi94's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    88
    Reputation
    10
    Thanks
    14
    My Mood
    Inspired
    Haha you start code a vip hack and you now learning c++ haha and what you make whit your vip sell for 20$ haaha lol learn all of c++ and after start coding vip =))

  8. #7
    lauwy's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    522
    Reputation
    19
    Thanks
    1,106
    system ("CLS"); = clean every thing in the window :P

    You mean:

    Code:
    #include <iostream>
    
    using namespace std;
    
    int main()   {
        float address;
        While(true) {
           system("cls");
           cin >> address;
           cout << address;
        }
        system("pause");
    }
    But saving a address in a float?

    And how do you want to put this in crossfire?
    Last edited by lauwy; 09-07-2010 at 02:06 AM.
    Need some help to get back on track

    Find the pointer to the D3D9 Device (Not usefull for Cross)

    https://www.mpgh.net/forum/242-crossf...ice-lauwy.html

    Fix olly if scanning doesn't work

    https://www.mpgh.net/forum/242-crossf...ing-fails.html

    Unpack cshell.dll

    https://www.mpgh.net/forum/242-crossf...shell-dll.html

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

    GER-Domi. (09-07-2010)

  10. #8
    MiNT's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    551
    Reputation
    266
    Thanks
    2,559
    My Mood
    Psychedelic
    -.- you cant save an address into a float and expect to be able to add it into the game, in the game engine its saved as integer, lol lauwly, you released a version of cheat engine.. you should have noticed that you are looking and finding things as an integer. the address it self is made up of a hexadecimal string

    here is an edit to lauwly's code
    Code:
    #include <iostream>
    #include <string>
    #include <stdlib.h>
    using namespace std;
    int main ()
    {
         string address;
         while(1)
         {
              cout << "input an address : ";
              cin >> address;
              cout << "\nthe address you just gave me is : " << address;
              system("pause");
              system("CLS");
         }
    return 0;
    }
    Last edited by MiNT; 09-07-2010 at 08:13 AM.

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

    GER-Domi. (09-07-2010)

  12. #9
    GER-Domi.'s Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    277
    Reputation
    15
    Thanks
    823
    My Mood
    Cool
    ---# request CLOSE!---
    i have now the right one,.. mahetamim helped me successfull! thx to lauwy too!
    but it is not the same code as the posted codes xD,.. i only edit both and add it together

  13. #10
    lauwy's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    522
    Reputation
    19
    Thanks
    1,106
    look @ my command:

    But saving a address in a float?

    Need some help to get back on track

    Find the pointer to the D3D9 Device (Not usefull for Cross)

    https://www.mpgh.net/forum/242-crossf...ice-lauwy.html

    Fix olly if scanning doesn't work

    https://www.mpgh.net/forum/242-crossf...ing-fails.html

    Unpack cshell.dll

    https://www.mpgh.net/forum/242-crossf...shell-dll.html

  14. #11
    MiNT's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    551
    Reputation
    266
    Thanks
    2,559
    My Mood
    Psychedelic
    Quote Originally Posted by lauwy View Post
    look @ my command:

    But saving a address in a float?

    huh ? lol
    wt i tried to say is an address MOST of the time contains charecters other than numbers in it, like 1002BAC2. that address CANNOT BE SAVED IN A FLOAT, if you do, what you compiler will do is convert the letters into valid floating point types from this table https://www.hobbyprojects.com/ascii-t...cii-table1.gif and store them into the float address, or it will NOT except those charecters or letters as a part of the float and will forget about them (depends on your compiler).

    what i mean is, if you put an address into this program
    Code:
    #include <iostream>
    #include <stdlib.h>
    using namespace std;
    
    void main()
    {
    	while (1)
    	{
    		float address;
    		cout << "input an address : ";
    		cin >> address;
    		cout << "here is the address you just typed : " << address << "\n\n" ;
    		system("pause");
    		system("CLS");
    		fflush(stdin);
    	}
    }
    this is what you will get


    but if you did ur address as a string like this program
    Code:
    #include <iostream>
    #include <stdlib.h>
    #include <string>
    using namespace std;
    
    void main()
    {
    	while (1)
    	{
    		string address;
    		cout << "input an address : ";
    		cin >> address;
    		cout << "here is the address you just typed : " << address << "\n\n" ;
    		system("pause");
    		system("CLS");
    	}
    }
    this will be you output, and im preaty sure this is what you want


    THANK ME CUZ I KNO I HELPED U
    and i did this out of bordum, so talk to me and make me not bored lol

  15. #12
    jany's Avatar
    Join Date
    Sep 2010
    Gender
    female
    Posts
    56
    Reputation
    10
    Thanks
    15
    My Mood
    In Love
    die idee war gaystar die console zu zeigen und du verkaufst es als vip hack tzz.... das is nich grade lieb ich hoffe ich werd in credits erwähnt

  16. #13
    GER-Domi.'s Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    277
    Reputation
    15
    Thanks
    823
    My Mood
    Cool
    1. Das ist meine idee 2. Wer zum fick ist gaystar? 3. Ist die console nur ein kleiner teil vom VIP und auserdem gibt's ja noch Public hacks ,... 4 warum sollte ich dich in die credits List schreiben ? Du hast nicht mit gecoded und nix gemacht ... Gtfo

  17. #14
    jany's Avatar
    Join Date
    Sep 2010
    Gender
    female
    Posts
    56
    Reputation
    10
    Thanks
    15
    My Mood
    In Love
    gaystar is ein guter kumpel von mir und es war seine idee naja was solls tu was du willst

Similar Threads

  1. [HELP] Need help with code. REWARD
    By deadskulz in forum Visual Basic Programming
    Replies: 14
    Last Post: 05-24-2010, 05:35 AM
  2. Need help with the VIP hack
    By dickos in forum WarRock - International Hacks
    Replies: 3
    Last Post: 04-22-2010, 04:12 AM
  3. i need help with the vip hack plz
    By lucifer4601 in forum Combat Arms Discussions
    Replies: 0
    Last Post: 02-24-2010, 06:49 PM
  4. I need help with codes
    By MATTHEW4422 in forum Combat Arms Help
    Replies: 0
    Last Post: 10-31-2009, 04:41 PM