Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Enhanced bot using memory reads
#56
I tried iModGame on the iOS which I believe uses memory reads. It is not a "bot" but simply cycles through searching for bases using certain thresholds (Gold, Elixir, DE, trophy cups, TH level, player XP level). It is extremely effective, but needs to be updated every time Supercell releases an update. Presumably, this is because the memory addresses change with each update.

So: a memory-read bot will need to be updated with the memory addresses every time Supercell updates the game

The most important aspect of memory-read bot is availability of information. iModGame allows searches based on several perimeters, user-defined in a scripting window. Complicated search criteria can be user-defined, such as:

Code:
G + E > 300000 AND TH_LEVEL < 10
OR
G > 200000 AND XP_LEVEL < 65
OR
DE > 1000 AND CUPS > 30

where iModGame will search for a base that meets the criteria.

I have been messing with the AutoIt code for about a week, changing a few troop deployment settings and base search criteria. I'm trying to get familiar enough with the code to make contributions. It's very straightforward, but it exclusively uses screen observation and comparing the pixels to reference images to obtain information. I can envision using AutoIt to scan the entire screen and obtain more information (number of walls, levels of each wall segment, weapon levels, layout style, etc) but this would be a lot faster/reliable using direct memory reads.

Unfortunately, it appears memory reads must be performed within the Bluestacks Android environment. It is possible to make memory reads outside of Bluestacks, for example, using a Windows program that peeks inside of Bluestacks?
Reply
 


