Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

If you really just want to make every built-in weapon automatic, unconditionally, you could do

for (var i = 1; i < 128; i++) {
    weapon_set_auto(i, true);
}

Replicating Steroids-like behaviour is a little trickier and would probably involve timely setting clicked variable for the player.