View previous topic :: View next topic |
Do you think this would be useful? |
Yes |
|
100% |
[ 4 ] |
No |
|
0% |
[ 0 ] |
|
Total Votes : 4 |
|
Author |
Message |
compinerd How do I cheat?
Reputation: 0
Joined: 04 Oct 2019 Posts: 4
|
Posted: Sun Feb 11, 2024 2:49 am Post subject: Feature Request - Copy Results to other Tab |
|
|
Oftentimes i find myself in a situation in which i have searched for 2 or more values in one Scan Tab but i wanna narrow it down, because if i do it after naming gets messy because its hard to tell which value is connected to which ingame value.
It would be great if i can open a 2nd or 3rd tab and copy the Results from the first tab into them to diversivy the search and safe scans/time
I didnt read thro all Forums but i hope noone requested something like this yet, if possible i'd like to get some feedback and hope this could get implemented
it could look something like i uploaded, maybe with a Ctrl+V to input the values (if thats possible without too bad lag)
best regards
comps
Description: |
Edited Screenshot of the Context Menu of a new Search Tab |
|
Filesize: |
13 KB |
Viewed: |
7974 Time(s) |

|
|
|
Back to top |
|
 |
Csimbi I post too much
Reputation: 97
Joined: 14 Jul 2007 Posts: 3282
|
Posted: Sun Feb 11, 2024 5:51 am Post subject: |
|
|
The values in the list you see are not all the results.
The results are stored on the disk.
I asked DB to change how it works (data is written twice at the moment), not sure whether anything's changed since there was no new release for a year now.
Back to your request, once my suggestion was implemented, it would be fairly straightforward to fork a previously performed search (i.e. reuse previous search data in another search window like you suggest).
Would it be useful? Yes. However, truth to be told, it's not a critical feature I would use on a daily basis. I think 98% of the searches are covered by the current functionality. But, as I said, I wish the files were handled differently.
|
|
Back to top |
|
 |
Dark Byte Site Admin
Reputation: 467
Joined: 09 May 2003 Posts: 25669 Location: The netherlands
|
|
Back to top |
|
 |
Csimbi I post too much
Reputation: 97
Joined: 14 Jul 2007 Posts: 3282
|
Posted: Sun Feb 11, 2024 11:18 am Post subject: |
|
|
Wow - nice!
|
|
Back to top |
|
 |
vovasivy Cheater
Reputation: 0
Joined: 09 Jun 2021 Posts: 42
|
Posted: Sat May 04, 2024 10:18 pm Post subject: splitscanintonewtab.lua ??? |
|
|
Can you explain what's wrong?
Description: |
|
Filesize: |
32.79 KB |
Viewed: |
6605 Time(s) |

|
|
|
Back to top |
|
 |
Dark Byte Site Admin
Reputation: 467
Joined: 09 May 2003 Posts: 25669 Location: The netherlands
|
Posted: Mon May 06, 2024 5:58 am Post subject: |
|
|
if miAddTab.enabled then should be if MainForm.miAddTab.enabled then
_________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping |
|
Back to top |
|
 |
vovasivy Cheater
Reputation: 0
Joined: 09 Jun 2021 Posts: 42
|
Posted: Mon May 06, 2024 10:59 pm Post subject: |
|
|
I corrected it as you wrote. The search tabs freeze, have to restart the Cheat Engine.
Description: |
|
Filesize: |
52.1 KB |
Viewed: |
6460 Time(s) |

|
|
|
Back to top |
|
 |
Game Hacking Dojo Master Cheater
Reputation: 1
Joined: 17 Sep 2023 Posts: 250
|
Posted: Wed May 08, 2024 6:42 am Post subject: |
|
|
For now, the only way to do the split is to run CE as an administrator. And it works fine. We need to find a workaround for this.
I have made a simple solution, so you don't have to run CE as an admin.
This is not the most viable solution but it works. However, you have to wait until the <processing> is not shown on the addresses then you can perform the split.
I'm looking forward to better solutions
Code: | function delay(seconds)
local start = os.clock()
while os.clock() - start < seconds do sleep(5) end
end
function splitScanIntoNewTab()
if MainForm.miAddTab.enabled then
local filename=getCurrentMemscan().ScanresultFolder..'.splitscan.savestate' --files starting with a . do not get copied so this is safe
saveMemoryScan_internal(filename)
MainForm.miAddTab.doClick()
delay(2) --adding a delay of 2 seconds
loadMemoryScan_internal(filename)
end
end
local mi=createMenuItem(MainForm.Menu)
mi.Caption=translate('Split scan into new tab')
mi.ShortCut=textToShortCut('Ctrl+Alt+T')
mi.OnClick=splitScanIntoNewTab
mi.ImageIndex=MainForm.miAddTab.ImageIndex
MainForm.Menu.Items[0].Insert(MainForm.miAddTab.MenuIndex+1,mi) |
|
|
Back to top |
|
 |
|