PyCheat Trainer Source #Linux Part 1
Ugtrain Trainer & Installation Tutorial #Linux Part 3





First you will need git and scanmem so let's install those.

Depending on which linux you're using i'll tag several system commands.

# sudo apt-get update
Or
# sudo yum update
Once you have updated now install git

# sudo apt-get install git
Or
# sudo yum install git

Ok now we can install scanmem

# sudo git clone https://github.com/scanmem/scanmem.git

now to locate the file

# ls

it should show you every file inside you're home folder, once you found scanmem

# cd foldername

if you obtained the source from the source repository (instead of a archive), run:

# ./autogen.sh

To build with gui:

# ./configure --prefix=/usr --enable-gui && make
# sudo make install
To build without gui:

# ./configure --prefix=/usr && make
# sudo make install
If you want to specify a prefix other than '/usr', make sure that /lib is in the LD_LIBRARY_PATH for root

Run ./configure --help for more details.

Now you're finished now lets use scanmem to hack a game

First you need to find the pid of the game.

# ps aux | grep gamename <------- don't put .exe at the end it's just window name
Or
# ps -A

once you found the pid open scanmem
# sudo scanmem

# pid game pid

Now go to the game example you have 1 ammo go to scanmem and type 1


Now go back to the game and pick up 1 ammo for example now we have 2 so go back to scanmem and type 2
you see now we have 1 match


So we can change the value of ammo by typing
set 20000 <----- ammo amount

Finished