Page 1 of 2 12 LastLast
Results 1 to 15 of 28
  1. #1
    HeXel's Avatar
    Join Date
    Apr 2007
    Gender
    male
    Location
    Portugal
    Posts
    1,093
    Reputation
    40
    Thanks
    57
    My Mood
    Amused

    Can anyone translate this code ?

    Can anyone translate this code :
    Code:
    bool StemOn = false;
    While(true)
    {
        if(StemOn){WriteProcessMemory(AntiNoobIsGay);
        if(kbhit)
        {
         char SomeTempFrenchieLonerChar_AntiNoob = ' ';
         SomeTempFrenchieLonerChar_AntiNoob = getch();
         switch(SomeTempFrenchieLonerChar_AntiNoon)
         {
               case 'a': //For AntiNoob Is Gay
               If(StemOn/*Tis A Bool*/){StemOn = false;}else{StemOn = true;}
         }
    }

  2. #2
    RGewrsgywergeryt4yerhrh's Avatar
    Join Date
    Oct 2007
    Gender
    male
    Posts
    89
    Reputation
    9
    Thanks
    39
    Translate? how translate? like tell you what it does? or what ?

  3. #3
    radnomguywfq3's Avatar
    Join Date
    Jan 2007
    Gender
    male
    Location
    J:\E\T\A\M\A\Y.exe
    Posts
    8,858
    Reputation
    381
    Thanks
    1,823
    My Mood
    Sad
    Lol, thats my code, I made it when I was pissed of at antinoob, which is now banned I think. Anyway, what is it you want me to do for you?



    There are two types of tragedies in life. One is not getting what you want, the other is getting it.

    If you wake up at a different time in a different place, could you wake up as a different person?


  4. #4
    Dec0r87930's Avatar
    Join Date
    Jan 2008
    Location
    DetRoit :D
    Posts
    934
    Reputation
    20
    Thanks
    84
    Tell him what the code means/does ...

  5. #5
    Alen's Avatar
    Join Date
    Oct 2007
    Gender
    male
    Location
    Liquid Generator
    Posts
    27,920
    Reputation
    2548
    Thanks
    4,224
    My Mood
    Fine
    What / who is antinoob and what is the point of the whole thing?

  6. #6
    radnomguywfq3's Avatar
    Join Date
    Jan 2007
    Gender
    male
    Location
    J:\E\T\A\M\A\Y.exe
    Posts
    8,858
    Reputation
    381
    Thanks
    1,823
    My Mood
    Sad
    Code:
    bool StemOn = false;
    While(true)
    {
        if(StemOn){WriteProcessMemory(Handle,Address,Buffer,Size,0);
        if(kbhit) //If someone hits a button on there keybored
        {
         char ReturnChar = ' '; //This is where we store the returned char
          ReturnChar = getch(); //ReturnKey = Last Pressed Key
         switch(ReturnChar)//If you don't know what this is.Relearn C++
         {
               case 'a': //If Return Char = a
               If(StemOn){StemOn = false;}else{StemOn = true;} // Switch bool
         }
    }
    It switchs a bools status from true to false, false to true.
    Only really useful if your making a DLL, or can acquire key presses differently.



    There are two types of tragedies in life. One is not getting what you want, the other is getting it.

    If you wake up at a different time in a different place, could you wake up as a different person?


  7. #7
    castaway's Avatar
    Join Date
    Mar 2007
    Location
    In a BIG Box.
    Posts
    1,636
    Reputation
    14
    Thanks
    97
    Code:
    bool StemOn = false;
    While(true)
    {
        if(StemOn){WriteProcessMemory(Handle,Address,Buffer,Size,0);
        if(kbhit) //If someone hits a button on there keybored
        {
         char ReturnChar = ' '; //This is where we store the returned char
          ReturnChar = getch(); //ReturnKey = Last Pressed Key
         switch(ReturnChar)//If you don't know what this is.Relearn C++
         {
               case 'a': //If Return Char = a
               StemOn = !StemOn
         }
    }
    This is easier?

  8. #8
    Toymaker's Avatar
    Join Date
    Feb 2008
    Gender
    male
    Location
    Hannah, Montana
    Posts
    659
    Reputation
    14
    Thanks
    193
    My Mood
    Amused
    It switchs a bools status from true to false, false to true.
    Only really useful if your making a DLL, or can acquire key presses differently.
    This is easier?
    None of you guys posted any help haha, sillies:

    1. It uses bool but it's not switching by any means merely the common rudamentary method of it.

    2. It's obviousally writing memory itself therefore a .dll would be useLESS, not useful...

    3. It's simply writing writing memory you define, if StemOn = True. Of course.

    Granted: There must be quite a bit more to this program. This snippet could only be so few things, though.
    Last edited by Toymaker; 02-26-2008 at 06:05 AM.

  9. #9
    castaway's Avatar
    Join Date
    Mar 2007
    Location
    In a BIG Box.
    Posts
    1,636
    Reputation
    14
    Thanks
    97
    Code:
    bool StemOn;
    While(True)
    {
    if (GetKeyState(VK_F1) &1)
    {
           StemOn = !StemOn
    }
    if(StemOn){WriteProcessMemory(Handle,Address,Buffer,Size,0);
    }
    }
    I would use it like this

  10. #10
    radnomguywfq3's Avatar
    Join Date
    Jan 2007
    Gender
    male
    Location
    J:\E\T\A\M\A\Y.exe
    Posts
    8,858
    Reputation
    381
    Thanks
    1,823
    My Mood
    Sad
    Quote Originally Posted by Crytical View Post
    None of you guys posted any help haha, sillies:

    1. It uses bool but it's not switching by any means merely the common rudamentary method of it.

    2. It's obviousally writing memory itself therefore a .dll would be useLESS, not useful...

    3. It's simply writing writing memory you define, if StemOn = True. Of course.

    Granted: There must be quite a bit more to this program. This snippet could only be so few things, though.
    hey, Fuck you, I made that code, thats like 99% of it.

    Quote Originally Posted by thimo View Post
    Code:
    bool StemOn;
    While(True)
    {
    if (GetKeyState(VK_F1) &1)
    {
           StemOn = !StemOn
    }
    if(StemOn){WriteProcessMemory(Handle,Address,Buffer,Size,0);
    }
    }
    I would use it like this
    I tried that, it doesn't work with my compiler. Well it didn't on Dev-C++. Works with VS.
    Last edited by radnomguywfq3; 02-26-2008 at 08:43 AM.



    There are two types of tragedies in life. One is not getting what you want, the other is getting it.

    If you wake up at a different time in a different place, could you wake up as a different person?


  11. #11
    Dave84311's Avatar
    Join Date
    Dec 2005
    Gender
    male
    Location
    The Wild Wild West
    Posts
    35,837
    Reputation
    5782
    Thanks
    41,292
    My Mood
    Devilish
    bool StemOn = false;
    While(true)
    {
    if(StemOn){WriteProcessMemory(AntiNoobIsGay);
    if(kbhit)
    {
    char SomeTempFrenchieLonerChar_AntiNoob = ' ';
    SomeTempFrenchieLonerChar_AntiNoob = getch();
    switch(SomeTempFrenchieLonerChar_AntiNoon)
    {
    case 'a': //For AntiNoob Is Gay
    If(StemOn/*Tis A Bool*/){StemOn = false;}else{StemOn = true;}
    }
    }
    lol... it looks like you want some one to translate some code for you so you understand it

    however, you took out some of the variables passed and renamed all the variables.

    if "StemOn" is true, write to memory... with incorrect parameters
    kbhit doesn't look to be defined, but it chesk it its true.
    Sets a char to '', passes what getch retuls to the char, passes it to a switch statement which checks if the char is a.

    If it is a, it switches "StemOn" to its opposite value...





    THE EYE OF AN ADMINISTRATOR IS UPON YOU. ANY WRONG YOU DO IM GONNA SEE, WHEN YOU'RE ON MPGH, LOOK BEHIND YOU, 'CAUSE THATS WHERE IM GONNA BE


    "First they ignore you. Then they laugh at you. Then they fight you. Then you lose.” - Dave84311

    HAVING VIRTUAL DETOX

  12. #12
    Toymaker's Avatar
    Join Date
    Feb 2008
    Gender
    male
    Location
    Hannah, Montana
    Posts
    659
    Reputation
    14
    Thanks
    193
    My Mood
    Amused
    Quote Originally Posted by crytical
    None of you guys posted any help haha, sillies:
    1. It uses bool but it's not switching by any means merely the common rudamentary method of it.
    2. It's obviousally writing memory itself therefore a .dll would be useLESS, not useful...
    3. It's simply writing writing memory you define, if StemOn = True. Of course.
    Granted: There must be quite a bit more to this program. This snippet could only be so few things, though.
    Quote Originally Posted by jetamey
    hey, Fuck you, I made that code, thats like 99% of it.
    That wasn't offensive, Lol. I'm just suprised you can write code without understanding it i was pretty sure me and Dave covered the only potential translations.
    Last edited by Toymaker; 02-26-2008 at 02:34 PM.

  13. #13
    radnomguywfq3's Avatar
    Join Date
    Jan 2007
    Gender
    male
    Location
    J:\E\T\A\M\A\Y.exe
    Posts
    8,858
    Reputation
    381
    Thanks
    1,823
    My Mood
    Sad
    Quote Originally Posted by Crytical View Post
    That wasn't offensive, Lol. I'm just suprised you can write code without understanding it i was pretty sure me and Dave covered the only potential translations.
    You can't write code if you don't understand it.



    There are two types of tragedies in life. One is not getting what you want, the other is getting it.

    If you wake up at a different time in a different place, could you wake up as a different person?


  14. #14
    Toymaker's Avatar
    Join Date
    Feb 2008
    Gender
    male
    Location
    Hannah, Montana
    Posts
    659
    Reputation
    14
    Thanks
    193
    My Mood
    Amused
    That was my point? And kindof a comment towards you that you might want to comment :P
    Last edited by Toymaker; 02-26-2008 at 06:15 PM.

  15. #15
    radnomguywfq3's Avatar
    Join Date
    Jan 2007
    Gender
    male
    Location
    J:\E\T\A\M\A\Y.exe
    Posts
    8,858
    Reputation
    381
    Thanks
    1,823
    My Mood
    Sad
    oommgg, I don't get this conversation. I take offense to easily, sorry. Your right.



    There are two types of tragedies in life. One is not getting what you want, the other is getting it.

    If you wake up at a different time in a different place, could you wake up as a different person?


Page 1 of 2 12 LastLast

Similar Threads

  1. hi can anyone give me a promo code i need one plzzzz
    By theman11 in forum WarRock - International Hacks
    Replies: 18
    Last Post: 10-30-2007, 02:10 PM
  2. can anyone on this site use these....
    By Jumpshot in forum Help & Requests
    Replies: 14
    Last Post: 07-05-2007, 07:49 PM
  3. Can anyone help w/ this?
    By Stranger00 in forum WarRock - International Hacks
    Replies: 5
    Last Post: 05-22-2007, 04:59 AM
  4. Anyone have this
    By Mortifix in forum Gunz General
    Replies: 1
    Last Post: 02-21-2006, 10:23 PM
  5. Can I Do this?
    By D3ATH ANG3L in forum Gunz General
    Replies: 9
    Last Post: 02-08-2006, 04:25 PM

Tags for this Thread