I finally found the two lines in the assembly code that impact the thing I want to change, however they are both required at the same time and they both need to be NOPed out.
[ENABLE]
aobscanmodule(INJECT,Game.exe,74 35 B1 2D A3 30 00) // should be unique
INJECT:
db 90 90
registersymbol(INJECT)
[DISABLE]
INJECT:
db 74 35
unregistersymbol(INJECT)
dealloc(newmem)
But I basically need to do this twice - having it scan for a particular AOB and replace the first two bytes with 90 90. Can this be done in a single code snippet?