local s = (8FFEh - value) ^ value) .. ';' .. value .. '::9'
gg.searchNumber (s, gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1)
	I'm trying to find values by this sample script but dont clearly understand how to send as input "next" value.
 
	Example: I must find 2 dwords, 8FFE, 0x999
 
	Lets name it A and B
 
	8FFE calculated by formula y = (A xor B) + B, y = (0x8FFE xor 0x999) + 0x999 = 9000
 
	So, before searching process I only know that decrypted value is 9000. Reversed formula y = (A - B) xor B. Xor values is unpredictable
 
	How to do valid search with that criteria? Any hint would be great