Search found 13 matches
- Sat Jan 29, 2022 10:50 pm
- Forum: Cheat Engine
- Topic: curious expedition please help
- Replies: 8
- Views: 3408
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...
- Sat Mar 10, 2018 4:15 am
- Forum: Tables
- Topic: Dying Light - table v: 4.0.2 CT
- Replies: 302
- Views: 324085
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):
A stripped down table with just the teleporter (No auto attach, just whats needed for importing and the teleporter it self):
- Sun Mar 05, 2017 6:06 am
- Forum: Tables
- Topic: Dishonored - table v: 5.0.2 CT
- Replies: 12
- Views: 65162
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.
But the chaos still goes up.
- Fri Mar 03, 2017 11:34 pm
- Forum: Cheat Engine Lua Scripting
- Topic: Beginner Help Needed
- Replies: 20
- Views: 51020
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.
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.
- Fri Mar 03, 2017 11:06 pm
- Forum: Cheat Engine Lua Scripting
- Topic: Beginner Help Needed
- Replies: 20
- Views: 51020
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')
- Fri Mar 03, 2017 11:02 pm
- Forum: Cheat Engine Lua Scripting
- Topic: Beginner Help Needed
- Replies: 20
- Views: 51020
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...
- Fri Mar 03, 2017 10:20 pm
- Forum: Cheat Engine Lua Scripting
- Topic: Beginner Help Needed
- Replies: 20
- Views: 51020
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...
- Fri Mar 03, 2017 10:12 pm
- Forum: Cheat Engine Lua Scripting
- Topic: Beginner Help Needed
- Replies: 20
- Views: 51020
Re: Beginner Help Needed
Though I remember pairs returning integers as keys, so this my work.
But ipairs looks exclusively for integer key.
Code: Select all
-- It wasn't right keep going.. Sorry
- Fri Mar 03, 2017 10:09 pm
- Forum: Cheat Engine Lua Scripting
- Topic: Beginner Help Needed
- Replies: 20
- Views: 51020
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...
- Fri Mar 03, 2017 9:55 pm
- Forum: General Gamehacking
- Topic: Learn to Creat Cheat Tables
- Replies: 5
- Views: 13945
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.
I tend to redo the tutorial with updates just to see how and what has changed.
- Fri Mar 03, 2017 9:50 pm
- Forum: Cheat Engine Lua Scripting
- Topic: Beginner Help Needed
- Replies: 20
- Views: 51020
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.
- Fri Mar 03, 2017 9:48 pm
- Forum: Cheat Engine Lua Scripting
- Topic: Beginner Help Needed
- Replies: 20
- Views: 51020
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...
- Fri Mar 03, 2017 9:29 pm
- Forum: Cheat Engine Lua Scripting
- Topic: [Solved] Read Memory Stream form findTableFile?
- Replies: 6
- Views: 8450
[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?