Firehawk
First time out of the vault
Hello modders, and players of the Fallout series (I'm assuming Fallout 1 and 2)
I recently started up replaying Fallout 2, and I couldn't resist doing a little bit of hacking after finishing my playthrough.
Anyhow, I was poking around and found a function you guys might like.
http://www.nma-fallout.com/content.php?page=fo-modding-fo-list-itemlist
I was dissecting the Inventory Item data (and didn't get very far) when I found that webpage. It was going to be one hell of a problem to reference all of that in my code, so I instead decided to just seek out this function. It wasn't too hard to find, but this is quite a helpful function (For example, someone could code a Fallout 2 Item dumper.)
But yeah, consider this my welcome to the forums. I hope to post more snippets as I work with Fallout 2.
Cheers,
Firehawk.
I recently started up replaying Fallout 2, and I couldn't resist doing a little bit of hacking after finishing my playthrough.
Anyhow, I was poking around and found a function you guys might like.
Code:
char* GetItemName( DWORD id )
{
static DWORD pGetItemName = 0x49EAFC;
__asm{
mov eax, id
call pGetItemName
}
}
http://www.nma-fallout.com/content.php?page=fo-modding-fo-list-itemlist
I was dissecting the Inventory Item data (and didn't get very far) when I found that webpage. It was going to be one hell of a problem to reference all of that in my code, so I instead decided to just seek out this function. It wasn't too hard to find, but this is quite a helpful function (For example, someone could code a Fallout 2 Item dumper.)
But yeah, consider this my welcome to the forums. I hope to post more snippets as I work with Fallout 2.
Cheers,
Firehawk.