1.4 Exp per Level Changing?

Slanesh

Golden Oldie
Golden Oldie
Sep 6, 2004
522
6
125
Stoke, England
Hey all. I'm trying to change the amount of exp needed per level with the 1.4 untouched M2Server. So far every other hex I've done has worked great (thanks to Gimp for linking the guide) EXCEPT for this one.

I'm using the guide at http://www.lomcn.co.uk/forum/showthread.php?t=31519 #18)

Code:
[color=Blue]18) For changing the experience of each level:[/color]
 
 Example, if u want only 50 for lvl 1 search
 for a 32 Bit unsigned long for 50 and u will see
 that it is = to 32 00 00 00
 
 So simply change 64 00 00 00 to 32 00 00 00
 
 Address: 000e84c0h
 1 level 64 00 00 00  (100)
 Address:000e84d0h
 2 lvl C8 00 00 00 (200)
 3 lvl 2C 01 00 00 (300)
 4 lvl 90 01 00 00 (400)
 5 lvl 58 02 00 00 (600)
 Address:000e84e0h
 6 lvl 84 03 00 00 (900)
 7 lvl B0 04 00 00 (1200)
 8 lvl A4 06 00 00 (1700)
 9 lvl C4 09 00 00 (2500)
 Address:000e84f0h
 10 lvl 70 17 00 00 (6000)
 11 lvl 40 1F 00 00 (8000)
 12 lvl 10 27 00 00 (10000)
 13 lvl 98 3A 00 00 (15000)
 Address:000e8500h
 14 lvl 30 75 00 00 (30000)
 15 lvl 40 9C 00 00 (40000)
 16 lvl 50 C3 00 00 (50000)
 17 lvl 70 11 01 00 (70000)
 Address:000e8510h
 18 lvl A0 86 01 00 (100000)
 19 lvl C0 D4 01 00 (120000)
 20 lvl E0 22 02 00 (140000)
 21 lvl 90 D0 03 00 (250000)
 Address:000e8520h
 22 lvl E0 93 04 00 (300000)
 23 lvl 30 57 05 00 (350000)
 24 lvl 80 1A 06 00 (400000)
 25 lvl 20 A1 07 00 (500000)
 Address:000e8530h
 26 lvl 60 AE 0A 00 (700000)
 27 lvl 40 42 0F 00 (1000000)
 28 lvl C0 5C 15 00 (1400000)
 29 lvl 40 77 1B 00 (1800000)
 Address:000e8540h
 30 lvl 80 84 1E 00 (2000000)
 31 lvl 00 9F 24 00 (2400000)
 32 lvl 80 B9 2A 00 (2800000)
 33 lvl 00 D4 30 00 (3200000)
 Address:000e8550h
 34 lvl 80 EE 36 00 (3600000)
 35 lvl 00 09 3D 00 (4000000)
 36 lvl 00 3E 49 00 (4800000)
 37 lvl 00 73 55 00 (5600000)
 Address:000e8550h
 34 lvl 80 EE 36 00 (3600000)
 35 lvl 00 09 3D 00 (4000000)
 36 lvl 00 3E 49 00 (4800000)
 37 lvl 00 73 55 00 (5600000)
 Address:000e8560h
 38 lvl 40 1F 7D 00 (8200000)
 39 lvl 40 54 89 00 (9000000)
 40 lvl 00 1B B7 00 (12000000)
 41 lvl 00 24 F4 00 (16000000)
 Address:000e8560h
 38 lvl 40 1F 7D 00 (8200000)
 39 lvl 40 54 89 00 (9000000)
 40 lvl 00 1B B7 00 (12000000)
 41 lvl 00 24 F4 00 (16000000)
 Address:000e8570h
 42 lvl 80 C3 C9 01 (30000000)
 43 lvl 80 F0 FA 02 (50000000)
 44 lvl 00 B4 C4 04 (80000000)
 45 lvl 00 0E 27 07 (120000000)
 Address:000e8580h
 46 lvl 00 38 9C 1C (480000000)
 47 lvl 00 CA 9A 3B (1000000000)
 48 lvl 00 5E D0 B2 (3000000000)
 49 lvl 00 C3 9D D0 (3500000000)
 Address:000e8590h
 50lvl 00 28 6B EE (4000000000)
 51 lvl 00 28 6B EE (4000000000)

When I search for the instances of the exp chains I wish to edit (such as 64 00 00 00) I get returning with loads of results, so I decided to search through the addresses, but find that none of them match (the ones mentionned in the guide are all 1 character longer than the ones found in the search - it's usually just a 'h' that's added at the end). I'm using the Hex Workshop program found in that guide. Do I just go ahead and change anything that's similar to the code shown in the guide or something?

NOTE: When I do a search for 64000000 hex (or 100 32 char unsigned) I get 113 results - of which the closest to the one shown in the guide reads '000E84CC' as opposed to the '000e84c0h' shown in the guide.
 
Last edited:

Slanesh

Golden Oldie
Golden Oldie
Sep 6, 2004
522
6
125
Stoke, England
Apologies for double post. When searching through the coding I found this (shown in attachment).

I can see the codes for each of the levels all nicely lined up (6400 0000, C800 0000, 2C01 0000, etc). Is this what I need to edit?
 

Attachments

  • codey.JPG
    codey.JPG
    187.1 KB · Views: 89