Cheat Engine Forum Index Cheat Engine
The Official Site of Cheat Engine
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


obfuscate Decode

 
Post new topic   Reply to topic    Cheat Engine Forum Index -> Cheat Engine Lua Scripting
View previous topic :: View next topic  
Author Message
Corroder
Grandmaster Cheater Supreme
Reputation: 75

Joined: 10 Apr 2015
Posts: 1667

PostPosted: Tue Jul 23, 2019 8:31 am    Post subject: Reply with quote

First, DO NOT SPAM with the same topic on several posts in the forum.

Darkbyte told you already in another post (posted by you) to use Cheat
Engine Encode Decode built-in functions.

Read this topic: https://forum.cheatengine.org/viewtopic.php?t=595142

Also, this is an example step by step:

Step 1:

Create your own TRAINER SCRIPT, example:

Code:
f = createForm()
 f.caption = 'This my LOL trainer'
 b = createButton(f)
 b.setPosition(60,60)
 b.caption = 'Click Me'

 function b_click()
   speak('Button has been clicked. What do you want?')
 end

 b.onClick = b_click


Step 2:
Add a function to covering your TRAINER SCRIPT, with add text 'function' and 'end' at the end of your TRAINER SCRIPT.
Then it will look like this:

Code:
function my_trainer_script()

 f = createForm()
 f.caption = 'This my LOL trainer'
 b = createButton(f)
 b.setPosition(60,60)
 b.caption = 'Click Me'

 function b_click()
   speak('Button has been clicked. What do you want?')
 end

 b.onClick = b_click

end


Step 3:
Now, start to ENCODING your TRAINER SCRIPT (The script as shown in step 2) with CE Encode function.

Code:
print(encodeFunction(my_trainer_script))


It will print out the result like this:
Code:

c-n/e!Ait16r9vhv#pB/7eT$]u!x{e1%hdXo,:889wqHYTGnlsHf7ygD+6Tf)0-apSMcbA[jof+CT}vCPCnr1dmJ1Glu@dspYT@[D=vc*vOmC]LpyvSFf_4YFg@r:jp%)5A%WvTEdSvn!mf!BZ3ueXQ):hX0;u4:@/Xfc4ksc.An/hxgV6HSd!:FCD5,IaHw)(gxzuG^)aB;]wtTVX;0QcoBg.xP*XV62D};y?t!l4T]o3.U[vGN{Hv:8ryp^Q!-zv)om*z{=*zv[fK^3pc=Qnn_bt!F^NWfkW..!=Ylix0toKMcT-_/4WJX5OTgQ:[email protected]/=*XYp]kLUs]T,sLNE!


copy this result and save your ORIGINAL TRAINER SCRIPT (before encoding) and then open NEW CT File via Cheat Engine Lua Table on CE Menu.

Step 4:
Adding the encoded script as your trainer script

give a variable for your ENCODED script (optional), something like this:

Code:
mycode="c-n/e!Ait16r9vhv#pB/7eT$]u!x{e1%hdXo,:889wqHYTGnlsHf7ygD+6Tf)0-apSMcbA[jof+CT}vCPCnr1dmJ1Glu@dspYT@[D=vc*vOmC]LpyvSFf_4YFg@r:jp%)5A%WvTEdSvn!mf!BZ3ueXQ):hX0;u4:@/Xfc4ksc.An/hxgV6HSd!:FCD5,IaHw)(gxzuG^)aB;]wtTVX;0QcoBg.xP*XV62D};y?t!l4T]o3.U[vGN{Hv:8ryp^Q!-zv)om*z{=*zv[fK^3pc=Qnn_bt!F^NWfkW..!=Ylix0toKMcT-_/4WJX5OTgQ:[email protected]/=*XYp]kLUs]T,sLNE!"

-- decoding the encoded script
myscript=decodeFunction(mycode)

--- load the function
my_trainer_script()  -- You MUST remember what is the function name on your original script (see Step 2)


Step 5:
DONE!


