-
Notifications
You must be signed in to change notification settings - Fork 344
/
Copy pathRemove Values with Decimal Points.lua
51 lines (40 loc) · 2.12 KB
/
Remove Values with Decimal Points.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
--// Cheers to ParkourPenguin for his initial filter script, which saved me some time:
--// https://forum.cheatengine.org/viewtopic.php?p=5685269&sid=58fdc55ed1a1c516759178c37508fd69
--// README: To use this script, simply place it in the autorun directory of your Cheat Engine installation
--// folder. If you have CE open when you add this script, you will need to restart it.
--// You should see a new right-click menu item in the results list: "Remove values with decimal points"
--// NOTE: Consider right-clicking on one of the column headers (Address, Value, or Previous) to bring up
--// the menu. If you right-click on one of the results and choose "Remove values with decimal points",
--// then the result you right-clicked on will be removed since CE selects results with right-click
--// as well.
--// Store current list of search results
local foundList = getMainForm().Foundlist3
--// Set up item removal for click simulation
local menuItemRemove
for i=0, foundList.PopupMenu.Items.Count-1 do
if foundList.PopupMenu.Items[i].Name == "Removeselectedaddresses1" then
menuItemRemove = foundList.PopupMenu.Items[i]
break
end
end
--// Create menu item
local menuItem = createMenuItem(foundList.PopupMenu)
menuItem.Caption = "Remove values with decimal points"
--// When menu item is clicked, run this function
menuItem.OnClick = function()
--// Store "Found" results total for for-loop below
local found = foundList.Items.Count
for i = 0, found-1 do
--// Store "Value" results in variable
local valueString = getMainForm().Foundlist3.Items[i].SubItems[0]
--// If current values contain a decimal, then set their selected state to true
if string.match(valueString, "%.") then
foundList.Items[i].Selected = true
end
end
--// Simulate a click on "Remove selected addresses", which will remove
--// addresses selected from the above for-loop.
menuItemRemove.DoClick()
end
--// Create new right-click menu item in results list
foundList.PopupMenu.Items.insert(menuItemRemove.MenuIndex+2, menuItem)