View previous topic :: View next topic |
Author |
Message |
guardian635 Newbie cheater
Reputation: 0
Joined: 17 Apr 2010 Posts: 11
|
Posted: Thu Apr 22, 2010 8:23 am Post subject: build the dbk32.dll wrong |
|
|
[Fatal Error] guardianfunctions.pas(1): Program or unit 'guardianfunctions.pas' recursively uses itself
build the dbk32.dll wrong
|
|
Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25788 Location: The netherlands
|
Posted: Thu Apr 22, 2010 8:27 am Post subject: |
|
|
undo all your changes and then try again
and again, NEVER use tools like ASR to replace stuff in files
_________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping |
|
Back to top |
|
 |
guardian635 Newbie cheater
Reputation: 0
Joined: 17 Apr 2010 Posts: 11
|
Posted: Fri Apr 23, 2010 9:26 am Post subject: |
|
|
what is "changes" mean ?
|
|
Back to top |
|
 |
Kpoch Grandmaster Cheater
Reputation: 0
Joined: 17 Apr 2005 Posts: 668 Location: Mexico Muy orgulloso
|
Posted: Fri Apr 23, 2010 11:44 am Post subject: |
|
|
download a new fresh copy and compile it w/o edit if successfull add a few changes to (if u are adding them) and compile
db have reason dont use ASR tools
_________________
|
|
Back to top |
|
 |
guardian635 Newbie cheater
Reputation: 0
Joined: 17 Apr 2010 Posts: 11
|
Posted: Fri Apr 23, 2010 10:12 pm Post subject: |
|
|
still build error
|
|
Back to top |
|
 |
telekidz How do I cheat?
Reputation: 0
Joined: 04 Sep 2008 Posts: 4
|
Posted: Sun Apr 25, 2010 3:52 pm Post subject: |
|
|
need help : ce5.5source
i wanna change eax label value on click with "zero value only", code is :
in : procedure TMemoryBrowser.EAXLabelDblClick(Sender: TObject);
{if i<20 then
begin
if not inputquery('Change register','What is the new value of '+regname+'?',input) then exit;
end }
if i=0 then
begin
input:=copy(tlabel(sender).Caption,pos(' ',tlabel(sender).Caption)+1,1);
end
else
...
now
i wanna change eax label value with shortcut (ex:menu->setto0 f10) "only zero value"
how i do that?
|
|
Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25788 Location: The netherlands
|
Posted: Sun Apr 25, 2010 8:49 pm Post subject: |
|
|
add an action item with that hotkey that does it
_________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping |
|
Back to top |
|
 |
telekidz How do I cheat?
Reputation: 0
Joined: 04 Sep 2008 Posts: 4
|
Posted: Sun Apr 25, 2010 9:14 pm Post subject: |
|
|
an action
something like this?
in form MemoryBrowser,
a menu name is : SetTo0 f10
procedure TMemoryBrowser.SetTo0Click(Sender: TObject);
begin
{ but ... do what? }
end;
explain me plz
|
|
Back to top |
|
 |
telekidz How do I cheat?
Reputation: 0
Joined: 04 Sep 2008 Posts: 4
|
Posted: Tue Apr 27, 2010 5:25 am Post subject: |
|
|
^
copy paste code from procedure TMemoryBrowser.EAXLabelDblClick(Sender: TObject); to procedure TMemoryBrowser.SetTo0Click(Sender: TObject);
run -> error in memory
next
change event in menu -> SetTo0 f10 (onclick) with EAXLabelDblClick
same case " error in memory"
next
procedure TMemoryBrowser.SetTo0Click(Sender: TObject);
begin
EAXLabel.OnClick(sender);
end;
same case " error in memory"
|
|
Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25788 Location: The netherlands
|
Posted: Tue Apr 27, 2010 7:54 am Post subject: |
|
|
don't forget the tag
also, it's not a click, it's a dblclick
_________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping |
|
Back to top |
|
 |
|