zer0patches Newbie cheater
Reputation: 3
Joined: 14 Jul 2011 Posts: 10
|
Posted: Thu Jul 14, 2011 11:24 pm Post subject: Anyone have any tips for finding a dialog check? |
|
|
I'm trying to find a dialog check in a game.
I'm guessing that it's something like:
if (test.dialogEnabled()){
showdialog(test);
}
or more OOP
showDialog(test){
if(somecheckpasses) showdialog();
}
I can force the dialog open and close in game but I have difficulty in finding the check in memory.
It;s actually a precursor to some other stuff I want to do but I need to find where the dialog is instanced or in the case it already exists, the method that shows the dialog.
There are strings lists referencing methods like Dlg_toggleDialog so it may already be loaded in mem and just hidden by the game. Which would probably make more sense since it is a game and speed is everything and to hell with memory requirements.
Any direction you could point me in?
I'll give you a cookie. =p
|
|