I was working on fixing the gwa2 and fixed most the patterns and other things like rendering.... before the guy stopped working with me and went and tried to sell bots to the public. which then backfired on him because he tried to use a flawed .a3x method to obfuscate the code --- here is the rest of the render fix you need!
'What you reap is what you sow!'
'What you reap is what you sow!'
Code:
FUNC ENABLERENDERING()
MEMORYWRITE($MDISABLERENDERING, 0)
ENDFUNC
FUNC DISABLERENDERING()
IF MEMORYREAD(GETVALUE('DisableRendering')) THEN
ENABLERENDERING()
ELSE
MEMORYWRITE($MDISABLERENDERING, 1)
ENDIF
ENDFUNC