Search found 13 matches

by Speedwagonz
Sat Jan 29, 2022 10:50 pm
Forum: Cheat Engine
Topic: curious expedition please help
Replies: 8
Views: 2991

Re: curious expedition please help

hello I am trying to make a trainer for the curious expedition. the issue is address changes COMPLETELY not a single similarity and I am unable to make pointer scans for this reason. Also Single pointer scans lists give me 0 results also I have only found success in finding pointers manually, thoug...
by Speedwagonz
Sat Mar 10, 2018 4:15 am
Forum: Tables
Topic: Dying Light - table v: 4.0.2 CT
Replies: 300
Views: 296079

Re: Dying Light - table v: 1.0.3 CT

By request Metal Gear Survive (Single Player Mode) Teleport to waypoint

A stripped down table with just the teleporter (No auto attach, just whats needed for importing and the teleporter it self):
by Speedwagonz
Sun Mar 05, 2017 6:06 am
Forum: Tables
Topic: Dishonored - table v: 5.0.2 CT
Replies: 10
Views: 56397

Re: Dishonored (x32) v: 1.0.0.0 - I2 Dishonored CET v: 1.0.1

Yes, It was working for me, you could pillage and kill at you leisure, and no one will know (see you).

But the chaos still goes up.
by Speedwagonz
Fri Mar 03, 2017 11:34 pm
Forum: Cheat Engine Lua Scripting
Topic: Beginner Help Needed
Replies: 20
Views: 48285

Re: Beginner Help Needed

Total understand, sorry for spoilers..
I learn best by trying and doing, not by being told, so I think I know what you mean.
Plus some times you just want to see what you will come up with verses others.
by Speedwagonz
Fri Mar 03, 2017 11:06 pm
Forum: Cheat Engine Lua Scripting
Topic: Beginner Help Needed
Replies: 20
Views: 48285

Re: Beginner Help Needed

Creating a directory is usually the most difficult part. Most use lua file systems (lfs), but here is a hacky why to get it done.

Code: Select all

os.execute('mkdir someDirectory')
by Speedwagonz
Fri Mar 03, 2017 11:02 pm
Forum: Cheat Engine Lua Scripting
Topic: Beginner Help Needed
Replies: 20
Views: 48285

Re: Beginner Help Needed

File io in lua is a little different. But still much the same as most other languages. local file, err = io.open('somefile.txt', 'w') if file and not err then io.output(file) io.write('Some cool stuff') file:write('Is going down!') -- Can't remember if this append line ends for not I think I does. i...
by Speedwagonz
Fri Mar 03, 2017 10:20 pm
Forum: Cheat Engine Lua Scripting
Topic: Beginner Help Needed
Replies: 20
Views: 48285

Re: Beginner Help Needed

You may need to remove based on integer key. reminders={} while input:lower() ~= 'add' .. 'remove' .. 'save' .. 'exit' do print('Reminders:') for i, v in pairs(reminders) do print(i,v) end print('Available commands: (add / remove / save / exit)') input = io.read() if input:lower() == 'add' then prin...
by Speedwagonz
Fri Mar 03, 2017 10:12 pm
Forum: Cheat Engine Lua Scripting
Topic: Beginner Help Needed
Replies: 20
Views: 48285

Re: Beginner Help Needed

Though I remember pairs returning integers as keys, so this my work.

Code: Select all

-- It wasn't right keep going.. Sorry
But ipairs looks exclusively for integer key.
by Speedwagonz
Fri Mar 03, 2017 10:09 pm
Forum: Cheat Engine Lua Scripting
Topic: Beginner Help Needed
Replies: 20
Views: 48285

Re: Beginner Help Needed

Sorry you were comparing a number to a string. forgot the tonumber function reminders={} while input~="add" .. "remove" .. "save" .. "exit" do print("Reminders:") for i,v in pairs(reminders) do print(i,v) end print("Available commands: (add / remove / save / exit)") input=io.read() if input=="add" t...
by Speedwagonz
Fri Mar 03, 2017 9:55 pm
Forum: General Gamehacking
Topic: Learn to Creat Cheat Tables
Replies: 5
Views: 11938

Re: Learn to Creat Cheat Tables

Seriously the Cheat Engine tutorial helps a lot, more then you may think, but you will have to really read the whole thing.
I tend to redo the tutorial with updates just to see how and what has changed.
by Speedwagonz
Fri Mar 03, 2017 9:50 pm
Forum: Cheat Engine Lua Scripting
Topic: Beginner Help Needed
Replies: 20
Views: 48285

Re: Beginner Help Needed

You may want to put the ipairs loop first so the index will be as expected if allowing both index and value based removal at the same time.
by Speedwagonz
Fri Mar 03, 2017 9:48 pm
Forum: Cheat Engine Lua Scripting
Topic: Beginner Help Needed
Replies: 20
Views: 48285

Re: Beginner Help Needed

It sounds like another loop with ipairs should worK.. reminders={} while input~="add" .. "remove" .. "save" .. "exit" do print("Reminders:") for i,v in pairs(reminders) do print(i,v) end print("Available commands: (add / remove / save / exit)") input=io.read() if input=="add" then print("What do you...
by Speedwagonz
Fri Mar 03, 2017 9:29 pm
Forum: Cheat Engine Lua Scripting
Topic: [Solved] Read Memory Stream form findTableFile?
Replies: 6
Views: 7252

[Solved] Read Memory Stream form findTableFile?

I'm am trying to read a table file, right now I just save it to disc then read file as normal, but how do I read the memory stream directly?