This is the Cheat Engine way to protect code/script by encoding/decode function. It's called CE decode and encodes.
But actually, I have the strongest function to protect my code or script. It made by myself, nobody can break it.
I named it as THE_NOTSHARECODE function. It really works and I no need to worry someone steals my code.

Laughing Laughing

_________________
Stealing Code From Stolen Code...
And Admit It.. Hmmm....Typically LOL
Back to top
View user's profile Send private message
ProB1
Advanced Cheater
Reputation: 0

Joined: 20 Jul 2019
Posts: 77
Location: At Home

PostPosted: Tue Jul 23, 2019 10:46 am    Post subject: Corroder Reply with quote

Thank You For Help You Are smart
Shocked Shocked Shocked Shocked Shocked Shocked Shocked Shocked
Back to top
View user's profile Send private message Visit poster's website
Corroder
Grandmaster Cheater Supreme
Reputation: 75

Joined: 10 Apr 2015
Posts: 1667

PostPosted: Tue Jul 23, 2019 11:08 am    Post subject: Re: Corroder Reply with quote

ProB1 wrote:
Thank You For Help You Are smart
Shocked Shocked Shocked Shocked Shocked Shocked Shocked Shocked


are you mocking me?

_________________
Stealing Code From Stolen Code...
And Admit It.. Hmmm....Typically LOL
Back to top
View user's profile Send private message
AylinCE
Grandmaster Cheater Supreme
Reputation: 30

Joined: 16 Feb 2017
Posts: 1234

PostPosted: Tue Jul 23, 2019 1:33 pm    Post subject: Re: Corroder Reply with quote

Corroder wrote:

are you mocking me?


@ atom0s has made a warning. "Too much spam!" Cool Cool Cool

_________________
Hi Hitler Different Trainer forms for you!
https://forum.cheatengine.org/viewtopic.php?t=619279
Enthusiastic people: Always one step ahead
Do not underestimate me Master: You were a beginner in the past
Back to top
View user's profile Send private message Visit poster's website MSN Messenger
noobes
Advanced Cheater
Reputation: 0

Joined: 17 Dec 2018
Posts: 89

PostPosted: Tue Aug 13, 2019 11:35 am    Post subject: Reply with quote

lol Smile)))
Back to top
View user's profile Send private message
door02
Newbie cheater
Reputation: 0

Joined: 28 Aug 2020
Posts: 20

PostPosted: Fri Aug 28, 2020 1:11 am    Post subject: Bytecode Encrypt Reply with quote

Hey please help me!


CAN you send Bytecode encryptor which works on
loadstring() ()


Thanks Very Happy
Back to top
View user's profile Send private message
exohaxor
Expert Cheater
Reputation: 1

Joined: 02 Sep 2018
Posts: 101

PostPosted: Wed Sep 02, 2020 9:39 am    Post subject: Reply with quote

no thats not how it works stop asking same thing on different posts
you either buy an obfuscator or make your own no one will give you one

_________________
hi
Back to top
View user's profile Send private message
abdilahraf
How do I cheat?
Reputation: 0

Joined: 22 Jun 2022
Posts: 1

PostPosted: Wed Jun 22, 2022 10:51 am    Post subject: Help for decode Script Reply with quote

I have encrypted my file and only the original file has delecet , Is there any help to decrypt my file, because do not know how to decrypt it?

