Welcome to Gaming Made Easy
Here at GME, I provide the latest tools, applications, and scripts to all my users. By using my information I will ensure that your gaming experience will be enhanced and you will gain a competitive edge over other gamers.
I am open to new ideas, recommendations, and any questions so feel free to drop me an email.
My Favourite Content

TeamSpeak
TeamSpeak is very well-known for its communication abilities, as it allows many users to talk to eachother simultaneously.
View All

Nvidia Inspector
Nvidia Inspector allows user's huge amounts of GPU tweaking ability as well as access to top gamers game settings.
View All

AutoHotkey
If you are wanting to learn a scripting language AutoHotkey is a great language to start with. It is easy to use, yet has the ability to perform powerful tasks. A number of the scripts I have posted use AutoHotkey.
View All
Scripts
Ambient Sound Remover - CAll Of DUty AW
The above script removes all the ambient sound from Call of Duty - Advanced Warfare. This enhances the sound of footstepts, allowing you to pinpoint your enemies. This is a basic script which uses the command prompt to rename the sound files in your Call Of Duty folder.
View All

MSI Afterburner
If you are the overclocking type, then MSI Afterburner is the tool for you. This great tool allows you to keep an eye on all of your PC components.
Download

GTactix
GTactix is the best tactical planning tool to help you create game strategies. Whether you're a casual player or part of a competitive team, GTactix can help take your game to the next level.
Download
No-Recoil
#NoEnv
SendMode Input
_auto := true
~LButton::autofire()
+LButton::_auto := ! _auto
F1::ExitApp
autofire()
{
global _auto
if _auto
{
Loop
{
if GetKeyState("LButton", "P")
{
Sleep 10
mouseXY(0, 2)
}
else
break
} ;; loop
} ;; if
} ;; autofire()
mouseXY(x,y)
{
DllCall("mouse_event",uint,1,int,x,int,y,uint,0,int,0)
}
View All
Rapid Fire
/::Suspend
LButton::
Loop
{
SetMouseDelay 30
Click
If (GetKeyState("LButton","P")=0)
Break
}
View All