Got it working thanks!Danilo wrote:-snip-
Search found 3 matches
- Tue Nov 26, 2013 9:04 pm
- Forum: Coding Questions
- Topic: Help Converting FindPattern Functions
- Replies: 4
- Views: 1910
Re: Help Converting FindPattern Functions
- Tue Nov 26, 2013 5:49 pm
- Forum: Coding Questions
- Topic: Help Converting FindPattern Functions
- Replies: 4
- Views: 1910
Re: Help Converting FindPattern Functions
:?:
Procedure DataCompare(*pData.Byte, *bMask.Byte, *szMask.Ascii)
While *szMask\a
If *szMask\a = 'x' And (*pData\b <> *bMask\b)
ProcedureReturn #False
EndIf
*szMask + 1
*pData + 1
*bMask + 1
Wend
ProcedureReturn Bool( *szMask\a = 0 )
EndProcedure
Procedure FindPattern(dwAddress, dwLen ...
Procedure DataCompare(*pData.Byte, *bMask.Byte, *szMask.Ascii)
While *szMask\a
If *szMask\a = 'x' And (*pData\b <> *bMask\b)
ProcedureReturn #False
EndIf
*szMask + 1
*pData + 1
*bMask + 1
Wend
ProcedureReturn Bool( *szMask\a = 0 )
EndProcedure
Procedure FindPattern(dwAddress, dwLen ...
- Mon Nov 25, 2013 11:47 pm
- Forum: Coding Questions
- Topic: Help Converting FindPattern Functions
- Replies: 4
- Views: 1910
Help Converting FindPattern Functions
ello, I am working on a plugin for a game. And am in need to using signatures to pull offsets from the game. As coding offsets directly into the plugin will cause the plugin to break after future updates (new offsets). So the purpose of it is to keep the plugin compatible with a majority of future ...