View previous topic :: View next topic |
Author |
Message |
redeyes1 Newbie cheater
Reputation: 0
Joined: 28 Jun 2007 Posts: 13
|
Posted: Fri Jun 29, 2007 10:57 pm Post subject: Dark Byte Please Read This |
|
|
so, to comment out the code in the cheat engine is like
Example:
object cbFastScan: TCheckBox
Left = 3
Top = 88
Width = 86
Height = 17
Caption = 'Fast scan'
Enabled = False
Font.Charset = DEFAULT_CHARSET
Font.Color = 3218442
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
TabOrder = 5
end
How would i comment the text out? like this
object cbFastScan: TCheckBox
Left = 3
Top = 88
Width = 86
Height = 17
Caption = '*Fast scan*'
Enabled = False
Font.Charset = DEFAULT_CHARSET
Font.Color = 3218442
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
TabOrder = 5
end
-------------------------------
but that does not comment the code out when i compile it, all it does is add *Fast Scan*" to the text on button once i compile it. plz help
|
|
Back to top |
|
 |
appalsap Moderator
Reputation: 0
Joined: 27 Apr 2006 Posts: 6753 Location: Pakistan
|
Posted: Fri Jun 29, 2007 11:06 pm Post subject: |
|
|
you comment the CODE (.pas) not the FORMS (.dfm)
|
|
Back to top |
|
 |
redeyes1 Newbie cheater
Reputation: 0
Joined: 28 Jun 2007 Posts: 13
|
Posted: Fri Jun 29, 2007 11:09 pm Post subject: thanks |
|
|
can you post me a example of how to like comment out a line in a .pas file thanks
|
|
Back to top |
|
 |
Kevin Grandmaster Cheater Supreme
Reputation: 0
Joined: 07 Mar 2007 Posts: 1139 Location: Spiderman-World
|
Posted: Sat Jun 30, 2007 4:08 am Post subject: |
|
|
i belive you need to edit it in the forms, not in the code itself... Not sure.
|
|
Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25788 Location: The netherlands
|
Posted: Sat Jun 30, 2007 5:20 am Post subject: |
|
|
you need to edit both forms and code
to comment out code put it between a (* *)
regarding forms it's usually only a few small things like the name and width of a object
_________________
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 |
|
 |
redeyes1 Newbie cheater
Reputation: 0
Joined: 28 Jun 2007 Posts: 13
|
Posted: Sat Jun 30, 2007 2:46 pm Post subject: question |
|
|
dark byte, can you show mw a exmple of commenting a piece of code. when i use (*blbla*) around the code, it dosent do nothing ecept show the code like that. plz
|
|
Back to top |
|
 |
hcavolsdsadgadsg I'm a spammer
Reputation: 26
Joined: 11 Jun 2007 Posts: 5801
|
Posted: Sat Jun 30, 2007 7:34 pm Post subject: |
|
|
That was an example, the code will change colors once you do it. Are you trying to just get rid of the text? Just delete it?
|
|
Back to top |
|
 |
ZenX Grandmaster Cheater Supreme
Reputation: 1
Joined: 26 May 2007 Posts: 1021 Location: ">>Pointer<<" : Address 00400560 Offset :1FE
|
Posted: Fri Jul 06, 2007 8:45 pm Post subject: |
|
|
Also, you can try
Code: |
{
Text Goes Here
FTW
}
|
Or
Code: |
{$IfDef}
Large Amounts of Text here
{$EndIf}
|
ORRRR
You can do it the noobie Idiotic way
Code: |
//Each Line code out with a (//)
//Lol
//ZenX
//SmartCookie
//Example
|
and try the other ways people have said.
Good Luck~
_________________
CEF Moderator since 2007 ^_^
ZenX-Engine |
|
Back to top |
|
 |
|