Search found 17 matches

by corroder
Mon Feb 17, 2020 12:45 pm
Forum: Cheat Engine Lua Scripting
Topic: Mono Helper Project
Replies: 15
Views: 26098

Re: Mono Helper Project

This is an old script I am used, just a little modified to generated an LFM file. --c = getMainForm() --c.Visible = false local path = TrainerOrigin or getMainForm() if moduleForm then moduleForm.Destroy() end moduleForm = createForm() moduleForm.setSize(200,50) moduleForm.borderStyle = 'bsSingle' m...
by corroder
Mon May 14, 2018 12:21 am
Forum: Cheat Engine Lua Scripting
Topic: How to create "TScrollBox" and "TRadioButton".
Replies: 0
Views: 21979

How to create "TScrollBox" and "TRadioButton".

I just add this script to manipulating create scrollbox error (I think it can be same way for radio button) :<br /> <br /> [CODE=lua]scrbox_script = [[<br /> function createTScrollBox(Parent)<br /> local box = createComponentClass('TScrollBox', Parent)<br /> box.Parent = Parent<br /> return box<br /...
by corroder
Tue Apr 10, 2018 4:51 am
Forum: Cheat Engine Lua Scripting
Topic: Beginner Help Needed
Replies: 20
Views: 48297

Re: Beginner Help Needed

if input=="save" then print("This feature has not been implemented.") end if 'save' mean is to save the table, then : 1. function to make a new directory on local disk : function mkdir(dirname) path = TrainerOrigin or getMainForm() os.execute("mkdir "..dirname) end 2. function to save table to loca...
by corroder
Fri Mar 16, 2018 3:22 pm
Forum: Cheat Engine
Topic: How to add a drop-down list with hotkeys to choose in trainer?
Replies: 1
Views: 3074

Re: How to add a drop-down list with hotkeys to choose in trainer?

Not sure I am understood, but maybe try this sample to get improvisation : f = createForm() cb = createComboBox(f) cb.top = 10 cb.left = 50 cbitem = cb.getItems cb.style = 'csDropDownList' cb.items.add("One") cb.items.add("Two") cb.items.add("Three with longer width") cb.items.add("Four") cb.items.a...
by corroder
Sun Feb 04, 2018 3:31 pm
Forum: General Gamehacking
Topic: Extracting codes?
Replies: 5
Views: 4284

Re: Extracting codes?

Hey guys ! I have a question, can i edit (or extract) lua scripts from ".EXE Trainers" made with Cheat Engine? .... If I'm not wrong, it's call " Stealing "... :o :o :o Not quite; theft requires the previous owner to be deprived of the item in question. This would be copying; okay if you're doing i...
by corroder
Sat Feb 03, 2018 3:29 pm
Forum: General Gamehacking
Topic: Extracting codes?
Replies: 5
Views: 4284

Re: Extracting codes?

0072 wrote:
Tue Jan 30, 2018 8:04 pm
Hey guys ! I have a question,
can i edit (or extract) lua scripts from ".EXE Trainers" made with Cheat Engine?
....
If I'm not wrong, it's call "Stealing"... :o :o :o
by corroder
Tue Dec 12, 2017 4:29 am
Forum: Cheat Engine Lua Scripting
Topic: [HELP] Have a software against theft?
Replies: 3
Views: 17942

Re: [HELP] Have a software against theft?

Just change &gt; to >
and change &lt; to <
seem you jut did copy paste that script to your script editor such as notepad++
by corroder
Mon Apr 03, 2017 11:02 am
Forum: General Discussions
Topic: Promoting payed cheats.
Replies: 50
Views: 45152

Re: Promoting payed cheats.

My though, it's simple.
Paying vs Donating.
Paying = Compensate for something with a that has been determined price
Donating = Provide compensation to something as a reward or a thank with voluntarily
Let choose a wise way
by corroder
Sat Mar 25, 2017 9:09 am
Forum: General Discussions
Topic: Cheat Table for online flash game
Replies: 0
Views: 2332

Cheat Table for online flash game

Is allow to post cheat table / trainer for online flash game ?

Thanks
by corroder
Fri Mar 10, 2017 12:15 pm
Forum: Cheat Engine Lua Scripting
Topic: Imitating scrollbar behaviour
Replies: 1
Views: 4379

Re: Imitating scrollbar behaviour

Just a illustration and this is a stupid way (because i don't know how to do in a smart way) :D local f = createForm() f.Height = 300 f.Width = 300 object = createPanel(f) object.Height = 100 object.Width = 100 object.Top = (f.Height - object.Height) / 2 object.Left = (f.Width - object.Width) / 2 ob...
by corroder
Thu Mar 09, 2017 3:25 pm
Forum: Cheat Engine
Topic: Change Images By Timer
Replies: 2
Views: 3534

Re: Change Images By Timer

t = {} t[1] = 'mainWall.jpg' t[2] = 'mainWall1.jpg' t[3] = 'mainWall2.jpg' t[4] = 'mainWall3.jpg' pics={} for i=1,4 do pics[i]=createPicture() pics[i].loadFromStream(findTableFile(t[i]).Stream) end f = createForm() f.Width = 400 f.Height = 400 img = createImage(f) img.Width = 400 img.Height = 400 i...
by corroder
Thu Mar 09, 2017 1:31 pm
Forum: Cheat Engine
Topic: Change Images By Timer
Replies: 2
Views: 3534

Change Images By Timer

Hi, how do this : First try : (stupid way) f = createForm() f.Width = 500 f.Height = 500 i1 = createImage(f) i1.Width = 500 i1.Height = 500 i1.Stretch = true i1.Picture.loadFromStream(findTableFile('mainWall.jpg').Stream) t_index = 1 counter = 3 c=createTimer(nil) c.Interval= 5000 c.OnTimer=function...
by corroder
Thu Mar 09, 2017 1:23 pm
Forum: General Discussions
Topic: Is CEF down again?
Replies: 12
Views: 9084

Re: Is CEF down again?

Eric wrote:
Thu Mar 09, 2017 12:22 pm
it's a selfentitled schoolkid with a tantrum who likely got angry when we didn't help him properly and now is screaming like a bitch at the forum filling all the bandwidth
++METHOS wrote:
Thu Mar 09, 2017 12:39 pm
That sounds about right.
to whom the words ... :D :(
by corroder
Sat Mar 04, 2017 4:34 am
Forum: Cheat Engine Lua Scripting
Topic: Process Killer
Replies: 0
Views: 3510

Process Killer

Hi there, This script is to get and attach process to CE. --- Process Handler function GetTheProcessList() local T = {} local SL=createStringlist() getProcesslist(SL) for i=0,strings_getCount(SL)-1 do T[i] = strings_getString(SL,i) end return T end function GetPros(sender) local PL = GetTheProcessLi...
by corroder
Fri Mar 03, 2017 2:04 pm
Forum: General Discussions
Topic: Introducing First
Replies: 2
Views: 3302

Re: Introducing First

SunBeam wrote:
Fri Mar 03, 2017 10:36 am
You name is not corroder :) That's a nick name :P Hi there, greets from SunBeam. Short name's Dan, based in Romania.

Of course, I am also never seen members use their real name in a forum (yet)
Btw,

Greetings,
My nick name is corroder, short name is Vien
Glad to know you all
Regards :P