Well, I'm trying make a function to get name, but I only managed to get name inside of stage.
Can someone help me?
Edit:
I'm using 2008 July 21 version files.
Vusion are you correct. I did a method but this works just inside stage.
I need help. =/
Well, I'm trying make a function to get name, but I only managed to get name inside of stage.
Can someone help me?
Edit:
I'm using 2008 July 21 version files.
Vusion are you correct. I did a method but this works just inside stage.
I need help. =/
Last edited by eduardo03; 25-01-12 at 09:21 PM.
Could you be a little more specific? Where are you trying to use the function and are you sure you can't use the existing ones? File and function name you're trying to use it in?
Lets say 'Character info', if yes look at freebase source you will get awesome things from there and one of them GetCharName..
And, which the address of 2008 version?
Sorry I don't have the 2008 Runnable, but the way I did it for ijji's NA Gunz is:
To get YOUR character name outside a game, in game room or lobby, you can find the instance to the ZMyInfo class and you will see in the Gunz 1.5 Source that was released, that your character name is a member of that class.Code:char *GetCharacterName(DWORD ZCharacter) //IJJI Gunz - January 25, 2012 { return (char*)(**(DWORD**)(ZCharacter + 0x578) - *(DWORD*)(ZCharacter + 0x578) - 0x66D6); } //This is IN-GAME only, not game room or lobby. // Also, the one from Snail's Freebase source is basically the same as this one.. IN-GAME.
To get other players' character name outside of a game, in game room or lobby, you could probably look for something related to the Player List Box, not really sure.