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..
i want to close a source code..
You can't "close" cleo code.i dont want to do a open source, i wanna a close source..
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.
{$CLEO .cs}
{$NOSOURCE}
0000: NOP
wait 8500
while true
wait 0
end
{$CLEO .cs}
{$NOSOURCE}
0000: NOP
wait 8500
while true
wait 0
0@ = @SAMPFUNCS
0AB1: 0@ 0
end
:SAMPFUNCS
0AB2: ret 0
// 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
@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
2. Do like:PHP:{$CLEO .cs} {$NOSOURCE} 0000: NOP wait 8500 while true wait 0 end
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