Search:

Type: Posts; User: valt

Search: Search took 0.01 seconds.

  1. Thread: Recieve packets

    by valt
    Replies
    9
    Views
    1,802

    Wow thats a very very very very good tutorial......

    Wow thats a very very very very good tutorial... Thanks a lot! I found it hard to find one as good as that so i just was using msdn reference.

    thanks
  2. Thread: Recieve packets

    by valt
    Replies
    9
    Views
    1,802

    Thanks! , but im getting an error saying...

    Thanks!


    , but im getting an error saying that when I



    recv(theSocket,buffer,256,0);
  3. Thread: Recieve packets

    by valt
    Replies
    9
    Views
    1,802

    heheh sorry.. so when i use the recv function...

    heheh sorry..

    so when i use the recv function it stores the packets in "buffer"?

    How do i display them?

    cout<<buffer<<endl;?

    And to constantly record packet I just put it threw a infinite...
  4. Thread: Recieve packets

    by valt
    Replies
    9
    Views
    1,802

    Recieve packets

    int main(void)
    {
    WORD sockVersion;
    WSADATA wsaData;
    int nret;

    sockVersion = MAKEWORD(1, 1);


    WSAStartup(sockVersion, &wsaData);
  5. Thread: Read Packets

    by valt
    Replies
    3
    Views
    1,281

    hehe sorry.. Ya knows the program Windows Packet...

    hehe sorry.. Ya knows the program Windows Packet editor... It reads packets and then you can edit them and resend them and such. I basicly want to know how to read packets in c++ in order to make a...
  6. Thread: Read Packets

    by valt
    Replies
    3
    Views
    1,281

    Read Packets

    Hey, I'm stumped... How would I go about reading packets from a target window?

    Thanks!
  7. Replies
    4
    Views
    1,060

    http://mech.math.msu.su/~vfnik/WinApi/other/virtua...

    http://mech.math.msu.su/~vfnik/WinApi/other/virtualkeycodes.html

    my bad... for thinking there was VK_A.... =( crap I think in VB you can use VK_A...

    I know what you guys mean now.. thanks!
  8. Replies
    4
    Views
    1,060

    How can I get this to work? how do I add...

    How can I get this to work?

    how do I add VK_+value to equal a(n) parameter?

    Thanks
  9. Replies
    4
    Views
    1,060

    int to parameter anyway? casting?

    void CProcess::SendText(char input[])
    {
    HWND hWnd;
    int count, number_of_output = sizeof(input);
    hWnd = FindWindow(0, "Nexus");

    ShowWindow(hWnd, SW_SHOW);
    SetForegroundWindow(hWnd);...
  10. Thread: WinAble.h help

    by valt
    Replies
    5
    Views
    3,088

    NvM I need to use sendinput function, thanks!...

    NvM I need to use sendinput function, thanks! Like you said above
  11. Thread: WinAble.h help

    by valt
    Replies
    5
    Views
    3,088

    Another problem arises =( void...

    Another problem arises =(



    void CProcess::SendText()
    {
    HWND hWnd;

    hWnd = FindWindow(0, "Nexus");
  12. Thread: WinAble.h help

    by valt
    Replies
    5
    Views
    3,088

    Thanks a lot..! Umm so what would WM_SETTEXT...

    Thanks a lot..!

    Umm so what would WM_SETTEXT be? Can I just pass null in there? Also, to send like the tab key or shift or left error ect..ect.. Would I just type TAB without quotes ect.. ect..?...
  13. Thread: WinAble.h help

    by valt
    Replies
    5
    Views
    3,088

    WinAble.h help

    OK..! I know I use WinAble.h to send text to a target window, but how? With which function?

    My best guess is SendMessage(); , but I dont get it... You have to pass the handle, then 3 unsigned...
  14. Replies
    13
    Views
    1,332

    #include struct numbers { int...

    #include <stdio.h>


    struct numbers
    {
    int number[1][4];
    int win;
    int loss;
    };
  15. Replies
    13
    Views
    1,332

    omg are you serious.. lol Thanks, ill try this...

    omg are you serious.. lol Thanks, ill try this when i get at school
  16. Replies
    13
    Views
    1,332

    Help with my code plz!

    #include <stdio.h>
    struct numbers
    {
    int number[1][4];
    }

    void calculate (int weeks)

    {
    struct numbers week_number[weeks];
  17. Thread: Help

    by valt
    Replies
    8
    Views
    1,481

    1) I will try this... but i've never heard of...

    1) I will try this... but i've never heard of this before and have no experience working with API's

    2)Could'nt I have a timer or something to prevent that from happening...


    3) yes, the...
  18. Thread: Help

    by valt
    Replies
    8
    Views
    1,481

    XP/Borland C++ Compiler 5.5 Just need...

    XP/Borland C++ Compiler 5.5

    Just need something like


    Read Memory address(From other process)
    save memory address
    store memory address as a variable
    and then do this following code basicly
  19. Thread: Help

    by valt
    Replies
    8
    Views
    1,481

    Neither... A very smart macro... That points to...

    Neither... A very smart macro... That points to memory addresses inside a game and reads the value. See, in this game walking cordinates are saved inside a memory address as possitive integers. So...
  20. Thread: Help

    by valt
    Replies
    8
    Views
    1,481

    Help

    Hello, I would like to read another processes memory.. Is this possible in C? I've searched all over and have been getting weird stuff with C#....

    If you could please post some sample code...
    ...
Results 1 to 20 of 20