Results 1 to 14 of 14
  1. #1
    RoB07's Avatar
    Join Date
    Feb 2008
    Posts
    41
    Reputation
    10
    Thanks
    9

    [Delphi]Stamina Hack

    Well, first we need a function that can edit values of memory addresses, luckily for you, I have done that:
    Code:
    function EditMemory(Address: Integer; Value: Integer): Boolean;
    var
      ProcessId, WindowName, HandleWindow: Integer;
      Write: Cardinal;
    begin
      WindowName := FindWindow(nil, 'WarRock');
      If WindowName = 0 then
      begin
      Result := False;
      Exit;
      end;
      GetWindowThreadProcessId(WindowName, @ProcessId);
      HandleWindow := OpenProcess(PROCESS_ALL_ACCESS, False, ProcessId);
      WriteProcessMemory(HandleWindow, Ptr(Address), @Value, 4, Write);
      CloseHandle(HandleWindow);
      Result := True;
    end;
    Then we will need a procedure to repeatingly set the value of an address aka. freeze the address:
    Code:
    procedure StaminaHack();
    begin
      while 1 = 1 do
      begin
       EditMyMemory($007F2B34, $42C80000);
       Sleep(5);
      end;
    end;
    Now, that will work fine but it will freeze your program completly, so we need to run it in a new thread:
    Code:
    procedure TForm1.Button1Click(Sender: TObject);
    var
    ThreadID: Cardinal;
    begin
    CreateThread(nil, 0, @StaminaHack, nil, 0, ThreadID);
    end;

  2. #2
    Alen's Avatar
    Join Date
    Oct 2007
    Gender
    male
    Location
    Liquid Generator
    Posts
    27,920
    Reputation
    2548
    Thanks
    4,224
    My Mood
    Fine
    Delphi isn't good foo hacking ... several people claim it's even more detected than VB...

  3. #3
    swmartin's Avatar
    Join Date
    Feb 2008
    Gender
    male
    Location
    asdasd
    Posts
    31
    Reputation
    10
    Thanks
    0
    hy nice hack

  4. #4
    masterboy120's Avatar
    Join Date
    Jul 2007
    Gender
    male
    Location
    The Netherlands
    Posts
    371
    Reputation
    10
    Thanks
    34
    My Mood
    Amazed
    Nice guide..but no one is using delphi but delphi is completely undetected

  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
    No it is not, most CEs are delphi ... so are several other hack tools...

  6. #6
    castaway's Avatar
    Join Date
    Mar 2007
    Location
    In a BIG Box.
    Posts
    1,636
    Reputation
    14
    Thanks
    97
    Quote Originally Posted by mastasnip3 View Post
    No it is not, most CEs are delphi ... so are several other hack tools...
    Most?
    All Uce's + CE are delphi based, you need to be very good coder to hide the strings.

  7. #7
    kkookk's Avatar
    Join Date
    Feb 2008
    Posts
    12
    Reputation
    10
    Thanks
    2
    plz help me i am new dont dont know much what i need do with that codes?

  8. #8
    olie122333's Avatar
    Join Date
    Oct 2007
    Gender
    male
    Posts
    438
    Reputation
    10
    Thanks
    20
    don't spam, you should think b4 u post nub

  9. #9
    meilsenaa's Avatar
    Join Date
    Oct 2008
    Posts
    1
    Reputation
    10
    Thanks
    0

    Популяционный индекс как аргумент перигелия


  10. #10
    GG2GG's Avatar
    Join Date
    Mar 2008
    Gender
    male
    Location
    United Kingdom
    Posts
    3,382
    Reputation
    21
    Thanks
    4,294,967,295
    My Mood
    Blah
    i dont get it a lot of forighn spam recently :S

  11. #11
    ShadeSeven's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    2
    My Mood
    Cynical

    Nice!

    omg dont say "wat do i do with the code" u nub. unless u have delphi (used to be borland but now made by codegear) AND have decent programming skills - not that this particular piece of code requires much - then u may IGNORE THIS!
    delphi is available legally here:
    Delphi
    and illegally (i do not endorse this) here:
    CodeGear Development Studio 2007 (Borland Delphi 2007) (download torrent) - TPB (you need a torrent app for this)

  12. #12
    snagg57's Avatar
    Join Date
    Oct 2008
    Gender
    male
    Posts
    13
    Reputation
    10
    Thanks
    3
    0.0 nice hope you keep working on it

  13. #13
    bananamaninc's Avatar
    Join Date
    Aug 2008
    Gender
    male
    Posts
    81
    Reputation
    10
    Thanks
    1
    dephi sucks man

  14. #14
    Micheltjuh's Avatar
    Join Date
    Sep 2008
    Gender
    male
    Location
    Holland
    Posts
    643
    Reputation
    10
    Thanks
    59
    My Mood
    Cynical
    To those who said 'Delphi is highly detectable'
    It doesn't really matter what language it is in, a good hacking prevention system should also be able to detect C++ and any other programming language, since they can just use the same methods on it.

    CE is not completely coded in Delphi, the drivers it uses are coded in C.

Similar Threads

  1. Stamina Hack!
    By ltkort213 in forum WarRock - International Hacks
    Replies: 3
    Last Post: 06-09-2007, 08:25 AM
  2. [Release] Stamina hack
    By ziom2322 in forum WarRock - International Hacks
    Replies: 6
    Last Post: 06-07-2007, 06:13 AM
  3. Stamina Hack
    By xxHackerxx in forum WarRock - International Hacks
    Replies: 3
    Last Post: 06-07-2007, 06:03 AM
  4. Stamina hack
    By master987 in forum WarRock - International Hacks
    Replies: 1
    Last Post: 05-29-2007, 08:34 PM
  5. Undetected Stamina Hack!
    By nbr1dan in forum WarRock - International Hacks
    Replies: 18
    Last Post: 05-29-2007, 04:00 PM

Tags for this Thread