
--ON--
void GlassWallsOn()
{
if(GetAsyncKeyState(VK_"") &1) // Choose your hotkey
{
*(int*)ADR_GLASSWALLS = 4;
}}
--OFF--
void GlassWallsOff()
{
if(GetAsyncKeyState(VK_"") &1) // Choose your hotkey
{
*(int*)ADR_GLASSWALLS = 0;
}}
--ADDRESS-- #define ADR_GLASSWALLS 0x00A4AD48

