CLEO Help How to close a code?

CLEO related
Status
Not open for further replies.

MalikeiraOPoder

Active member
Joined
Mar 16, 2019
Messages
100
Reaction score
2
I want to know how can i do to close a code?
i want to close a source code..
 
Joined
Feb 18, 2005
Messages
2,963
Reaction score
267
What do you mean by 'close code' if it's a loop you can 'break' it, if it's a function you can 'return' from it, if it's a thread you can 'end' it.
 

monday

Expert
Joined
Jun 23, 2014
Messages
1,125
Reaction score
151
you could search for "cleo cryptor", you could also add "{$NOSOURCE}" directive at the begining of your script (it will still allow others to decompile it though, here's a quote from sanny builder documentation (about "NOSOURCE")

This directive prohibits the compiler from including a source code of the script. By default, when the option Add extra info to SCM is enabled, Sanny Builder adds a source code into a script file (only when either the directive $EXTERNAL or $CLEO is present). This directive changes the default behaviour of the compiler, not allowing to include the source code into an output file.

Also you could check this post:
http://ugbase.eu/index.php?threads/how-to-crypt-decrypt-my-Клео.17072/#post-100587
 

Parazitas

God
Joined
Jan 2, 2017
Messages
3,104
Solutions
5
Reaction score
882
Location
Lithuania
@monday
@MalikeiraOPoder

Use two methods - this is how you can destroy your code after decompile without any cryptors !:

1. Add {$NOSOURCE} in the top cleo code
PHP:
{$CLEO .cs}
{$NOSOURCE}

0000: NOP

wait 8500

while true
wait 0

end
2. Do like:
PHP:
{$CLEO .cs}
{$NOSOURCE}

0000: NOP

wait 8500

while true
wait 0

0@ = @SAMPFUNCS                                                                                                        
0AB1: 0@ 0

end

:SAMPFUNCS
0AB2: ret 0

After Decompile :
PHP:
// This file was decompiled using SASCM.ini published by GTAG (http://gtag.gtagaming.com/opcode-database) on 14.6.2013
{$CLEO .cs}

//-------------MAIN---------------
0000: NOP
wait 8500

:Noname_7
wait 0
0@ = -36
0AB1: 0@ 0
goto @Noname_7
ret 0


Also you can set file format - Read only
 

Attachments

  • Untitled.png
    Untitled.png
    15.3 KB · Views: 23
Last edited:

MalikeiraOPoder

Active member
Joined
Mar 16, 2019
Messages
100
Reaction score
2
@monday
@MalikeiraOPoder

Use two methods - this is how you can destroy your code after decompile without any cryptors !:

1. Add {$NOSOURCE} in the top cleo code
PHP:
{$CLEO .cs}
{$NOSOURCE}

0000: NOP

wait 8500

while true
wait 0

end
2. Do like:
PHP:
{$CLEO .cs}
{$NOSOURCE}

0000: NOP

wait 8500

while true
wait 0

0@ = @SAMPFUNCS                                                                                                       
0AB1: 0@ 0

end

:SAMPFUNCS
0AB2: ret 0

After Decompile :
PHP:
// This file was decompiled using SASCM.ini published by GTAG (http://gtag.gtagaming.com/opcode-database) on 14.6.2013
{$CLEO .cs}

//-------------MAIN---------------
0000: NOP
wait 8500

:Noname_7
wait 0
0@ = -36
0AB1: 0@ 0
goto @Noname_7
ret 0


Also you can set file format - Read only

Okay, ill try it , ty
 
Status
Not open for further replies.
Top