Messages In This Thread
Enhanced bot using memory reads - by Greyman - 01-16-2015, 10:47 PM
RE: Enhanced bot using memory reads - by Greyman - 01-17-2015, 06:59 PM
RE: Enhanced bot using memory reads - by bosslaw - 01-17-2015, 01:15 AM
RE: Enhanced bot using memory reads - by Greyman - 01-17-2015, 07:13 PM
RE: Enhanced bot using memory reads - by Greyman - 01-17-2015, 07:18 PM
RE: Enhanced bot using memory reads - by Konloch - 01-17-2015, 07:14 PM
RE: Enhanced bot using memory reads - by Greyman - 01-17-2015, 09:58 PM
RE: Enhanced bot using memory reads - by Greyman - 01-18-2015, 12:33 PM
RE: Enhanced bot using memory reads - by 5pArxz - 01-17-2015, 09:13 PM
RE: Enhanced bot using memory reads - by Envyus - 01-17-2015, 09:42 PM
RE: Enhanced bot using memory reads - by Greyman - 01-17-2015, 09:50 PM
RE: Enhanced bot using memory reads - by Envyus - 01-17-2015, 09:53 PM
RE: Enhanced bot using memory reads - by Greyman - 01-17-2015, 10:04 PM
RE: Enhanced bot using memory reads - by Greyman - 01-18-2015, 12:21 PM
RE: Enhanced bot using memory reads - by Greyman - 01-17-2015, 11:20 PM
RE: Enhanced bot using memory reads - by 5pArxz - 01-17-2015, 11:39 PM
RE: Enhanced bot using memory reads - by 5pArxz - 01-18-2015, 12:11 AM
RE: Enhanced bot using memory reads - by Greyman - 01-18-2015, 12:27 PM
RE: Enhanced bot using memory reads - by Greyman - 01-18-2015, 12:45 PM
RE: Enhanced bot using memory reads - by Greyman - 01-18-2015, 01:01 PM
RE: Enhanced bot using memory reads - by Greyman - 01-18-2015, 01:23 PM
RE: Enhanced bot using memory reads - by Greyman - 01-18-2015, 01:28 PM
RE: Enhanced bot using memory reads - by Greyman - 01-18-2015, 03:52 PM
RE: Enhanced bot using memory reads - by Meskalin - 01-18-2015, 06:43 PM
RE: Enhanced bot using memory reads - by Greyman - 01-18-2015, 07:30 PM
RE: Enhanced bot using memory reads - by 5pArxz - 01-18-2015, 06:53 PM
RE: Enhanced bot using memory reads - by Meskalin - 01-18-2015, 07:26 PM
RE: Enhanced bot using memory reads - by 5pArxz - 01-18-2015, 07:28 PM
RE: Enhanced bot using memory reads - by 5pArxz - 01-18-2015, 07:34 PM
RE: Enhanced bot using memory reads - by Greyman - 01-18-2015, 07:37 PM
RE: Enhanced bot using memory reads - by 5pArxz - 01-18-2015, 07:36 PM
RE: Enhanced bot using memory reads - by Greyman - 01-18-2015, 08:26 PM
RE: Enhanced bot using memory reads - by 5pArxz - 01-18-2015, 07:45 PM
RE: Enhanced bot using memory reads - by Greyman - 01-18-2015, 07:54 PM
RE: Enhanced bot using memory reads - by 5pArxz - 01-18-2015, 07:57 PM
RE: Enhanced bot using memory reads - by Greyman - 01-18-2015, 08:07 PM
RE: Enhanced bot using memory reads - by Greyman - 01-18-2015, 08:20 PM
RE: Enhanced bot using memory reads - by 5pArxz - 01-18-2015, 08:12 PM
RE: Enhanced bot using memory reads - by Greyman - 01-18-2015, 08:19 PM
RE: Enhanced bot using memory reads - by 5pArxz - 01-18-2015, 08:17 PM
RE: Enhanced bot using memory reads - by Greyman - 01-18-2015, 08:21 PM
RE: Enhanced bot using memory reads - by 5pArxz - 01-18-2015, 08:21 PM
RE: Enhanced bot using memory reads - by 5pArxz - 01-18-2015, 08:25 PM
RE: Enhanced bot using memory reads - by 5pArxz - 01-18-2015, 08:28 PM
RE: Enhanced bot using memory reads - by smoore - 01-24-2015, 01:38 AM
RE: Enhanced bot using memory reads - by Greyman - 01-24-2015, 06:42 PM
RE: Enhanced bot using memory reads - by Greyman - 01-24-2015, 06:35 PM
RE: Enhanced bot using memory reads - by smoore - 01-24-2015, 04:38 AM
RE: Enhanced bot using memory reads - by Antidote - 01-24-2015, 09:01 AM
RE: Enhanced bot using memory reads - by Greyman - 01-24-2015, 06:48 PM
RE: Enhanced bot using memory reads - by Greyman - 02-06-2015, 08:12 PM
RE: Enhanced bot using memory reads - by Greyman - 02-06-2015, 10:05 PM
RE: Enhanced bot using memory reads - by kojometa - 02-09-2015, 02:12 AM
RE: Enhanced bot using memory reads - by Snarg - 02-09-2015, 02:21 AM
RE: Enhanced bot using memory reads - by Greyman - 02-10-2015, 04:24 PM
RE: Enhanced bot using memory reads - by Greyman - 02-10-2015, 04:30 PM
RE: Enhanced bot using memory reads - by Samota - 02-10-2015, 06:15 PM
RE: Enhanced bot using memory reads - by Greyman - 02-11-2015, 10:45 AM
RE: Enhanced bot using memory reads - by Samota - 02-11-2015, 03:00 PM
RE: Enhanced bot using memory reads - by Droid - 02-12-2015, 06:02 PM
RE: Enhanced bot using memory reads - by Greyman - 02-12-2015, 07:13 PM
RE: Enhanced bot using memory reads - by Droid - 02-18-2015, 07:35 PM
RE: Enhanced bot using memory reads - by Snarg - 02-19-2015, 01:09 AM
RE: Enhanced bot using memory reads - by Greyman - 02-19-2015, 08:51 AM
RE: Enhanced bot using memory reads - by Greyman - 02-12-2015, 10:15 PM
RE: Enhanced bot using memory reads - by Samota - 02-13-2015, 03:24 PM
RE: Enhanced bot using memory reads - by Greyman - 02-19-2015, 08:43 AM
RE: Enhanced bot using memory reads - by Snarg - 02-21-2015, 07:52 AM
RE: Enhanced bot using memory reads - by Greyman - 03-04-2015, 09:53 AM

Forum Jump:


Users browsing this thread: 6 Guest(s)

About The Bytecode Club

We're a community focused on Reverse Engineering, we try to target Java/Android but we also include other langauges/platforms. We pride ourselves in supporting and free and open sourced applications.

Website