Crying or Very sad
Code:
script32bit() = 'c-p-fU2[^)@/MdEC9mU/smwHOnPh1VbV5la,i6mU)p__}$ExiF,fApPVLEH,THdj:;q[fj:V:#GCzg{i]M?cKp-f3)I]oY/h6f1{HI_b$rR9MccndF#e+ll1d-ua}^L!:t-Px.iKh8P#oO92_*jlyWt(O0@F1L%1i-eG9bmk.lf1dt^jMqmv)hI*:lF@d?[f=V2]Vm:1owALhwrmSk8KsboI(FkSS@242Rgfs7pNVqvj95+,A/C(av6=z7qTXOlm3x5#p(Za.=A_vr:+B#;O2$r}$*NheS-FlXRrSILfRnM(n^#p;szU!7.8+OvH!Ak@d1#diN{s8qn}Qbehd{DPu-/[6hJ16rVSiX?0KbNPb3v#bLrkkq2V{%[email protected],5uKHVK1B@;aN^zEO6G#/WRMMbIl#-^*t[ga*#VQqkil]Te(8U}u/:^p2FVj33ki;#r6P(uXxS;6vxu}1OH^L^%4bvBl%/.nX+,#[mZmjBw?lJ^!Yu22cF(aAOUsj%IhCS?MN33?S/hJ$vAv$/N#q#S@AlEV++gZZD]{Q.v?}MP7AT2}m4^4(5,Q3A%o1sh(m=:3YCKN%pX?((4btKmElK?3V6BhqS(eNejhbeGw7ViEr!C7gVvqUE!vl2Oisk$v88xS3sy}WmJyjy9@zg7UOv0+ZSR[26pQbS{z(dWE3VL=Zw=aCnTd{;t2BUPwA}/%?pAZJjyl#,PF7kjjMhmeYc#AQ]$7)%EOJ((l1tNHgkC(5XAs5;nn8jr/su#hCt@LfFr=f*sPQ)^0ZD=Z!n!^W_7tI%y+(3r3hWDt}5DJAocW3TRpx,9O9XaM:rwV47x]dmar:ZR7]Dn2?W*QMD0}sOJmci$3bhcUz^P_rTSC86tq?Z1jf+l8:PHbcFWuUTgy.=*B++4w;gL4p5HzB6;RXgl,D8;7NlR[zMbKj04XHHO3NW_CAa[C$=:Z/g8yW/-bcU*iKP@oh}wWdNJUl4E}Qen+FMEP*Dto1F5%CRNUxp[^k9Xr#9]$HLL/x(CE6cy*k0gfsv/0}rA%_Yz2xQWWn6..VV%p6/fu$Eck5Z@fG!qs@O:P/*?mR.P^vuf=dfJdg5d?G}en$I]]i[n%bwOi-T.,0SZ-?cS[Zokd?wc86BJalFb:.{as4d@OBR^@;T(^dS7r3%n{i2GX[(PSIjK+#(Fj{_KU[=b0]:V.aWb:@50x}tgykYC[FRh}60Z6-TGvy(ZT6P7hq^^EpuIWt;6m@aOQfga47MK,!.LWCX49ZC!vC%cbL)8GzzKJ[[Dr)P_Oz1simtkN@_x@lYjwbx!5K9Wu5hEt}_UO7Z)rp%J^0=Qqm@{GdPu]5q4=zslFNCXBi4G*l3%Y=L_8,jrCUUq[zZ^?!0#ZeHEU-#le;Nm1xsYJ7ucJQ0cJ_FWDQq9Z7X]Z9D%vaKSzLL[w*v!uhNdl6BmNQF0^uO1a9dhN4Nlf36#4JCh1ljEVl9+U7Y9%YL/u%d/y1QE=0?KC1e7.Wyq@3vuNOHQI-DtArEJs=EY0Ko;e$QtT[B+;hqsH2OwxUwd@9J*X?CeN[09Y}3AJUQ146PtN_NIZvk1e+)XV*6!)fEuCM)@$cf*a)yY=hnO8ML*PTi9e8(WR.BS0Eh11c$v0IpDRX4B31MV8PSkCS1=E,+G,$o?CE3H22aGVyQYR!#%:w+_GaX1acwkGqz!VnzT4gzNQ$tlBwrTl+{wGmz)7dwhd3^Il9fJ5b(tT+CKyz)g9+0(B3NM5cbDa8#!:O:!AqjU?NFr#Vldt@C+d}$q1j9_AMd,g2c?dbCT5omZ(jH*cYX}?2g[FE}fye1)IqCl3XvkE29v+pxgz8[Mz_Cb-UN41Ac2v]Kmp=CNqdCYc=NO*}bBGum+?QURaYEMCaFRK0d!z/;L!$D8$AW*=@0Jn^}SnwSY8CCYXP-4i}2ezaRm$Z!Wpxm5U4tPCxXWOYU6bvWwHWQm/x@p!B)yDYSaAVXrPX)5/Tt]PNdSI]E4KzKumlrq6(Kfc{=*GK5rT$SXkjR^_bFV)p[v4*Mp!94a4Qb=1-2!)apthD3blZ9eDR]AslayK[aTWt#cDE8rgi^U@(DI-gwSu:dFkhj^fOgKDjp6_ieA=%x+g.qji{47*rStN^-fE@*_s08_}-/-ylB?%Wv9M[}QaWe(L/Bc2;1o+W{kJky;W4Cm8)csRcoY7F/YWeypSn#ZH(?c@hg9uGFBe0HxK=,ebTD,hzM(#t/V:]!l,GKyG1c6DKMe[v#Q@b!lC7TqMmlsQEW?)oKXPZspDB@=@qr6;CbmA;=lGMJX:;yjIAPaUK*@htMlFg@Iv2w,HgOX{v=2NsM85-O1{q[-StIiPvzV=*V.LS^@{G;@#cB1Em0r?gvXF!N.ps7=*9mR[Hxk{[7)OA.,ebUkf}MeAj*WUv_-E^,_45$Yb{o:THlOnyHLv[fGs@#W81)d()m6G1bw,L#N9B%(F;KjFbH64i^dZe$aFr.D[@q!U[p5+P[tmR3n+aCZAb]S=j%Ftd72%Sp-Erfj-iBA4zhk/a*OI}2G3tDZZS!1p$kz?Vml+$aKdFfBbxH(!v/G;?Oq.2y6?FVnGR8@8r:y$s:=4Ed!G/Jg_ht8iYyiW),68Y9-;vkU$v/Tlmb[EW*]%yf{fmlV9Aef[Lvx:ENhMeMv!-MrZ2ddzr=.4M{UlW.+dCS)8fN!!-7ck$cU5Brm_=A=XD,7[,KjsP]Hg[1Mp*.TQ53X}oUrAI,@C?-B+CRmuZa=ZotA4k9uNoPDR!Fx0:b+qw,loW-%-D(BlDy6z4@^}^PBJD0gYC/#e*F+,rC%!F7L@,-urc=KZWt*//@ivRnTZG@=h4n3H=_5f%kH!iVt}n@A@^NtR$Z+K,VLw;!U(%cI%_//YcGUC1[4[Tf[aE;=TbX0szp8BveWR8}zoOIp1GGOrptd3pqx*BP7subIuksb=]zL7C2aQ*(S#lFx.m5qt;jL:])z-4Q))Yn.YVLKH*J/p*Pqn^7TX]s_6+s7,ZlhXpqiS9MN7Zga]-iLABRi-Tl?(W]E1OjYRTa2A((f$tx7Sr{/F/0I1zhKj#Cj$L2X1!e:K1b!?9l_]-5$AXjE.DajDvS*de2C}(du06a?lIDE#97;^{9gMU)o+jfG,0Q]wQd=(%_G-4m;;H]wz7Lx.pRu622F$!aPcDVWTA22z)O$Sk[T0uo3$jK:zDGQJOnZ({QLw$n5k*H@kvlNmbda@hifw+voWQ)(UjQWY0uTC}2wZh!jt7vu.H99WLI=vg/kNa7v1,3[sBWXj1A3!(je]x^gYT6!$lmX+$6c=uXz(@A1f5o87eIz(1QKqdtTa4Z)bbuZ4+BX,VL$/ZuF+oj^0R1/Mn)P*N[v=6gJ6qyC4%)@JjY-fj5r$8P)*(nN!9dgrev,dZeT,hCWF:a,%;!B.]dKVOG..]2X@e:is'



image_2022-06-22_105035192.png
 Description:
 Filesize:  86.04 KB
 Viewed:  3226 Time(s)

image_2022-06-22_105035192.png


Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> Cheat Engine Lua Scripting All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Powered by phpBB © 2001, 2005 phpBB Group

CE Wiki   IRC (#CEF)   Twitter
Third party websites