January 12, 2017 — by aixxe
We're going to take a look at the ever so popular glow outline effect present in various Source games. This has well and truly been done to death but with the most prominent public code being horribly written and the users of it having no idea how it works I thought I'd simplify things and post my own take on it.
December 31, 2016 — by aixxe
In this post I'll be covering some of my methods for debugging and testing internal Source projects. This is the first part where we'll mainly focus on setting up a dedicated game server for online testing. Later on we'll dive into the game libraries where I'll show you how to find various classes and pointers with gdb.
November 13, 2016 — by aixxe
As promised, here's the first in a series of follow-up posts on my initial 'introduction to Source hacking' post. This time we'll be adding the crucial missing feature from our skin changer: the ability to set custom knives.
October 28, 2016 — by aixxe
This time we'll be taking a look at osu! and more specifically the Relax modifier in the Standard gamemode. First off, we'll build a beatmap parser and then we'll use it to implement basic input automation externally. I'll be using C++ but any language that can read files and use Windows APIs should work just fine.
October 16, 2016 — by aixxe
Clan tags in Counter-Strike: Global Offensive are tied to groups you've joined in the Steam Community. These groups can either be public or require an invitation to join, on top of this, the tags are unique to each group so if you're not a member you won't be able to use that tag, right? Well.. not exactly.
September 28, 2016 — by aixxe
In this tutorial we'll be looking at CreateMove - the function of choice for anyone looking to manipulate player input. Specifically, we'll be looking at the CreateMove function defined in the IClientMode interface. I'll be going through one of the simpler methods of finding it, hooking it and finally creating a signature that should persist through game updates.
September 19, 2016 — by aixxe
The debate of 'best pointing input method' in osu! is one that rages on to this day with no end in sight. Some players prefer a graphics tablet while others use a mouse and let's not forget the few touchscreen users. When I first started playing with only a mouse at my disposal I wanted to try the alternatives at least once, but the closest I had to a tablet was my Galaxy Note 3 and that's exactly what this post is all about.
September 18, 2016 — by aixxe
In this post, I'll be touching on some of the concepts of internal hacking, specifically on Linux and how we can modify game behavior by reading, writing memory and intercepting function calls. This is mainly for those who already have some basic experience, likely with game hacking on Windows, and want to build existing or brand new projects on Linux.
September 10, 2016 — by aixxe
Recently I've been working on various projects for different Source games, all of which are loaded into the game process as a shared library. Everything works well, apart from when any changes need to be made to the code. Up until now I've been restarting the game every time I changed even a single line, simply because I wasn't sure how to unload the library. Fortunately, this is no longer an issue.
September 6, 2016 — by aixxe
Momentum Mod is a free standalone Source Engine modification that brings surf and bunnyhopping gamemodes from Counter-Strike: Source with a variety of quality of life improvements. At the time of writing it's still in an early stage but the mod shows great potential. You can even play on existing maps, but that's where you might run into some issues.