Page 2 of 3 FirstFirst 123 LastLast
Results 16 to 30 of 41
  1. #16
    Xempax's Avatar
    Join Date
    May 2013
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    1
    My Mood
    Cool
    Quote Originally Posted by gorno01 View Post
    As I made this application on a 64bit windows 8 computer it is very hard to make it compatible with windows xp and 32bit. Make sure that you have the latest .NET frameworks installed as this may fix your problem. I can't test it because I don't have a 32 bit computer.
    OK, i see, thx for your suggestion, but i have installed all the .Net framework (until 4 for XP), maybe it's not work in XP because in windows 8, they have .Net frameworks 4.5
    Btw, good job man

  2. The Following User Says Thank You to Xempax For This Useful Post:

    gorno01 (06-22-2013)

  3. #17
    gorno01's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    The Matrix
    Posts
    122
    Reputation
    10
    Thanks
    830
    My Mood
    Bored
    Quote Originally Posted by dhodsnette View Post
    I dont think so.. this is coding with c# I think this no need for .NET framework thing
    C# requires .NET Framework. It's not working on XP because the program uses 4.5 which is not available for XP.

  4. #18
    dhodsnette's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Location
    onlinegamehacking.******.***
    Posts
    46
    Reputation
    10
    Thanks
    34
    My Mood
    Cool
    alright dude got it

  5. #19
    PPCINJ's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    NRF
    Posts
    317
    Reputation
    10
    Thanks
    1,676
    My Mood
    Innocent
    Quote Originally Posted by gorno01 View Post
    C# requires .NET Framework. It's not working on XP because the program uses 4.5 which is not available for XP.
    Check this out (Option Target Framework):



    And this (Option Platform Target):

    Last edited by PPCINJ; 06-22-2013 at 12:47 PM.





  6. The Following 2 Users Say Thank You to PPCINJ For This Useful Post:

    dhodsnette (06-22-2013),gorno01 (06-22-2013)

  7. #20
    Ganja_Smoker's Avatar
    Join Date
    May 2013
    Gender
    male
    Posts
    335
    Reputation
    10
    Thanks
    596
    nice works fine just an good macro

  8. #21
    dhodsnette's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Location
    onlinegamehacking.******.***
    Posts
    46
    Reputation
    10
    Thanks
    34
    My Mood
    Cool
    Quote Originally Posted by PPCINJ View Post
    Check this out (Option Target Framework):



    And this (Option Platform Target):


    I see clearly now, thanks dude

  9. #22
    PPCINJ's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    NRF
    Posts
    317
    Reputation
    10
    Thanks
    1,676
    My Mood
    Innocent
    Quote Originally Posted by dhodsnette View Post
    I see clearly now, thanks dude
    That was ment for the developer, not for you





  10. #23
    gorno01's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    The Matrix
    Posts
    122
    Reputation
    10
    Thanks
    830
    My Mood
    Bored
    Quote Originally Posted by PPCINJ View Post
    Check this out (Option Target Framework):



    And this (Option Platform Target):

    Wow I never knew you could do that! I'll use it next time. I've still got a hell of a lot to learn.

  11. #24
    dhodsnette's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Location
    onlinegamehacking.******.***
    Posts
    46
    Reputation
    10
    Thanks
    34
    My Mood
    Cool
    Quote Originally Posted by PPCINJ View Post
    That was ment for the developer, not for you
    I appreciate it, thanks anyway dude

  12. #25
    PPCINJ's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    NRF
    Posts
    317
    Reputation
    10
    Thanks
    1,676
    My Mood
    Innocent
    Why dont you replace this:
    Code:
    switch (GetAsyncKeyState(Keys.LButton))
        {
            case 1:
            case -32768:
                this.Middown();
                this.Midup();
                break;
        }
    with this:

    Code:
    int x= GetAsyncKeyState(Keys.LButton)
    if (x==-32768))
    {
                Middown();
                Midup();
    }
    This would actually improve the performace.

    And where the Fuck are the Credits? I know very well that you followed my tutorial. And there I've written you should mention me. Don't wanna play Police now, but a mention costs nothing.
    Last edited by PPCINJ; 06-22-2013 at 03:49 PM.





  13. #26
    nandin77's Avatar
    Join Date
    May 2012
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    se agradece el esfuerzo,entiendo que actualmente no se trabaja xp 32,,,pero la mayoria de usuarios seguimos utilizando xp 32,,fabriquen para nosotros tambien.
    Last edited by nandin77; 06-22-2013 at 05:08 PM.

  14. #27
    PPCINJ's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    NRF
    Posts
    317
    Reputation
    10
    Thanks
    1,676
    My Mood
    Innocent
    Quote Originally Posted by nandin77 View Post
    se agradece el esfuerzo,entiendo que actualmente no se trabaja xp 32,,,pero la mayoria de usuarios seguimos utilizando xp 32,,fabriquen para nosotros tambien.
    I'm very sorry, but XP may be not aviable. It will be aviable if he follow my hint





  15. #28
    dhodsnette's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Location
    onlinegamehacking.******.***
    Posts
    46
    Reputation
    10
    Thanks
    34
    My Mood
    Cool
    dude.. the x9 really effective it taunts enemies ^_^

    whos that girl in your signature, regards me to her

  16. #29
    gorno01's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    The Matrix
    Posts
    122
    Reputation
    10
    Thanks
    830
    My Mood
    Bored
    Quote Originally Posted by PPCINJ View Post
    Why dont you replace this:
    Code:
    switch (GetAsyncKeyState(Keys.LButton))
        {
            case 1:
            case -32768:
                this.Middown();
                this.Midup();
                break;
        }
    with this:

    Code:
    int x= GetAsyncKeyState(Keys.LButton)
    if (x==-32768))
    {
                Middown();
                Midup();
    }
    This would actually improve the performace.

    And where the Fuck are the Credits? I know very well that you followed my tutorial. And there I've written you should mention me. Don't wanna play Police now, but a mention costs nothing.
    I didn't use your tutorial dude. And my code is already like you suggested. Thanks for the advice though.

  17. #30
    Medonho's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Location
    Brazil
    Posts
    271
    Reputation
    10
    Thanks
    25
    My Mood
    Aggressive
    @gorno01 your macro reduce the time to load weapon, but reduces recoil? give a better rof? just asking. thank you

Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. Bypass premium, speedhack, wallhack, macro and more...
    By Xeg in forum Knight Online Hacks
    Replies: 31
    Last Post: 04-16-2007, 05:03 PM
  2. Gunz Macro
    By DarkHero006 in forum Gunz General
    Replies: 5
    Last Post: 11-14-2006, 11:16 AM
  3. Crazy macro :P
    By sf0d in forum General Gaming
    Replies: 1
    Last Post: 06-22-2006, 11:28 AM
  4. Macro SS
    By EleMentX in forum Gunz General
    Replies: 1
    Last Post: 05-16-2006, 02:07 AM