| QUOTE (Psilocybe @ Apr 27 2004, 10:41 PM) |
awsome
can i just ask what the scene geometry section is? cam angle or something?
also could i recommend you include fstream and do an output file for that? also is there a way to put what the current value is? i know it'll just be the first 3 bytes (6numbers) but it would be nice
how do you search for offsets anyway to output it? i need to look into that as i see where it'd come in handy, don't kow how to code that myself |
Hey sorry about the lateness of this. I just now noticed your question and request in that thread. I could definately make a version to output the stuff to a file. The program is written in C so I won't be using fstream but instead fprintf(). But anyways all C code is do able in C++ so if you wanted to display the offset use the ftell() function which which return the current location in a file along the printf using the %x (or %X for uppercase) modifier to display the value in hex. If you wanted to do it in C++ (I haven't done C++ in a long time lol) I beleive you would do something like this:
| CODE |
cout<< setiosflags(ios::hex); cout<< 1234 < |
and that would display 1234 in hex, in order to switch it back to decimal just do:
| CODE |
cout<< setiosflags(ios::dec);
|
Hope that helps. Also just to let you know I'm planning on releasing a ppf pack for different bios colors. I just have to wait for my Xenium to arrive to test them all(had a bad TSOP flash while messing around)