Page 5 of 9 FirstFirst ... 34567 ... LastLast
Results 61 to 75 of 124

Thread: SEQ Borked with 8/15 patch.

  1. #61
    Developer
    Join Date
    Jul 2004
    Posts
    920

    Re: SEQ Borked with 8/15 patch.

    That what Razzle means when he says bit fields that turn things on/off.

    If all they did was change from fixed length strings to null terminated strings, the NetClient changes will be tedious but easy. If they have a lot of places where they pass bitfields that control what data is sent, you are going to need someone to dissassemble the client to figure out what the rules are unless you can collect enough packets to reverse engineer it.

    In general, you usually find that they don't just stop sending things or massively change how the client and server talk. The data that was there before is more than likely still there. It is just packed differently.

  2. #62
    Developer
    Join Date
    Nov 2007
    Posts
    539

    Re: SEQ Borked with 8/15 patch.

    Start with assuming they will always send at least a null for each string.

    I dont see anything obvious about not sending some data so far. But going though a disassembly is not trivial. And I always prefered packets for figuring out player profiles. The disassembly is such a mess for that opcode. Some opcodes the disassembly fills the struct in such an obvious linear way they are a piece of cake.

    After i do some packet captures then tracing through and matching stuff you cannot figure out tends to be the way to find the final pieces.

    Step one should be to identify the first place within the data that the position of data varies. It should be right after some string that was always taking a fixed length. Using a character that has the most titles, last name, fill up bandoliers, potions etc to the max. Try to make the packet size as big as you can. Its easier to identify locations if you have some text to match it to.

    Update your struct in everquest.h to match orders and max array sizes. You will be copying the data there ultimately. So make them line up best you can. The offset is no longer valid after you have your first variable length item.

    Razzle

  3. #63
    Did you SEQ today? BlueAdept's Avatar
    Join Date
    Dec 2001
    Posts
    2,006

    Re: SEQ Borked with 8/15 patch.

    For the short time that I did it, everything was a fixed length. When they started variable lengths is when I couldn't figure things out.
    Filters for ShowEQ can now be found here. filters-5xx-06-20-05.tar.gz

    ShowEQ file section is here. https://sourceforge.net/project/show...roup_id=10131#

    Famous Quotes:

    Ratt: WTF you talkin' about BA? (Ok.. that sounds like a bad combo of Diffrent Strokes and A-Team)

    Razzle: I showeq my wife

  4. #64
    Developer
    Join Date
    Sep 2005
    Posts
    155

    Re: SEQ Borked with 8/15 patch.

    Yup, I understand the concept. I'm mapping things like level, class, class, bind, deity, hair etc from where they were to where they are. It's sort of making sense.

    Here's an idea of what I'm seeing in a major portion of the changes, the bandolier. Here's a sample of what it used to look like on my char (nothing in the bandolier):
    Code:
    13264 | 00 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00  | ................ 
    
    13280 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    
    13296 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    
    13312 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    
    13328 | 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff  | ................ 
    
    13344 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    
    13360 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    
    13376 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    
    13392 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    
    13408 | 00 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00  | ................ 
    
    13424 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    
    13440 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    
    13456 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    
    13472 | 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff  | ................ 
    
    13488 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    
    13504 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    
    13520 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    
    13536 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    
    13552 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................
    And approximately the same section now:
    Code:
    13184 | ff ff ff 00 00 00 00 00 ff ff ff ff 00 00 00 00  | ................ 
    
    13200 | 00 ff ff ff ff 00 00 00 00 00 ff ff ff ff 00 00  | ................ 
    
    13216 | 00 00 00 00 ff ff ff ff 00 00 00 00 00 ff ff ff  | ................ 
    
    13232 | ff 00 00 00 00 00 ff ff ff ff 00 00 00 00 00 ff  | ................ 
    
    13248 | ff ff ff 00 00 00 00 00 00 ff ff ff ff 00 00 00  | ................ 
    
    13264 | 00 00 ff ff ff ff 00 00 00 00 00 ff ff ff ff 00  | ................ 
    
    13280 | 00 00 00 00 ff ff ff ff 00 00 00 00 00 00 ff ff  | ................ 
    
    13296 | ff ff 00 00 00 00 00 ff ff ff ff 00 00 00 00 00  | ................ 
    
    13312 | ff ff ff ff 00 00 00 00 00 ff ff ff ff 00 00 00  | ................ 
    
    13328 | 00 00 00 ff ff ff ff 00 00 00 00 00 ff ff ff ff  | ................ 
    
    13344 | 00 00 00 00 00 ff ff ff ff 00 00 00 00 00 ff ff  | ................ 
    
    13360 | ff ff 00 00 00 00 00 00 ff ff ff ff 00 00 00 00  | ................ 
    
    13376 | 00 ff ff ff ff 00 00 00 00 00 ff ff ff ff 00 00  | ................ 
    
    13392 | 00 00 00 ff ff ff ff 00 00 00 00 00 00 ff ff ff  | ................ 
    
    13408 | ff 00 00 00 00 00 ff ff ff ff 00 00 00 00 00 ff  | ................ 
    
    13424 | ff ff ff 00 00 00 00 00 ff ff ff ff 00 00 00 00  | ................ 
    
    13440 | 00 00 ff ff ff ff 00 00 00 00 00 ff ff ff ff 00  | ................ 
    
    13456 | 00 00 00 00 ff ff ff ff 00 00 00 00 00 ff ff ff  | ................ 
    
    13472 | ff 00 00 00 00 00 00 ff ff ff ff 00 00 00 00 00  | ................ 
    
    13488 | ff ff ff ff 00 00 00 00 00 ff ff ff ff 00 00 00  | ................ 
    
    13504 | 00 00 ff ff ff ff 00 00 00 00 00 00 ff ff ff ff  | ................ 
    
    13520 | 00 00 00 00 00 ff ff ff ff 00 00 00 00 00 ff ff  | ................
    It looks like they really compressed it, I'm not sure if it's actually variable...

    Also, in looking at my good log, it doesn't seem to match up to the structure from around 4236 all the way to 13108. For example, I found the aa_spent at 13076 in my OLD log but everquest.h says they should have been at 13200. Can you confirm that fransick?
    Last edited by rogues; 09-20-2012 at 06:19 PM.

  5. #65
    Developer
    Join Date
    Jul 2004
    Posts
    920

    Re: SEQ Borked with 8/15 patch.

    Put something in your bandoleer so you're not just looking at empty ones. It will make more sense then.

    It's probably a uint32_t followed by 5 char[12] strings that in your example are all empty (i.e. just null terminated). To figure that out, look at your old one. There are 70 nulls after the ff ff ff ff before the next ff ff ff ff. In the new one, there are 5 nulls. 70/5 = 12, so they probably compressed 5 char[12] strings into 5 null terminators.

    In general, seq uses truly like 5 fields from that huge struct. You guys can futz around with bandoliers and aas all you want. People care about the zone id the most of all 8)

  6. #66
    Developer
    Join Date
    Sep 2005
    Posts
    155

    Re: SEQ Borked with 8/15 patch.

    I care about that stuff too, but don't we need to figure out the lengths of things like the bandolier in order to parse it properly?

    I'll throw some stuff in the bandoliers but unfortunately my good logs are from a toon that didn't have that. If we ever get this working again I'll have a more interesting toon when I collect the logs.

  7. #67
    Developer
    Join Date
    Sep 2005
    Posts
    155

    Re: SEQ Borked with 8/15 patch.

    Ok, I know that I should be focusing on other things but humor me here until I get this part figured out. Here's a bandolier with interesting items in it. Does this still seem the same? It looks like there are two "00" after each item (or maybe 00 before and 00 after). Would you still build the structure out the way you outlined above?

    Code:
    I'll go with fransick's
    Last edited by rogues; 09-21-2012 at 08:48 AM.

  8. #68
    Administrator
    Join Date
    Sep 2005
    Posts
    353

    Re: SEQ Borked with 8/15 patch.

    Sorry guys... work keeping me away home too much to be able to look at SEQ. In the meantime, here's a little old and new snippet of log for ya Rogues:

    9/19 Log
    Code:
     00 88 ee 00 00 d9 21 00 00 05 00 00 00 b1 1f 00  | ......!......... 
    12928 | 00 6d 0a 00 00 99 0b 00 00 7e 09 00 00 2d 00 00  | .m.......~...-.. 
    12944 | 00 0e 00 00 00 00 00 14 00 00 00 53 6d 69 74 68  | ...........Smith 
    12960 | 69 6e 67 00 42 6c 61 63 6b 73 6d 69 74 68 27 73  | ing.Blacksmith's 
    12976 | 20 41 64 61 6d 61 6e 74 69 6e 65 20 48 61 6d 6d  |  Adamantine Hamm 
    12992 | 65 72 00 50 73 01 00 fd 08 00 00 41 6e 63 69 65  | er.Ps......Ancie 
    13008 | 6e 74 20 49 6e 73 63 72 69 62 65 64 20 53 68 69  | nt Inscribed Shi 
    13024 | 65 6c 64 00 ab d6 01 00 1b 07 00 00 47 72 65 6b  | eld.........Grek 
    13040 | 65 6e 20 48 65 61 72 74 00 c7 af 01 00 c1 03 00  | en Heart........ 
    13056 | 00 48 75 6d 61 6e 6f 69 64 20 52 65 64 75 63 74  | .Humanoid Reduct 
    13072 | 69 6f 6e 69 7a 65 72 00 f2 8b 01 00 2d 09 00 00  | ionizer.....-... 
    13088 | 31 48 53 00 52 69 74 75 61 6c 20 49 6d 70 61 6c  | 1HS.Ritual Impal 
    13104 | 65 72 00 16 da 01 00 6f 0d 00 00 4b 6e 69 67 68  | er.....o...Knigh 
    13120 | 74 20 43 61 70 74 61 69 6e 27 73 20 53 68 69 65  | t Captain's Shie 
    13136 | 6c 64 00 cb d9 01 00 05 0e 00 00 53 68 61 72 72  | ld.........Sharr 
    13152 | 61 27 73 20 52 69 74 75 61 6c 69 73 74 69 63 20  | a's Ritualistic  
    13168 | 44 6f 6c 6c 00 cf da 01 00 ba 0d 00 00 48 75 6d  | Doll.........Hum 
    13184 | 61 6e 6f 69 64 20 52 65 64 75 63 74 69 6f 6e 69  | anoid Reductioni 
    13200 | 7a 65 72 00 f2 8b 01 00 2d 09 00 00 44 41 00 44  | zer.....-...DA.D 
    13216 | 69 76 69 6e 65 20 48 61 6d 6d 65 72 20 6f 66 20  | ivine Hammer of  
    13232 | 43 6f 6e 73 74 65 72 6e 61 74 69 6f 6e 00 ba 67  | Consternation..g 
    13248 | 00 00 5d 04 00 00 41 6e 63 69 65 6e 74 20 49 6e  | ..]...Ancient In 
    13264 | 73 63 72 69 62 65 64 20 53 68 69 65 6c 64 00 ab  | scribed Shield.. 
    13280 | d6 01 00 1b 07 00 00 47 72 65 6b 65 6e 20 48 65  | .......Greken He 
    13296 | 61 72 74 00 c7 af 01 00 c1 03 00 00 48 75 6d 61  | art.........Huma 
    13312 | 6e 6f 69 64 20 52 65 64 75 63 74 69 6f 6e 69 7a  | noid Reductioniz 
    13328 | 65 72 00 f2 8b 01 00 2d 09 00 00 32 48 42 00 49  | er.....-...2HB.I 
    13344 | 61 6e 74 68 69 6e 65 20 48 6f 6c 79 20 53 77 6f  | anthine Holy Swo 
    13360 | 72 64 00 17 da 01 00 62 0d 00 00 00 00 00 00 00  | rd.....b........ 
    13376 | ff ff ff ff 53 68 61 72 72 61 27 73 20 52 69 74  | ....Sharra's Rit 
    13392 | 75 61 6c 69 73 74 69 63 20 44 6f 6c 6c 00 cf da  | ualistic Doll... 
    13408 | 01 00 ba 0d 00 00 48 75 6d 61 6e 6f 69 64 20 52  | ......Humanoid R 
    13424 | 65 64 75 63 74 69 6f 6e 69 7a 65 72 00 f2 8b 01  | eductionizer.... 
    13440 | 00 2d 09 00 00 45 70 69 63 00 4e 69 67 68 74 62  | .-...Epic.Nightb 
    13456 | 61 6e 65 2c 20 53 77 6f 72 64 20 6f 66 20 74 68  | ane, Sword of th 
    13472 | 65 20 56 61 6c 69 61 6e 74 00 13 bc 00 00 ec 05  | e Valiant....... 
    13488 | 00 00 00 00 00 00 00 ff ff ff ff 53 68 61 72 72  | ...........Sharr 
    13504 | 61 27 73 20 52 69 74 75 61 6c 69 73 74 69 63 20  | a's Ritualistic  
    13520 | 44 6f 6c 6c 00 cf da 01 00 ba 0d 00 00 48 75 6d  | Doll.........Hum 
    13536 | 61 6e 6f 69 64 20 52 65 64 75 63 74 69 6f 6e 69  | anoid Reductioni 
    13552 | 7a 65 72 00 f2 8b 01 00 2d 09 00 00 52 61 6e 67  | zer.....-...Rang 
    13568 | 65 00 52 69 74 75 61 6c 20 49 6d 70 61 6c 65 72  | e.Ritual Impaler 
    13584 | 00 16 da 01 00 6f 0d 00 00 4b 6e 69 67 68 74 20  | .....o...Knight  
    13600 | 43 61 70 74 61 69 6e 27 73 20 53 68 69 65 6c 64  | Captain's Shield 
    13616 | 00 cb d9 01 00 05 0e 00 00 54 72 65 61 6e 74 77  | .........Treantw 
    13632 | 6f 6f 64 20 4c 6f 6e 67 62 6f 77 00 01 d7 01 00  | ood Longbow..... 
    13648 | b0 0d 00 00 48 75 6d 61 6e 6f 69 64 20 52 65 64  | ....Humanoid Red 
    13664 | 75 63 74 69 6f 6e 69 7a 65 72 00 f2 8b 01 00 2d  | uctionizer.....- 
    13680 | 09 00 00 32 48 50 00 49 61 6e 74 68 69 6e 65 20  | ...2HP.Ianthine  
    13696 | 48 6f 6c 79 20 53 77 6f 72 64 00 17 da 01 00 62  | Holy Sword.....b 
    13712 | 0d 00 00 00 00 00 00 00 ff ff ff ff 53 68 61 72  | ............Shar 
    13728 | 72 61 27 73 20 52 69 74 75 61 6c 69 73 74 69 63  | ra's Ritualistic 
    13744 | 20 44 6f 6c 6c 00 cf da 01 00 ba 0d 00 00 48 75  |  Doll.........Hu 
    13760 | 6d 61 6e 6f 69 64 20 52 65 64 75 63 74 69 6f 6e  | manoid Reduction 
    13776 | 69 7a 65 72 00 f2 8b 01 00 2d 09 00 00 00 00 00  | izer.....-...... 
    13792 | 00 00 00 ff ff ff ff 00 00 00 00 00 ff ff ff ff  | ................ 
    13808 | 00 00 00 00 00 ff ff ff ff 00 00 00 00 00 ff ff  | ................ 
    13824 | ff ff 00 00 00 00 00 00 ff ff ff ff 00 00 00 00  | ................ 
    13840 | 00 ff ff ff ff 00 00 00 00 00 ff ff ff ff 00 00  | ................ 
    13856 | 00 00 00 ff ff ff ff 00 00 00 00 00 00 ff ff ff  | ................ 
    13872 | ff 00 00 00 00 00 ff ff ff ff 00 00 00 00 00 ff  | ................ 
    13888 | ff ff ff 00 00 00 00 00 ff ff ff ff 00 00 00 00  | ................ 
    13904 | 00 00 ff ff ff ff 00 00 00 00 00 ff ff ff ff 00  | ................ 
    13920 | 00 00 00 00 ff ff ff ff 00 00 00 00 00 ff ff ff  | ................ 
    13936 | ff 00 00 00 00 00 00 ff ff ff ff 00 00 00 00 00  | ................ 
    13952 | ff ff ff ff 00 00 00 00 00 ff ff ff ff 00 00 00  | ................ 
    13968 | 00 00 ff ff ff ff 00 00 00 00 00 00 ff ff ff ff  | ................ 
    13984 | 00 00 00 00 00 ff ff ff ff 00 00 00 00 00 ff ff  | ................ 
    14000 | ff ff 00 00 00 00 00 ff ff ff ff 00 00 00 00 00  | ................ 
    14016 | 00 ff ff ff ff 00 00 00 00 00 ff ff ff ff 00 00  | ................ 
    14032 | 00 00 00 ff ff ff ff 00 00 00 00 00 ff ff ff ff  | ................ 
    14048 | 00 00 00 00 00 00 ff ff ff ff 00 00 00 00 00 ff  | ................ 
    14064 | ff ff ff 00 00 00 00 00 ff ff ff ff 00 00 00 00  | ................ 
    14080 | 00 ff ff ff ff 00 00 00 00 00 00 ff ff ff ff 00  | ................ 
    14096 | 00 00 00 00 ff ff ff ff 00 00 00 00 00 ff ff ff  | ................ 
    14112 | ff 00 00 00 00 00 ff ff ff ff 00 00 00 00 00 00  | ................ 
    14128 | ff ff ff ff 00 00 00 00 00 ff ff ff ff 00 00 00  | ................ 
    14144 | 00 00 ff ff ff ff 00 00 00 00 00 ff ff ff ff 00  | ................ 
    14160 | 00 00 00 00 00 ff ff ff ff 00 00 00 00 00 ff ff  | ................ 
    14176 | ff ff 00 00 00 00 00 ff ff ff ff 00 00 00 00 00  | ................ 
    14192 | ff ff ff ff 00 00 00 00 00 00 ff ff ff ff 00 00  | ................ 
    14208 | 00 00 00 ff ff ff ff 00 00 00 00 00 ff ff ff ff  | ................ 
    14224 | 00 00 00 00 00 ff ff ff ff 00 00 00 00 00 00 ff  | ................ 
    14240 | ff ff ff 00 00 00 00 00 ff ff ff ff 00 00 00 00  | ................ 
    14256 | 00 ff ff ff ff 00 00 00 00 00 ff ff ff ff 05 00  | ................ 
    14272 | 00 00 43 6c 6f 75 64 79 20 50 6f 74 69 6f 6e 00  | ..Cloudy Potion. 
    14288 | b2 38 00 00 49 02 00 00 44 69 73 74 69 6c 6c 61  | .8..I...Distilla 
    14304 | 74 65 20 6f 66 20 43 65 6c 65 73 74 69 61 6c 20  | te of Celestial  
    14320 | 48 65 61 6c 69 6e 67 20 58 49 56 00 6b 9e 00 00  | Healing XIV.k... 
    14336 | 84 04 00 00 50 6f 74 69 6f 6e 20 6f 66 20 48 65  | ....Potion of He 
    14352 | 61 6c 69 6e 67 00 9f 9e 00 00 fe 07 00 00 44 69  | aling.........Di 
    14368 | 73 74 69 6c 6c 61 74 65 20 6f 66 20 41 6c 61 63  | stillate of Alac 
    14384 | 72 69 74 79 20 58 00 fa 2f 01 00 86 04 00 00 43  | rity X../......C 
    14400 | 68 61 6c 61 6e 64 72 69 61 27 73 20 42 69 74 65  | halandria's Bite 
    14416 | 20 58 56 49 49 00 4b f0 01 00 bb 02 00 00 00 00  |  XVII.K......... 
    14432 | 00 00 00 00 00 00 ff ff ff ff f8 0c 00 00 1c 08  | ................ 
    14448 | 00 00 1c 08 00 00 19 00 00 00 19 00 00 00 19 00  | ................ 
    14464 | 00 00 0f 00 00 00 0f 00 00 00 0f 00 00 00 0f 00  | ................
    8/17 Log
    Code:
    13200 | 6a 21 00 00 42 1f 00 00 6d 0a 00 00 99 0b 00 00  | j!..B...m....... 
    13216 | 0f 09 00 00 2d 00 00 00 03 00 00 00 00 00 00 00  | ....-........... 
    13232 | 53 6d 69 74 68 69 6e 67 00 00 00 00 00 00 00 00  | Smithing........ 
    13248 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    13264 | 50 73 01 00 fd 08 00 00 42 6c 61 63 6b 73 6d 69  | Ps......Blacksmi 
    13280 | 74 68 27 73 20 41 64 61 6d 61 6e 74 69 6e 65 20  | th's Adamantine  
    13296 | 48 61 6d 6d 65 72 00 00 00 00 00 00 00 00 00 00  | Hammer.......... 
    13312 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    13328 | 00 00 00 00 00 00 00 00 ab d6 01 00 1b 07 00 00  | ................ 
    13344 | 41 6e 63 69 65 6e 74 20 49 6e 73 63 72 69 62 65  | Ancient Inscribe 
    13360 | 64 20 53 68 69 65 6c 64 00 00 00 00 00 00 00 00  | d Shield........ 
    13376 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    13392 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    13408 | c7 af 01 00 c1 03 00 00 47 72 65 6b 65 6e 20 48  | ........Greken H 
    13424 | 65 61 72 74 00 00 00 00 00 00 00 00 00 00 00 00  | eart............ 
    13440 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    13456 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    13472 | 00 00 00 00 00 00 00 00 f2 8b 01 00 2d 09 00 00  | ............-... 
    13488 | 48 75 6d 61 6e 6f 69 64 20 52 65 64 75 63 74 69  | Humanoid Reducti 
    13504 | 6f 6e 69 7a 65 72 00 00 00 00 00 00 00 00 00 00  | onizer.......... 
    13520 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    13536 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    13552 | 31 48 53 00 00 00 00 00 00 00 00 00 00 00 00 00  | 1HS............. 
    13568 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    13584 | 16 da 01 00 6f 0d 00 00 52 69 74 75 61 6c 20 49  | ....o...Ritual I 
    13600 | 6d 70 61 6c 65 72 00 00 00 00 00 00 00 00 00 00  | mpaler.......... 
    13616 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    13632 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    13648 | 00 00 00 00 00 00 00 00 cb d9 01 00 05 0e 00 00  | ................ 
    13664 | 4b 6e 69 67 68 74 20 43 61 70 74 61 69 6e 27 73  | Knight Captain's 
    13680 | 20 53 68 69 65 6c 64 00 00 00 00 00 00 00 00 00  |  Shield......... 
    13696 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    13712 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    13728 | cf da 01 00 ba 0d 00 00 53 68 61 72 72 61 27 73  | ........Sharra's 
    13744 | 20 52 69 74 75 61 6c 69 73 74 69 63 20 44 6f 6c  |  Ritualistic Dol 
    13760 | 6c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | l............... 
    13776 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    13792 | 00 00 00 00 00 00 00 00 f2 8b 01 00 2d 09 00 00  | ............-... 
    13808 | 48 75 6d 61 6e 6f 69 64 20 52 65 64 75 63 74 69  | Humanoid Reducti 
    13824 | 6f 6e 69 7a 65 72 00 00 00 00 00 00 00 00 00 00  | onizer.......... 
    13840 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    13856 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    13872 | 44 41 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | DA.............. 
    13888 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    13904 | ba 67 00 00 5d 04 00 00 44 69 76 69 6e 65 20 48  | .g..]...Divine H 
    13920 | 61 6d 6d 65 72 20 6f 66 20 43 6f 6e 73 74 65 72  | ammer of Conster 
    13936 | 6e 61 74 69 6f 6e 00 00 00 00 00 00 00 00 00 00  | nation.......... 
    13952 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    13968 | 00 00 00 00 00 00 00 00 ab d6 01 00 1b 07 00 00  | ................ 
    13984 | 41 6e 63 69 65 6e 74 20 49 6e 73 63 72 69 62 65  | Ancient Inscribe 
    14000 | 64 20 53 68 69 65 6c 64 00 00 00 00 00 00 00 00  | d Shield........ 
    14016 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    14032 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    14048 | c7 af 01 00 c1 03 00 00 47 72 65 6b 65 6e 20 48  | ........Greken H 
    14064 | 65 61 72 74 00 00 00 00 00 00 00 00 00 00 00 00  | eart............ 
    14080 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    14096 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    14112 | 00 00 00 00 00 00 00 00 f2 8b 01 00 2d 09 00 00  | ............-... 
    14128 | 48 75 6d 61 6e 6f 69 64 20 52 65 64 75 63 74 69  | Humanoid Reducti 
    14144 | 6f 6e 69 7a 65 72 00 00 00 00 00 00 00 00 00 00  | onizer.......... 
    14160 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    14176 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    14192 | 32 48 42 00 00 00 00 00 00 00 00 00 00 00 00 00  | 2HB............. 
    14208 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    14224 | 17 da 01 00 62 0d 00 00 49 61 6e 74 68 69 6e 65  | ....b...Ianthine 
    14240 | 20 48 6f 6c 79 20 53 77 6f 72 64 00 00 00 00 00  |  Holy Sword..... 
    14256 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    14272 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    14288 | 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff  | ................ 
    14304 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    14320 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    14336 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    14352 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    14368 | cf da 01 00 ba 0d 00 00 53 68 61 72 72 61 27 73  | ........Sharra's 
    14384 | 20 52 69 74 75 61 6c 69 73 74 69 63 20 44 6f 6c  |  Ritualistic Dol 
    14400 | 6c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | l............... 
    14416 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    14432 | 00 00 00 00 00 00 00 00 f2 8b 01 00 2d 09 00 00  | ............-... 
    14448 | 48 75 6d 61 6e 6f 69 64 20 52 65 64 75 63 74 69  | Humanoid Reducti 
    14464 | 6f 6e 69 7a 65 72 00 00 00 00 00 00 00 00 00 00  | onizer.......... 
    14480 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    14496 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    14512 | 45 70 69 63 00 00 00 00 00 00 00 00 00 00 00 00  | Epic............ 
    14528 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    14544 | 13 bc 00 00 ec 05 00 00 4e 69 67 68 74 62 61 6e  | ........Nightban 
    14560 | 65 2c 20 53 77 6f 72 64 20 6f 66 20 74 68 65 20  | e, Sword of the  
    14576 | 56 61 6c 69 61 6e 74 00 00 00 00 00 00 00 00 00  | Valiant......... 
    14592 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    14608 | 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff  | ................ 
    14624 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    14640 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    14656 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    14672 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    14688 | cf da 01 00 ba 0d 00 00 53 68 61 72 72 61 27 73  | ........Sharra's 
    14704 | 20 52 69 74 75 61 6c 69 73 74 69 63 20 44 6f 6c  |  Ritualistic Dol 
    14720 | 6c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | l............... 
    14736 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    14752 | 00 00 00 00 00 00 00 00 f2 8b 01 00 2d 09 00 00  | ............-... 
    14768 | 48 75 6d 61 6e 6f 69 64 20 52 65 64 75 63 74 69  | Humanoid Reducti 
    14784 | 6f 6e 69 7a 65 72 00 00 00 00 00 00 00 00 00 00  | onizer.......... 
    14800 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    14816 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    14832 | 52 61 6e 67 65 00 00 00 00 00 00 00 00 00 00 00  | Range........... 
    14848 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    14864 | 16 da 01 00 6f 0d 00 00 52 69 74 75 61 6c 20 49  | ....o...Ritual I 
    14880 | 6d 70 61 6c 65 72 00 00 00 00 00 00 00 00 00 00  | mpaler.......... 
    14896 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    14912 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    14928 | 00 00 00 00 00 00 00 00 cb d9 01 00 05 0e 00 00  | ................ 
    14944 | 4b 6e 69 67 68 74 20 43 61 70 74 61 69 6e 27 73  | Knight Captain's 
    14960 | 20 53 68 69 65 6c 64 00 00 00 00 00 00 00 00 00  |  Shield......... 
    14976 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    14992 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    15008 | 01 d7 01 00 b0 0d 00 00 54 72 65 61 6e 74 77 6f  | ........Treantwo 
    15024 | 6f 64 20 4c 6f 6e 67 62 6f 77 00 00 00 00 00 00  | od Longbow...... 
    15040 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    15056 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    15072 | 00 00 00 00 00 00 00 00 f2 8b 01 00 2d 09 00 00  | ............-... 
    15088 | 48 75 6d 61 6e 6f 69 64 20 52 65 64 75 63 74 69  | Humanoid Reducti 
    15104 | 6f 6e 69 7a 65 72 00 00 00 00 00 00 00 00 00 00  | onizer.......... 
    15120 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    15136 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    15152 | 32 48 50 00 00 00 00 00 00 00 00 00 00 00 00 00  | 2HP............. 
    15168 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    15184 | 17 da 01 00 62 0d 00 00 49 61 6e 74 68 69 6e 65  | ....b...Ianthine 
    15200 | 20 48 6f 6c 79 20 53 77 6f 72 64 00 00 00 00 00  |  Holy Sword..... 
    15216 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    15232 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    15248 | 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff  | ................ 
    15264 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    15280 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    15296 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    15312 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    15328 | cf da 01 00 ba 0d 00 00 53 68 61 72 72 61 27 73  | ........Sharra's 
    15344 | 20 52 69 74 75 61 6c 69 73 74 69 63 20 44 6f 6c  |  Ritualistic Dol 
    15360 | 6c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | l............... 
    15376 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    15392 | 00 00 00 00 00 00 00 00 f2 8b 01 00 2d 09 00 00  | ............-... 
    15408 | 48 75 6d 61 6e 6f 69 64 20 52 65 64 75 63 74 69  | Humanoid Reducti 
    15424 | 6f 6e 69 7a 65 72 00 00 00 00 00 00 00 00 00 00  | onizer.......... 
    15440 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    15456 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    15472 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    15488 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    15504 | 00 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00  | ................ 
    15520 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    15536 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    15552 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    15568 | 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff  | ................ 
    15584 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    15600 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    15616 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    15632 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    15648 | 00 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00  | ................ 
    15664 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    15680 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    15696 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    15712 | 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff  | ................ 
    15728 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    15744 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    15760 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    15776 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    15792 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    15808 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    15824 | 00 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00  | ................ 
    15840 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    15856 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    15872 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    15888 | 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff  | ................ 
    15904 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    15920 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    15936 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    15952 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    15968 | 00 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00  | ................ 
    15984 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16000 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16016 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16032 | 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff  | ................ 
    16048 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16064 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16080 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16096 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16112 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16128 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16144 | 00 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00  | ................ 
    16160 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16176 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16192 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16208 | 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff  | ................ 
    16224 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16240 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16256 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16272 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16288 | 00 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00  | ................ 
    16304 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16320 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16336 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16352 | 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff  | ................ 
    16368 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16384 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16400 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16416 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16432 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16448 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16464 | 00 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00  | ................ 
    16480 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16496 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16512 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16528 | 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff  | ................ 
    16544 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16560 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16576 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16592 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16608 | 00 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00  | ................ 
    16624 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16640 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16656 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16672 | 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff  | ................ 
    16688 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16704 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16720 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16736 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16752 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16768 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16784 | 00 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00  | ................ 
    16800 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16816 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16832 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16848 | 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff  | ................ 
    16864 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16880 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16896 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16912 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16928 | 00 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00  | ................ 
    16944 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16960 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16976 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    16992 | 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff  | ................ 
    17008 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17024 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17040 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17056 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17072 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17088 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17104 | 00 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00  | ................ 
    17120 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17136 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17152 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17168 | 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff  | ................ 
    17184 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17200 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17216 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17232 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17248 | 00 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00  | ................ 
    17264 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17280 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17296 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17312 | 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff  | ................ 
    17328 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17344 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17360 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17376 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17392 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17408 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17424 | 00 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00  | ................ 
    17440 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17456 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17472 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17488 | 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff  | ................ 
    17504 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17520 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17536 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17552 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17568 | 00 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00  | ................ 
    17584 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17600 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17616 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17632 | 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff  | ................ 
    17648 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17664 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17680 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17696 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17712 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17728 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17744 | 00 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00  | ................ 
    17760 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17776 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17792 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17808 | 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff  | ................ 
    17824 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17840 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17856 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17872 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17888 | 00 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00  | ................ 
    17904 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17920 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17936 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17952 | 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff  | ................ 
    17968 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    17984 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18000 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18016 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18032 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18048 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18064 | 00 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00  | ................ 
    18080 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18096 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18112 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18128 | 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff  | ................ 
    18144 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18160 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18176 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18192 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18208 | 00 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00  | ................ 
    18224 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18240 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18256 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18272 | 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff  | ................ 
    18288 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18304 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18320 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18336 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18352 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18368 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18384 | 00 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00  | ................ 
    18400 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18416 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18432 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18448 | 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff  | ................ 
    18464 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18480 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18496 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18512 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18528 | 00 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00  | ................ 
    18544 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18560 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18576 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18592 | 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff  | ................ 
    18608 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18624 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18640 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18656 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18672 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18688 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18704 | 00 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00  | ................ 
    18720 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18736 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18752 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18768 | 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff  | ................ 
    18784 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18800 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18816 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18832 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18848 | 00 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00  | ................ 
    18864 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18880 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18896 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18912 | 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff  | ................ 
    18928 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18944 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18960 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18976 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    18992 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    19008 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    19024 | 00 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00  | ................ 
    19040 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    19056 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    19072 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    19088 | 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff  | ................ 
    19104 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    19120 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    19136 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    19152 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    19168 | 00 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00  | ................ 
    19184 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    19200 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    19216 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    19232 | 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff  | ................ 
    19248 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    19264 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    19280 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    19296 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    19312 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    19328 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    19344 | 00 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00  | ................ 
    19360 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    19376 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    19392 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    19408 | 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff  | ................ 
    19424 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    19440 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    19456 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    19472 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    19488 | 00 00 00 00 ff ff ff ff 00 00 00 00 00 00 00 00  | ................ 
    19504 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    19520 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    19536 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    19552 | 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff  | ................ 
    19568 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    19584 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    19600 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    19616 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    19632 | b2 38 00 00 49 02 00 00 43 6c 6f 75 64 79 20 50  | .8..I...Cloudy P 
    19648 | 6f 74 69 6f 6e 00 00 00 00 00 00 00 00 00 00 00  | otion........... 
    19664 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    19680 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    19696 | 00 00 00 00 00 00 00 00 6b 9e 00 00 84 04 00 00  | ........k....... 
    19712 | 44 69 73 74 69 6c 6c 61 74 65 20 6f 66 20 43 65  | Distillate of Ce 
    19728 | 6c 65 73 74 69 61 6c 20 48 65 61 6c 69 6e 67 20  | lestial Healing  
    19744 | 58 49 56 00 00 00 00 00 00 00 00 00 00 00 00 00  | XIV............. 
    19760 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    19776 | 9f 9e 00 00 fe 07 00 00 50 6f 74 69 6f 6e 20 6f  | ........Potion o 
    19792 | 66 20 48 65 61 6c 69 6e 67 00 00 00 00 00 00 00  | f Healing....... 
    19808 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    19824 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    19840 | 00 00 00 00 00 00 00 00 fa 2f 01 00 86 04 00 00  | ........./...... 
    19856 | 44 69 73 74 69 6c 6c 61 74 65 20 6f 66 20 41 6c  | Distillate of Al 
    19872 | 61 63 72 69 74 79 20 58 00 00 00 00 00 00 00 00  | acrity X........ 
    19888 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    19904 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    19920 | 4b f0 01 00 bb 02 00 00 43 68 61 6c 61 6e 64 72  | K.......Chalandr 
    19936 | 69 61 27 73 20 42 69 74 65 20 58 56 49 49 00 00  | ia's Bite XVII.. 
    19952 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    19968 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................ 
    19984 | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  | ................

  9. #69
    Developer
    Join Date
    Jul 2004
    Posts
    920

    Re: SEQ Borked with 8/15 patch.

    Looking at the populated one, it looks like it is Bandolier name then the name of the first item in the bandolier then the item id then the icon then the second item name/item id/icon then the third then the fourth. Or if you prefer, a null terminated string then four groups of null terminated string/uint32_t/uint32_t. I could be backwards on the item id vs icon and really I just made up what those are and I'm not 100% sure. But if I were the client that is the data I need so it makes the most sense.

  10. #70
    Developer
    Join Date
    Sep 2005
    Posts
    155

    Re: SEQ Borked with 8/15 patch.

    Ok, I think I've broken every rule in the book but I have showeq working again to the point where I get the map and skittles and movement works. Main thing that isn't working is I'm not detecting my own character's level properly, so there's something just off with my character structure but I'll figure that out, and characters aren't despawning when I zone, which is probably an opcode. Far more progress than I would have though I could make, thanks for the help guys!!! I'm sure that the playerProfileStruct and charProfileStruct would make a real programmer scream, but I've got skittles!

    Edit: Ok, working a little less than I thought, I crash due to an incorrect length in the charProfileStruct, probably because I'm missing something else that should be variable in length. Still, encouraging.
    Last edited by rogues; 09-22-2012 at 10:29 AM.

  11. #71
    Developer
    Join Date
    Sep 2005
    Posts
    155

    Re: SEQ Borked with 8/15 patch.

    Ok, getting aggravated. There's still something variable in charProfileStruct and I'm having trouble finding it. Nothing else looks like it would be possible to be variable in length on the same character from zone to zone, but that's what I'm seeing.

    Here's a question to help me debug it: Is there any way for me to add a printf to everquest.h that will echo to the terminal what it sees at a particular point? For example, if I know my character's deity is Bert, I know that that's going to be 201. Can I echo that 201 (or the hex equivalent) to the terminal? If the data equals what I expect, then I know that I'm reading the packet ok up to that point. Then I could skip further down and echo careerEbonCrystals or something and see if I loose the stream there. Of course I'd have to have interesting data there, but at least I'd be able to track down where I'm losing the stream.

    The big problem that I'm running into is that the packet has shortened so much that it's tough to compare the two. I think I am very close. I suspect it's an unknown that's changed from fixed to variable.

    Sorry for the silly C questions. I'm a network engineer by trade, so I'm prety good at reading packet traces, but I'm not so good on the programming side of things.

    Thanks!

  12. #72
    Did you SEQ today? BlueAdept's Avatar
    Join Date
    Dec 2001
    Posts
    2,006

    Re: SEQ Borked with 8/15 patch.

    Sorry I honestly dont know. I havent looked at the code in probably 6 years. You should be able to echo it to the console I kind of remember doing that. You do have the debugging turned on right?
    Filters for ShowEQ can now be found here. filters-5xx-06-20-05.tar.gz

    ShowEQ file section is here. https://sourceforge.net/project/show...roup_id=10131#

    Famous Quotes:

    Ratt: WTF you talkin' about BA? (Ok.. that sounds like a bad combo of Diffrent Strokes and A-Team)

    Razzle: I showeq my wife

  13. #73
    Developer
    Join Date
    Sep 2005
    Posts
    155

    Re: SEQ Borked with 8/15 patch.

    Is debugging something other than what you can select from the Debug menu? I need something that's going to spit out to the console as it crashes.

    Right now I'm slowly going through and aligning things, but sometimes it's hard to know the reason for the offset changing. They do some really weird things - for example, I'm around the spellbook data right now. I would have expected them to compress the spellbook down because there are plenty of times where there are blank pages. However, it doesn't look like they took that opportunity, it's still a lot of wasted space (FFs). it's just hard lining things up, it'd be easier if I could somehow write to console what it thinks are at certain points in the structure as it's crashing. (for example, what it thinks WIS is).

  14. #74
    Registered User
    Join Date
    Mar 2012
    Posts
    21

    Re: SEQ Borked with 8/15 patch.

    Here's a quick fix for those wanting something that works but may not be perfect. Make these changes on top of the recently release showeq-5.13.10.6:

    interface.cpp:1647 change to:
    "charProfileStruct", SZC_None,

    zoneopcodes.xml:210 change to:
    <payload dir="server" typename="charProfileStruct" sizechecktype="none"/>

    -- Additional fix for showeq crash on zoning into the bazaar (this has been bugging me for months, finally got around to looking at it) --
    spawnshell.cpp:640 change to:
    if(name.length() > 0 && name.length() < sizeof(spawn->lastName))

  15. #75
    Registered User
    Join Date
    May 2004
    Posts
    41

    Re: SEQ Borked with 8/15 patch.

    Thanks r6express. That gets skittles up and running. Like you said, up and running, but not perfect, but what the heck. Thanks also to those way smarter than I who are working on the rest of it.

    One question: Does anyone know how to manually adjust the player level so the skittles will key off my level and not see me as level 1?

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

You may post new threads
You may post replies
You may post attachments
You may edit your posts
HTML code is Off
vB code is On
Smilies are On
[IMG] code is On