| View previous topic :: View next topic |
| Author |
Message |
JustAnotherGuy How do I cheat?
Reputation: 0
Joined: 16 Aug 2013 Posts: 5
|
Posted: Mon Jun 01, 2015 9:38 am Post subject: How would you auto increment a value every few seconds? |
|
|
Hey, I remembered about cube world and wanting to see a big generated map, just got the idea of using cheat engine to teleport the player automatically
I found a table that has the ability to edit the location, so just need it to automatically update itself. Would it be easy to form some sort of a loop where it'd go in a square of however big you set it? Something a bit like this -
| Code: | xloc = something
zloc = something
for x in range(-100, 100)
for z in range(-100, 100):
newxloc = xloc+x
newzloc = zloc+z
wait(3)
|
Or even better, maybe something like this where it'd just keep going.
| Code: | xloc = something
zloc = something
while True:
i = 1
for x in range(-i, i):
for z in range(-i, i):
if x not in range(-i+1, i-1) and y not in range(-i+1, i-1):
newxloc = xloc+x
newzloc = zloc+z
wait(3)
|
I only know the basics of cheat engine so if someone could explain or post a link of what to do that'd be great
|
|
| Back to top |
|
 |
Rissorr Master Cheater
Reputation: 3
Joined: 17 Sep 2013 Posts: 273 Location: Israel!
|
Posted: Mon Jun 01, 2015 4:28 pm Post subject: |
|
|
| i did not understood for what you using the loop?
|
|
| Back to top |
|
 |
JustAnotherGuy How do I cheat?
Reputation: 0
Joined: 16 Aug 2013 Posts: 5
|
Posted: Mon Jun 01, 2015 5:11 pm Post subject: |
|
|
Well, it's kinda meant as an example of what I'm after, it's simple but obviously not compatible with cheat engine so was wondering if anyone who knows the relevant language might be able to help convert it into something usable Or even that what I'm after isn't that uncommon so there might be existing methods to do it
Just did the example as it's quite easy to understand and does actually work as python code :p
|
|
| Back to top |
|
 |
Alamer99 Expert Cheater
Reputation: 1
Joined: 04 Jan 2015 Posts: 136
|
Posted: Wed Jun 03, 2015 2:28 pm Post subject: |
|
|
Use Timers
And To Get A Random Number Use | Code: | | math.random(Start,End) |
|
|
| Back to top |
|
 |
|