Quote:
Originally Posted by ~Crystaline
I've been doing trial & error and so far it won't show nearby character's name. Anyone have the exact offsets under 1014? Such as Name.Length, StringCount, or whatever it is. I have checked CptSky's & Redux, but still no luck.
|
If I recall correctly on 5065 you must send a NetStringPacker at offset 90 containing the character name. It should follow the following structure:
| Offset | Data Type | Description | Example |
| 0 | BYTE | Strings Count | 2 |
| 1 | BYTE | String Length | 5 |
| 2 | STRING | String Content | Hello |
| 7 | BYTE | String Length | 3 |
| 8 | STRING | String Content | You |
Credits:
So for example, if your character is named test this is what your packet should look like:
| Offset | Value |
| 90 | 1 |
| 91 | 4 |
| 92 | 116 |
| 93 | 101 |
| 94 | 115 |
| 95 | 116 |