Author Topic: SCI Companion V3 - alpha build notes/bugs/feature requests  (Read 395758 times)

0 Members and 2 Guests are viewing this topic.

Offline troflip

Re: SCI Companion V3 - alpha build notes/bugs/feature requests
« Reply #135 on: June 22, 2015, 08:51:24 PM »
Version 3.0.0.5 is out! List of changes in the first post of this thread, as usual.

The two main changes of interest are the polygon editor, and the script-based debug helper (from SQ5).

Polygon Editor
-------------
Polygon is now "seamlessly" integrated into the pic editor (including full undo/redo support). It reads/writes from a [picnum].shp header file in the "poly" folder. The header file consists of a SetUpPolys_[picnum] procedure which can be called from your room's init method. The "new room" command sets this up automatically. The SetUpPolys_[picnum] procedure adds all the polygons to the current room. If you're adding to an existing room, you'll need to add this call, the include of the .shp file, and the "use" of the Polygon script.

The editing functionality is still a bit unpolished (i.e. the workflow doesn't feel super smooth to me). There is a polygon tool to the right of the standard pic drawing tools. Clicking on this will make the polygons show up. You can just left-click anywhere to start drawing a polygon. Right-click ends it (and closes the loop), or you can left-click on the first point you made. Once a polygon has been made, you can drag the points around, delete the points (right-click popup menu), or split the edges (right-click popup menu). You can also delete the selected polygon with the delete key. To hide the polygons, uncheck the "show polygons" box in the left-hand pane. You'll note the polygon list takes the place of the regular pic commands list for VGA pics. You can switch back and forth between them with the buttons above the list.

Once "gotcha" is that you need to recompile the script in order for the new polygons to take effect, of course. It's possible I could do this automatically.

For the next step, I think I'd like to have functionality for "named" polygons, so they can be added (or removed) by name at a different time (say when a particular object appears, or whatever), instead of just once at room init. So it would be a separate set of polygons, and the calling code would look something like:
Code: [Select]
(= temp0 CreateNewPolygon(MY_FANCY_POLYGON))
// store it off in temp0 in case maybe later you want to remove it
(send gRoom:addObstacle(temp0))

But of course I'd like to hear feedback on what you all think is best.

debug handler
---------------
I added the debug script from SQ5 back into the template game, and made a few changes. You can invoke it simply by pressing Alt-d at any point in the game. The Question mark key will then show you the menu of choices (press alt in combination with the letters shown). You can set variables and flags, show the cast, switch screens, show the current palette, get inventory items, move the ego around, invoke the feature writer or in-game polygon editor, and view the obstacles (I added that).

(oops, and I just realized alt-d conflicts with one of the debug handler features).
(oops, and I just realized I left in a bunch of print statements for alt-y, the view obstacles functionality)



« Last Edit: June 22, 2015, 09:08:53 PM by troflip »
Check out my website: http://icefallgames.com
Groundhog Day Competition

Offline MusicallyInspired

Re: SCI Companion V3 - alpha build notes/bugs/feature requests
« Reply #136 on: June 23, 2015, 01:27:22 AM »
Er isn't it 3.0.0.6? I already have a 3.0.0.5 lol. Oh wait no I don't! Wait...then what did I name 3.0.0.4?...

Ok, I have two copies of 3.0.0.4. I named one 3.0.0.5. Was one merely a hotfix for 3.0.0.4 and I presumptuously named it 3.0.0.5?
Brass Lantern Prop Competition

Offline troflip

Re: SCI Companion V3 - alpha build notes/bugs/feature requests
« Reply #137 on: June 23, 2015, 01:32:21 AM »
I just forgot to update the version number after 3.0.0.4. I did mention it (see release notes for 6-18-2015).  Didn't realize anyone was paying attention/cared, so I just went with 3.0.0.5 for this iteration. :P
« Last Edit: June 23, 2015, 01:35:26 AM by troflip »
Check out my website: http://icefallgames.com
Groundhog Day Competition

Offline MusicallyInspired

Re: SCI Companion V3 - alpha build notes/bugs/feature requests
« Reply #138 on: June 23, 2015, 01:43:14 AM »
That's fine. My archived copy will now be called 3.0.0.4b. :)

I also agree with your ideas for naming polygons and calling them when needed. I must say I really love the system you've put together. It's very easy to work with. The resizing, deleting, splitting, etc all work wonderfully and really speed up progress. One request, could you add polygons as one of the options that the fake ego View can observe?
« Last Edit: June 23, 2015, 02:01:58 AM by MusicallyInspired »
Brass Lantern Prop Competition

Offline troflip

Re: SCI Companion V3 - alpha build notes/bugs/feature requests
« Reply #139 on: June 23, 2015, 04:09:05 PM »
Yeah, I put it on the list. It's a little bit less straightforward, because it's not simply "can be here" or not. But I guess I can just make the fake ego not allowed in barred access polygons, and only allowed in contained access polygons (if there is one).
Check out my website: http://icefallgames.com
Groundhog Day Competition

Offline Cloudee1

Re: SCI Companion V3 - alpha build notes/bugs/feature requests
« Reply #140 on: June 24, 2015, 04:04:19 PM »
Hey Phil, with the polygon editor. Is there anyway that we could be able to right click on a completed entry and copy the point coordinates to the clipboard. For views and movable items, or removable items. It would be handy to be able to handle those points via a local variable array.
Halloween Competition Brass Lantern Prop Competition Groundhog Day Competition

Offline troflip

Re: SCI Companion V3 - alpha build notes/bugs/feature requests
« Reply #141 on: June 24, 2015, 04:12:01 PM »
Yeah, I was going to have a little edit box below the polygons where it would show the points for the current poly, and you could paste/copy/edit that.

But ideally you'll be able to used name polygons for your scenario... assuming I understand what your scenario is...
Check out my website: http://icefallgames.com
Groundhog Day Competition

Offline Cloudee1

Re: SCI Companion V3 - alpha build notes/bugs/feature requests
« Reply #142 on: June 24, 2015, 04:25:45 PM »
So the debug polygon tool that is built into the debug script... That is actually pretty damn cool.

It was especially nice that the .pol file it generated was readable too.

Code: [Select]
; Polygon Editor 1.11
; Dynamic Obstacles : Picture 110
(curRoom addObstacle:
((Polygon new:)
type: PBarredAccess,
init: 220 76 259 81 274 91 268 108 230 100 212 91,
yourself:
)
((Polygon new:)
type: PBarredAccess,
init: 0 63 45 67 47 87 22 96 0 97,
yourself:
)
((Polygon new:)
type: PBarredAccess,
init: 93 96 91 107 111 111 119 94 109 90 100 92,
yourself:
)
)

(altPolyList add:
)

Halloween Competition Brass Lantern Prop Competition Groundhog Day Competition

Offline Kawa

Re: SCI Companion V3 - alpha build notes/bugs/feature requests
« Reply #143 on: June 24, 2015, 04:54:22 PM »
There's some seriously gnarly shit going down with the pic resources here, when you look at them in SV. Oddly, they clearly render just fine at runtime, both the template scene and what's supposed to be one of those close-up portraits.

Offline troflip

Re: SCI Companion V3 - alpha build notes/bugs/feature requests
« Reply #144 on: June 24, 2015, 04:59:42 PM »
Hah, yeah I'd noticed that before, but thought I fixed it (or maybe I only fixed it for views, or maybe I missed a case or something). I'll add it to the list of things to fix.

Comes back to the view/pic resources having a lot of redundant offsets and sizes and such. SCI Companion and Sierra (and Scumm) read the files one way, SV.exe reads them slightly differently.
Check out my website: http://icefallgames.com
Groundhog Day Competition

Offline troflip

Re: SCI Companion V3 - alpha build notes/bugs/feature requests
« Reply #145 on: June 24, 2015, 05:03:35 PM »
So the debug polygon tool that is built into the debug script... That is actually pretty damn cool.

Yeah, lots of cool things in there. The feature writer is in there too. There's also a dialog editor script in the game too, but I haven't linked it into there. Alt-I also brings up UI that lets you add inventory items to the ego (although the buttons appear off the edge of the dialog).

Check out my website: http://icefallgames.com
Groundhog Day Competition

Offline Kawa

Re: SCI Companion V3 - alpha build notes/bugs/feature requests
« Reply #146 on: June 24, 2015, 05:25:13 PM »
SCI Companion and Sierra (and Scumm) read the files one way, SV.exe reads them slightly differently.
SCI Studio reads them right too, just for the record.

Offline Cloudee1

Re: SCI Companion V3 - alpha build notes/bugs/feature requests
« Reply #147 on: June 24, 2015, 07:44:42 PM »
Adding text resources is a little fishy. I just entered my text and hit enter and two new lines popped up.

When I create a new text resource, there is a spot for noun and verb. But after it has been closed and opened then the noun verb areas are gone. Which I am guessing they shouldn't have been there from the start.

Halloween Competition Brass Lantern Prop Competition Groundhog Day Competition

Offline troflip

Re: SCI Companion V3 - alpha build notes/bugs/feature requests
« Reply #148 on: June 24, 2015, 08:03:58 PM »
Oh yeah, it's messed up. The text and message editors were originally the same when I was just getting things up and running with SCI1.1. I then split them when I implemented full message functionality. Looks like I left the text editor in a bad state. Oops.

(Is this for a SCI0 game? Shouldn't really need to use text resources for SCI 1.1).



Check out my website: http://icefallgames.com
Groundhog Day Competition

Offline MusicallyInspired

Re: SCI Companion V3 - alpha build notes/bugs/feature requests
« Reply #149 on: June 25, 2015, 12:16:40 AM »
I'm still getting an issue when deleting resources, but instead of the same resource popping back, the next one on the list doubles and takes its place and number. I tried deleting WD-40's View (13) and the next view in my list (15) took its place, but it still points to 15, even though it's named 13. I tried the same thing to a Pic resource. I deleted 301 but 000 took its place, even though 312 was the next in the list. I fixed it and tried deleting another Pic number and 000 replaced it again.

After deleting 301 before rebuilding:
Code: [Select]
Resource map for Test
Type: 80 Offset: 002b
Type: 81 Offset: 0099
Type: 82 Offset: 00da
Type: 83 Offset: 02b5
Type: 84 Offset: 02d3
Type: 86 Offset: 02ec
Type: 87 Offset: 0300
Type: 89 Offset: 0323
Type: 8b Offset: 0337
Type: 8f Offset: 0341
Type: 90 Offset: 037d
Type: 91 Offset: 0382
Type: ff Offset: 0567
0027: 00 00 00 00 00 View(0, 0) offset: 00000000
0027: 01 00 DC 1C 00 View(1, 0) offset: 000039B8
0027: 0D 00 AD 29 00 View(13, 0) offset: 0000535A
0027: 0F 00 22 62 00 View(15, 0) offset: 0000C444
0027: 64 00 FC 69 00 View(100, 0) offset: 0000D3F8
0027: 84 03 A1 77 00 View(900, 0) offset: 0000EF42
0027: B0 03 0D 79 00 View(944, 0) offset: 0000F21A
0027: D4 03 0B 7A 00 View(980, 0) offset: 0000F416
0027: D5 03 FD 7D 00 View(981, 0) offset: 0000FBFA
0027: D6 03 7D 7E 00 View(982, 0) offset: 0000FCFA
0027: D7 03 1A 7F 00 View(983, 0) offset: 0000FE34
0027: D8 03 12 82 00 View(984, 0) offset: 00010424
0027: DD 03 8E 84 00 View(989, 0) offset: 0001091C
0027: DE 03 25 85 00 View(990, 0) offset: 00010A4A
0027: DF 03 02 A3 00 View(991, 0) offset: 00014604
0027: E3 03 54 B2 00 View(995, 0) offset: 000164A8
0027: E4 03 A8 C8 00 View(996, 0) offset: 00019150
0027: E5 03 EA C8 00 View(997, 0) offset: 000191D4
0027: E7 03 77 C9 00 View(999, 0) offset: 000192EE
0027: D0 07 EB C9 00 View(2000, 0) offset: 000193D6
0027: 33 08 32 D2 00 View(2099, 0) offset: 0001A464
0027: B9 0B 51 D9 00 View(3001, 0) offset: 0001B2A2
0027: 00 00 3A E1 00 Pic(0, 0) offset: 0001C274
0027: 1F 00 6C E1 00 Pic(31, 0) offset: 0001C2D8
0027: 65 00 EA 57 01 Pic(101, 0) offset: 0002AFD4
0027: 66 00 5E CC 01 Pic(102, 0) offset: 000398BC
0027: 6E 00 46 3C 02 Pic(110, 0) offset: 0004788C
0027: 6F 00 EB B5 02 Pic(111, 0) offset: 00056BD6
0027: B7 00 A2 2F 03 Pic(183, 0) offset: 00065F44
0027: C8 00 30 9F 03 Pic(200, 0) offset: 00073E60
0027: 2C 01 8D A6 03 Pic(300, 0) offset: 00074D1A
0027: 2D 01 C0 C7 03 Pic(301, 0) offset: 00078F80
0027: 38 01 C0 C7 03 Pic(312, 0) offset: 00078F80
0027: F4 01 FF 3C 04 Pic(500, 0) offset: 000879FE
0027: F5 01 3F 54 04 Pic(501, 0) offset: 0008A87E
0027: 00 00 ED C6 04 Script(0, 0) offset: 00098DDA
0027: 0B 00 5A D1 04 Script(11, 0) offset: 0009A2B4
0027: 0C 00 AE D1 04 Script(12, 0) offset: 0009A35C
0027: 0D 00 01 D2 04 Script(13, 0) offset: 0009A402
0027: 0E 00 19 D2 04 Script(14, 0) offset: 0009A432
0027: 0F 00 8F D2 04 Script(15, 0) offset: 0009A51E
0027: 10 00 14 D4 04 Script(16, 0) offset: 0009A828
0027: 11 00 37 D5 04 Script(17, 0) offset: 0009AA6E
0027: 12 00 AC D7 04 Script(18, 0) offset: 0009AF58
0027: 13 00 9A D9 04 Script(19, 0) offset: 0009B334
0027: 14 00 6B DB 04 Script(20, 0) offset: 0009B6D6
0027: 15 00 61 DC 04 Script(21, 0) offset: 0009B8C2
0027: 16 00 A9 DC 04 Script(22, 0) offset: 0009B952
0027: 18 00 A5 DE 04 Script(24, 0) offset: 0009BD4A
0027: 19 00 12 E1 04 Script(25, 0) offset: 0009C224
0027: 1A 00 D8 E2 04 Script(26, 0) offset: 0009C5B0
0027: 1B 00 6C E6 04 Script(27, 0) offset: 0009CCD8
0027: 1E 00 A2 E7 04 Script(30, 0) offset: 0009CF44
0027: 20 00 A6 EC 04 Script(32, 0) offset: 0009D94C
0027: 64 00 81 ED 04 Script(100, 0) offset: 0009DB02
0027: 65 00 89 F0 04 Script(101, 0) offset: 0009E112
0027: 66 00 AE F1 04 Script(102, 0) offset: 0009E35C
0027: 69 00 F2 F1 04 Script(105, 0) offset: 0009E3E4
0027: 6E 00 2B F2 04 Script(110, 0) offset: 0009E456
0027: B7 00 80 F2 04 Script(183, 0) offset: 0009E500
0027: CD 00 C4 F2 04 Script(205, 0) offset: 0009E588
0027: FF 00 90 F3 04 Script(255, 0) offset: 0009E720
0027: 6D 03 46 F9 04 Script(877, 0) offset: 0009F28C
0027: 99 03 6B FB 04 Script(921, 0) offset: 0009F6D6
0027: 9A 03 74 00 05 Script(922, 0) offset: 000A00E8
0027: 9B 03 CB 02 05 Script(923, 0) offset: 000A0596
0027: 9C 03 5D 05 05 Script(924, 0) offset: 000A0ABA
0027: 9D 03 33 07 05 Script(925, 0) offset: 000A0E66
0027: 9E 03 46 09 05 Script(926, 0) offset: 000A128C
0027: 9F 03 29 0A 05 Script(927, 0) offset: 000A1452
0027: A0 03 90 0C 05 Script(928, 0) offset: 000A1920
0027: A1 03 03 13 05 Script(929, 0) offset: 000A2606
0027: A2 03 6F 14 05 Script(930, 0) offset: 000A28DE
0027: A4 03 3B 15 05 Script(932, 0) offset: 000A2A76
0027: A5 03 FB 15 05 Script(933, 0) offset: 000A2BF6
0027: A6 03 C5 16 05 Script(934, 0) offset: 000A2D8A
0027: A7 03 92 18 05 Script(935, 0) offset: 000A3124
0027: A8 03 FF 18 05 Script(936, 0) offset: 000A31FE
0027: A9 03 F1 1B 05 Script(937, 0) offset: 000A37E2
0027: AA 03 99 24 05 Script(938, 0) offset: 000A4932
0027: AB 03 14 25 05 Script(939, 0) offset: 000A4A28
0027: AD 03 72 25 05 Script(941, 0) offset: 000A4AE4
0027: AE 03 1E 26 05 Script(942, 0) offset: 000A4C3C
0027: AF 03 D0 26 05 Script(943, 0) offset: 000A4DA0
0027: B0 03 DA 33 05 Script(944, 0) offset: 000A67B4
0027: B1 03 C1 34 05 Script(945, 0) offset: 000A6982
0027: B2 03 BB 35 05 Script(946, 0) offset: 000A6B76
0027: B3 03 F9 35 05 Script(947, 0) offset: 000A6BF2
0027: B4 03 E0 48 05 Script(948, 0) offset: 000A91C0
0027: B5 03 74 4F 05 Script(949, 0) offset: 000A9EE8
0027: B6 03 D4 4F 05 Script(950, 0) offset: 000A9FA8
0027: B7 03 73 52 05 Script(951, 0) offset: 000AA4E6
0027: B9 03 C6 52 05 Script(953, 0) offset: 000AA58C
0027: BA 03 40 53 05 Script(954, 0) offset: 000AA680
0027: BB 03 A6 55 05 Script(955, 0) offset: 000AAB4C
0027: BC 03 25 56 05 Script(956, 0) offset: 000AAC4A
0027: BE 03 5F 56 05 Script(958, 0) offset: 000AACBE
0027: C1 03 87 56 05 Script(961, 0) offset: 000AAD0E
0027: C3 03 C7 56 05 Script(963, 0) offset: 000AAD8E
0027: C4 03 06 57 05 Script(964, 0) offset: 000AAE0C
0027: C7 03 9E 57 05 Script(967, 0) offset: 000AAF3C
0027: C8 03 EE 57 05 Script(968, 0) offset: 000AAFDC
0027: C9 03 A2 59 05 Script(969, 0) offset: 000AB344
0027: CA 03 D9 59 05 Script(970, 0) offset: 000AB3B2
0027: CB 03 42 5A 05 Script(971, 0) offset: 000AB484
0027: CC 03 02 5B 05 Script(972, 0) offset: 000AB604
0027: CD 03 8C 5B 05 Script(973, 0) offset: 000AB718
0027: CF 03 DA 5C 05 Script(975, 0) offset: 000AB9B4
0027: D0 03 8B 5D 05 Script(976, 0) offset: 000ABB16
0027: D1 03 3A 5F 05 Script(977, 0) offset: 000ABE74
0027: D2 03 14 61 05 Script(978, 0) offset: 000AC228
0027: D4 03 1A 63 05 Script(980, 0) offset: 000AC634
0027: D5 03 66 63 05 Script(981, 0) offset: 000AC6CC
0027: D6 03 80 64 05 Script(982, 0) offset: 000AC900
0027: D7 03 1E 65 05 Script(983, 0) offset: 000ACA3C
0027: D8 03 E7 65 05 Script(984, 0) offset: 000ACBCE
0027: D9 03 7A 67 05 Script(985, 0) offset: 000ACEF4
0027: DA 03 2C 68 05 Script(986, 0) offset: 000AD058
0027: DB 03 CF 68 05 Script(987, 0) offset: 000AD19E
0027: DC 03 86 6A 05 Script(988, 0) offset: 000AD50C
0027: DD 03 FE 6B 05 Script(989, 0) offset: 000AD7FC
0027: DE 03 7F 6D 05 Script(990, 0) offset: 000ADAFE
0027: DF 03 34 73 05 Script(991, 0) offset: 000AE668
0027: E0 03 F8 74 05 Script(992, 0) offset: 000AE9F0
0027: E1 03 68 77 05 Script(993, 0) offset: 000AEED0
0027: E2 03 42 78 05 Script(994, 0) offset: 000AF084
0027: E3 03 95 80 05 Script(995, 0) offset: 000B012A
0027: E4 03 D3 87 05 Script(996, 0) offset: 000B0FA6
0027: E6 03 E5 89 05 Script(998, 0) offset: 000B13CA
0027: E7 03 34 91 05 Script(999, 0) offset: 000B2268
0027: 0A 00 FF 95 05 Text(10, 0) offset: 000B2BFE
0027: C9 00 5D 96 05 Text(201, 0) offset: 000B2CBA
0027: CC 01 66 96 05 Text(460, 0) offset: 000B2CCC
0027: AF 03 6F 96 05 Text(943, 0) offset: 000B2CDE
0027: B8 03 BB 96 05 Text(952, 0) offset: 000B2D76
0027: E7 03 F1 96 05 Text(999, 0) offset: 000B2DE2
0027: 2D 00 0D 97 05 Sound(45, 0) offset: 000B2E1A
0027: E8 03 81 99 05 Sound(1000, 0) offset: 000B3302
0027: E9 03 B3 99 05 Sound(1001, 0) offset: 000B3366
0027: EA 03 F0 9B 05 Sound(1002, 0) offset: 000B37E0
0027: EB 03 57 A6 05 Sound(1003, 0) offset: 000B4CAE
0027: E2 03 3A AF 05 Vocab(994, 0) offset: 000B5E74
0027: E4 03 76 AF 05 Vocab(996, 0) offset: 000B5EEC
0027: E5 03 9D B0 05 Vocab(997, 0) offset: 000B613A
0027: E6 03 9E CE 05 Vocab(998, 0) offset: 000B9D3C
0027: 00 00 18 D0 05 Font(0, 0) offset: 000BA030
0027: 01 00 87 D3 05 Font(1, 0) offset: 000BA70E
0027: 04 00 D1 D6 05 Font(4, 0) offset: 000BADA2
0027: 45 00 5A D9 05 Font(69, 0) offset: 000BB2B4
0027: E7 03 CA DC 05 Font(999, 0) offset: 000BB994
0027: 45 06 30 DF 05 Font(1605, 0) offset: 000BBE60
0027: 3A 08 0F E2 05 Font(2106, 0) offset: 000BC41E
0027: 01 00 7E E5 05 Patch(1, 0) offset: 000BCAFC
0027: 03 00 B5 0B 06 Patch(3, 0) offset: 000C176A
0027: 04 00 3D 16 06 Patch(4, 0) offset: 000C2C7A
0027: 65 00 D1 18 06 Patch(101, 0) offset: 000C31A2
0027: E6 03 EB 19 06 Palette(998, 0) offset: 000C33D6
0027: E7 03 02 1C 06 Palette(999, 0) offset: 000C3804
0027: 00 00 19 1E 06 Message(0, 0) offset: 000C3C32
0027: 0D 00 60 24 06 Message(13, 0) offset: 000C48C0
0027: 0F 00 92 24 06 Message(15, 0) offset: 000C4924
0027: 14 00 B8 25 06 Message(20, 0) offset: 000C4B70
0027: 64 00 D0 25 06 Message(100, 0) offset: 000C4BA0
0027: 65 00 E0 25 06 Message(101, 0) offset: 000C4BC0
0027: 66 00 FE 25 06 Message(102, 0) offset: 000C4BFC
0027: 69 00 1C 26 06 Message(105, 0) offset: 000C4C38
0027: 6E 00 3A 26 06 Message(110, 0) offset: 000C4C74
0027: B7 00 8B 26 06 Message(183, 0) offset: 000C4D16
0027: DE 03 A9 26 06 Message(990, 0) offset: 000C4D52
0027: E2 03 27 28 06 Message(994, 0) offset: 000C504E
0027: FF FF F0 28 06 Map(65535, 0) offset: 000C51E0
0027: 00 00 FC 28 06 Heap(0, 0) offset: 000C51F8
0027: 0B 00 D0 2C 06 Heap(11, 0) offset: 000C59A0
0027: 0C 00 E9 2C 06 Heap(12, 0) offset: 000C59D2
0027: 0D 00 F2 2C 06 Heap(13, 0) offset: 000C59E4
0027: 0E 00 0A 2D 06 Heap(14, 0) offset: 000C5A14
0027: 0F 00 32 2D 06 Heap(15, 0) offset: 000C5A64
0027: 10 00 EB 2E 06 Heap(16, 0) offset: 000C5DD6
0027: 11 00 19 2F 06 Heap(17, 0) offset: 000C5E32
0027: 12 00 4F 2F 06 Heap(18, 0) offset: 000C5E9E
0027: 13 00 C5 2F 06 Heap(19, 0) offset: 000C5F8A
0027: 14 00 23 30 06 Heap(20, 0) offset: 000C6046
0027: 15 00 0C 32 06 Heap(21, 0) offset: 000C6418
0027: 16 00 2C 32 06 Heap(22, 0) offset: 000C6458
0027: 18 00 89 32 06 Heap(24, 0) offset: 000C6512
0027: 19 00 BD 34 06 Heap(25, 0) offset: 000C697A
0027: 1A 00 EF 34 06 Heap(26, 0) offset: 000C69DE
0027: 1B 00 3D 35 06 Heap(27, 0) offset: 000C6A7A
0027: 1E 00 80 35 06 Heap(30, 0) offset: 000C6B00
0027: 20 00 67 36 06 Heap(32, 0) offset: 000C6CCE
0027: 64 00 93 36 06 Heap(100, 0) offset: 000C6D26
0027: 65 00 9C 38 06 Heap(101, 0) offset: 000C7138
0027: 66 00 83 39 06 Heap(102, 0) offset: 000C7306
0027: 69 00 CB 39 06 Heap(105, 0) offset: 000C7396
0027: 6E 00 13 3A 06 Heap(110, 0) offset: 000C7426
0027: B7 00 96 3A 06 Heap(183, 0) offset: 000C752C
0027: CD 00 DE 3A 06 Heap(205, 0) offset: 000C75BC
0027: FF 00 0B 3B 06 Heap(255, 0) offset: 000C7616
0027: 6D 03 78 3B 06 Heap(877, 0) offset: 000C76F0
0027: 99 03 B1 3B 06 Heap(921, 0) offset: 000C7762
0027: 9A 03 DE 3B 06 Heap(922, 0) offset: 000C77BC
0027: 9B 03 64 3C 06 Heap(923, 0) offset: 000C78C8
0027: 9C 03 E3 3C 06 Heap(924, 0) offset: 000C79C6
0027: 9D 03 5A 3D 06 Heap(925, 0) offset: 000C7AB4
0027: 9E 03 BC 3D 06 Heap(926, 0) offset: 000C7B78
0027: 9F 03 E4 3D 06 Heap(927, 0) offset: 000C7BC8
0027: A0 03 08 3E 06 Heap(928, 0) offset: 000C7C10
0027: A1 03 C2 3E 06 Heap(929, 0) offset: 000C7D84
0027: A2 03 01 3F 06 Heap(930, 0) offset: 000C7E02
0027: A4 03 30 3F 06 Heap(932, 0) offset: 000C7E60
0027: A5 03 5F 3F 06 Heap(933, 0) offset: 000C7EBE
0027: A6 03 7D 3F 06 Heap(934, 0) offset: 000C7EFA
0027: A7 03 B7 3F 06 Heap(935, 0) offset: 000C7F6E
0027: A8 03 EA 3F 06 Heap(936, 0) offset: 000C7FD4
0027: A9 03 55 40 06 Heap(937, 0) offset: 000C80AA
0027: AA 03 A0 40 06 Heap(938, 0) offset: 000C8140
0027: AB 03 BE 40 06 Heap(939, 0) offset: 000C817C
0027: AD 03 D9 40 06 Heap(941, 0) offset: 000C81B2
0027: AE 03 0F 41 06 Heap(942, 0) offset: 000C821E
0027: AF 03 2D 41 06 Heap(943, 0) offset: 000C825A
0027: B0 03 0A 45 06 Heap(944, 0) offset: 000C8A14
0027: B1 03 3A 45 06 Heap(945, 0) offset: 000C8A74
0027: B2 03 66 45 06 Heap(946, 0) offset: 000C8ACC
0027: B3 03 81 45 06 Heap(947, 0) offset: 000C8B02
0027: B4 03 B7 4E 06 Heap(948, 0) offset: 000C9D6E
0027: B5 03 71 53 06 Heap(949, 0) offset: 000CA6E2
0027: B6 03 9B 53 06 Heap(950, 0) offset: 000CA736
0027: B7 03 FD 53 06 Heap(951, 0) offset: 000CA7FA
0027: B8 03 28 54 06 Heap(952, 0) offset: 000CA850
0027: B9 03 ED 55 06 Heap(953, 0) offset: 000CABDA
0027: BA 03 16 56 06 Heap(954, 0) offset: 000CAC2C
0027: BB 03 88 56 06 Heap(955, 0) offset: 000CAD10
0027: BC 03 B1 56 06 Heap(956, 0) offset: 000CAD62
0027: BE 03 D2 56 06 Heap(958, 0) offset: 000CADA4
0027: C1 03 DB 56 06 Heap(961, 0) offset: 000CADB6
0027: C3 03 FA 56 06 Heap(963, 0) offset: 000CADF4
0027: C4 03 23 57 06 Heap(964, 0) offset: 000CAE46
0027: C7 03 4A 57 06 Heap(967, 0) offset: 000CAE94
0027: C8 03 70 57 06 Heap(968, 0) offset: 000CAEE0
0027: C9 03 94 57 06 Heap(969, 0) offset: 000CAF28
0027: CA 03 AE 57 06 Heap(970, 0) offset: 000CAF5C
0027: CB 03 D5 57 06 Heap(971, 0) offset: 000CAFAA
0027: CC 03 FD 57 06 Heap(972, 0) offset: 000CAFFA
0027: CD 03 24 58 06 Heap(973, 0) offset: 000CB048
0027: CE 03 4C 58 06 Heap(974, 0) offset: 000CB098
0027: CF 03 60 58 06 Heap(975, 0) offset: 000CB0C0
0027: D0 03 85 58 06 Heap(976, 0) offset: 000CB10A
0027: D1 03 DD 58 06 Heap(977, 0) offset: 000CB1BA
0027: D2 03 1D 59 06 Heap(978, 0) offset: 000CB23A
0027: D4 03 71 59 06 Heap(980, 0) offset: 000CB2E2
0027: D5 03 99 59 06 Heap(981, 0) offset: 000CB332
0027: D6 03 E6 59 06 Heap(982, 0) offset: 000CB3CC
0027: D7 03 EF 59 06 Heap(983, 0) offset: 000CB3DE
0027: D8 03 42 5A 06 Heap(984, 0) offset: 000CB484
0027: D9 03 8D 5A 06 Heap(985, 0) offset: 000CB51A
0027: DA 03 A5 5A 06 Heap(986, 0) offset: 000CB54A
0027: DB 03 D1 5A 06 Heap(987, 0) offset: 000CB5A2
0027: DC 03 77 5B 06 Heap(988, 0) offset: 000CB6EE
0027: DD 03 C5 5B 06 Heap(989, 0) offset: 000CB78A
0027: DE 03 EA 5B 06 Heap(990, 0) offset: 000CB7D4
0027: DF 03 1F 5E 06 Heap(991, 0) offset: 000CBC3E
0027: E0 03 70 5E 06 Heap(992, 0) offset: 000CBCE0
0027: E1 03 32 5F 06 Heap(993, 0) offset: 000CBE64
0027: E2 03 4D 5F 06 Heap(994, 0) offset: 000CBE9A
0027: E3 03 E1 60 06 Heap(995, 0) offset: 000CC1C2
0027: E4 03 46 61 06 Heap(996, 0) offset: 000CC28C
0027: E6 03 98 61 06 Heap(998, 0) offset: 000CC330
0027: E7 03 65 62 06 Heap(999, 0) offset: 000CC4CA

After rebuilding:

Code: [Select]
Resource map for Test
Type: 80 Offset: 002b
Type: 81 Offset: 0099
Type: 82 Offset: 00da
Type: 83 Offset: 02b5
Type: 84 Offset: 02d3
Type: 86 Offset: 02ec
Type: 87 Offset: 0300
Type: 89 Offset: 0323
Type: 8b Offset: 0337
Type: 8f Offset: 0341
Type: 90 Offset: 037d
Type: 91 Offset: 0382
Type: ff Offset: 0567
0027: 00 00 00 00 00 View(0, 0) offset: 00000000
0027: 01 00 DC 1C 00 View(1, 0) offset: 000039B8
0027: 0D 00 AD 29 00 View(13, 0) offset: 0000535A
0027: 0F 00 22 62 00 View(15, 0) offset: 0000C444
0027: 64 00 FC 69 00 View(100, 0) offset: 0000D3F8
0027: 84 03 A1 77 00 View(900, 0) offset: 0000EF42
0027: B0 03 0D 79 00 View(944, 0) offset: 0000F21A
0027: D4 03 0B 7A 00 View(980, 0) offset: 0000F416
0027: D5 03 FD 7D 00 View(981, 0) offset: 0000FBFA
0027: D6 03 7D 7E 00 View(982, 0) offset: 0000FCFA
0027: D7 03 1A 7F 00 View(983, 0) offset: 0000FE34
0027: D8 03 12 82 00 View(984, 0) offset: 00010424
0027: DD 03 8E 84 00 View(989, 0) offset: 0001091C
0027: DE 03 25 85 00 View(990, 0) offset: 00010A4A
0027: DF 03 02 A3 00 View(991, 0) offset: 00014604
0027: E3 03 54 B2 00 View(995, 0) offset: 000164A8
0027: E4 03 A8 C8 00 View(996, 0) offset: 00019150
0027: E5 03 EA C8 00 View(997, 0) offset: 000191D4
0027: E7 03 77 C9 00 View(999, 0) offset: 000192EE
0027: D0 07 EB C9 00 View(2000, 0) offset: 000193D6
0027: 33 08 32 D2 00 View(2099, 0) offset: 0001A464
0027: B9 0B 51 D9 00 View(3001, 0) offset: 0001B2A2
0027: 00 00 3A E1 00 Pic(0, 0) offset: 0001C274
0027: 1F 00 6C E1 00 Pic(31, 0) offset: 0001C2D8
0027: 65 00 EA 57 01 Pic(101, 0) offset: 0002AFD4
0027: 66 00 5E CC 01 Pic(102, 0) offset: 000398BC
0027: 6E 00 46 3C 02 Pic(110, 0) offset: 0004788C
0027: 6F 00 EB B5 02 Pic(111, 0) offset: 00056BD6
0027: B7 00 A2 2F 03 Pic(183, 0) offset: 00065F44
0027: C8 00 30 9F 03 Pic(200, 0) offset: 00073E60
0027: 2C 01 8D A6 03 Pic(300, 0) offset: 00074D1A
0027: 2D 01 C0 C7 03 Pic(301, 0) offset: 00078F80
0027: 38 01 FF 3C 04 Pic(312, 0) offset: 000879FE
0027: F4 01 3E B2 04 Pic(500, 0) offset: 0009647C
0027: F5 01 7E C9 04 Pic(501, 0) offset: 000992FC
0027: 00 00 2C 3C 05 Script(0, 0) offset: 000A7858
0027: 0B 00 99 46 05 Script(11, 0) offset: 000A8D32
0027: 0C 00 ED 46 05 Script(12, 0) offset: 000A8DDA
0027: 0D 00 40 47 05 Script(13, 0) offset: 000A8E80
0027: 0E 00 58 47 05 Script(14, 0) offset: 000A8EB0
0027: 0F 00 CE 47 05 Script(15, 0) offset: 000A8F9C
0027: 10 00 53 49 05 Script(16, 0) offset: 000A92A6
0027: 11 00 76 4A 05 Script(17, 0) offset: 000A94EC
0027: 12 00 EB 4C 05 Script(18, 0) offset: 000A99D6
0027: 13 00 D9 4E 05 Script(19, 0) offset: 000A9DB2
0027: 14 00 AA 50 05 Script(20, 0) offset: 000AA154
0027: 15 00 A0 51 05 Script(21, 0) offset: 000AA340
0027: 16 00 E8 51 05 Script(22, 0) offset: 000AA3D0
0027: 18 00 E4 53 05 Script(24, 0) offset: 000AA7C8
0027: 19 00 51 56 05 Script(25, 0) offset: 000AACA2
0027: 1A 00 17 58 05 Script(26, 0) offset: 000AB02E
0027: 1B 00 AB 5B 05 Script(27, 0) offset: 000AB756
0027: 1E 00 E1 5C 05 Script(30, 0) offset: 000AB9C2
0027: 20 00 E5 61 05 Script(32, 0) offset: 000AC3CA
0027: 64 00 C0 62 05 Script(100, 0) offset: 000AC580
0027: 65 00 C8 65 05 Script(101, 0) offset: 000ACB90
0027: 66 00 ED 66 05 Script(102, 0) offset: 000ACDDA
0027: 69 00 31 67 05 Script(105, 0) offset: 000ACE62
0027: 6E 00 6A 67 05 Script(110, 0) offset: 000ACED4
0027: B7 00 BF 67 05 Script(183, 0) offset: 000ACF7E
0027: CD 00 03 68 05 Script(205, 0) offset: 000AD006
0027: FF 00 CF 68 05 Script(255, 0) offset: 000AD19E
0027: 6D 03 85 6E 05 Script(877, 0) offset: 000ADD0A
0027: 99 03 AA 70 05 Script(921, 0) offset: 000AE154
0027: 9A 03 B3 75 05 Script(922, 0) offset: 000AEB66
0027: 9B 03 0A 78 05 Script(923, 0) offset: 000AF014
0027: 9C 03 9C 7A 05 Script(924, 0) offset: 000AF538
0027: 9D 03 72 7C 05 Script(925, 0) offset: 000AF8E4
0027: 9E 03 85 7E 05 Script(926, 0) offset: 000AFD0A
0027: 9F 03 68 7F 05 Script(927, 0) offset: 000AFED0
0027: A0 03 CF 81 05 Script(928, 0) offset: 000B039E
0027: A1 03 42 88 05 Script(929, 0) offset: 000B1084
0027: A2 03 AE 89 05 Script(930, 0) offset: 000B135C
0027: A4 03 7A 8A 05 Script(932, 0) offset: 000B14F4
0027: A5 03 3A 8B 05 Script(933, 0) offset: 000B1674
0027: A6 03 04 8C 05 Script(934, 0) offset: 000B1808
0027: A7 03 D1 8D 05 Script(935, 0) offset: 000B1BA2
0027: A8 03 3E 8E 05 Script(936, 0) offset: 000B1C7C
0027: A9 03 30 91 05 Script(937, 0) offset: 000B2260
0027: AA 03 D8 99 05 Script(938, 0) offset: 000B33B0
0027: AB 03 53 9A 05 Script(939, 0) offset: 000B34A6
0027: AD 03 B1 9A 05 Script(941, 0) offset: 000B3562
0027: AE 03 5D 9B 05 Script(942, 0) offset: 000B36BA
0027: AF 03 0F 9C 05 Script(943, 0) offset: 000B381E
0027: B0 03 19 A9 05 Script(944, 0) offset: 000B5232
0027: B1 03 00 AA 05 Script(945, 0) offset: 000B5400
0027: B2 03 FA AA 05 Script(946, 0) offset: 000B55F4
0027: B3 03 38 AB 05 Script(947, 0) offset: 000B5670
0027: B4 03 1F BE 05 Script(948, 0) offset: 000B7C3E
0027: B5 03 B3 C4 05 Script(949, 0) offset: 000B8966
0027: B6 03 13 C5 05 Script(950, 0) offset: 000B8A26
0027: B7 03 B2 C7 05 Script(951, 0) offset: 000B8F64
0027: B9 03 05 C8 05 Script(953, 0) offset: 000B900A
0027: BA 03 7F C8 05 Script(954, 0) offset: 000B90FE
0027: BB 03 E5 CA 05 Script(955, 0) offset: 000B95CA
0027: BC 03 64 CB 05 Script(956, 0) offset: 000B96C8
0027: BE 03 9E CB 05 Script(958, 0) offset: 000B973C
0027: C1 03 C6 CB 05 Script(961, 0) offset: 000B978C
0027: C3 03 06 CC 05 Script(963, 0) offset: 000B980C
0027: C4 03 45 CC 05 Script(964, 0) offset: 000B988A
0027: C7 03 DD CC 05 Script(967, 0) offset: 000B99BA
0027: C8 03 2D CD 05 Script(968, 0) offset: 000B9A5A
0027: C9 03 E1 CE 05 Script(969, 0) offset: 000B9DC2
0027: CA 03 18 CF 05 Script(970, 0) offset: 000B9E30
0027: CB 03 81 CF 05 Script(971, 0) offset: 000B9F02
0027: CC 03 41 D0 05 Script(972, 0) offset: 000BA082
0027: CD 03 CB D0 05 Script(973, 0) offset: 000BA196
0027: CF 03 19 D2 05 Script(975, 0) offset: 000BA432
0027: D0 03 CA D2 05 Script(976, 0) offset: 000BA594
0027: D1 03 79 D4 05 Script(977, 0) offset: 000BA8F2
0027: D2 03 53 D6 05 Script(978, 0) offset: 000BACA6
0027: D4 03 59 D8 05 Script(980, 0) offset: 000BB0B2
0027: D5 03 A5 D8 05 Script(981, 0) offset: 000BB14A
0027: D6 03 BF D9 05 Script(982, 0) offset: 000BB37E
0027: D7 03 5D DA 05 Script(983, 0) offset: 000BB4BA
0027: D8 03 26 DB 05 Script(984, 0) offset: 000BB64C
0027: D9 03 B9 DC 05 Script(985, 0) offset: 000BB972
0027: DA 03 6B DD 05 Script(986, 0) offset: 000BBAD6
0027: DB 03 0E DE 05 Script(987, 0) offset: 000BBC1C
0027: DC 03 C5 DF 05 Script(988, 0) offset: 000BBF8A
0027: DD 03 3D E1 05 Script(989, 0) offset: 000BC27A
0027: DE 03 BE E2 05 Script(990, 0) offset: 000BC57C
0027: DF 03 73 E8 05 Script(991, 0) offset: 000BD0E6
0027: E0 03 37 EA 05 Script(992, 0) offset: 000BD46E
0027: E1 03 A7 EC 05 Script(993, 0) offset: 000BD94E
0027: E2 03 81 ED 05 Script(994, 0) offset: 000BDB02
0027: E3 03 D4 F5 05 Script(995, 0) offset: 000BEBA8
0027: E4 03 12 FD 05 Script(996, 0) offset: 000BFA24
0027: E6 03 24 FF 05 Script(998, 0) offset: 000BFE48
0027: E7 03 73 06 06 Script(999, 0) offset: 000C0CE6
0027: 0A 00 3E 0B 06 Text(10, 0) offset: 000C167C
0027: C9 00 9C 0B 06 Text(201, 0) offset: 000C1738
0027: CC 01 A5 0B 06 Text(460, 0) offset: 000C174A
0027: AF 03 AE 0B 06 Text(943, 0) offset: 000C175C
0027: B8 03 FA 0B 06 Text(952, 0) offset: 000C17F4
0027: E7 03 30 0C 06 Text(999, 0) offset: 000C1860
0027: 2D 00 4C 0C 06 Sound(45, 0) offset: 000C1898
0027: E8 03 C0 0E 06 Sound(1000, 0) offset: 000C1D80
0027: E9 03 F2 0E 06 Sound(1001, 0) offset: 000C1DE4
0027: EA 03 2F 11 06 Sound(1002, 0) offset: 000C225E
0027: EB 03 96 1B 06 Sound(1003, 0) offset: 000C372C
0027: E2 03 79 24 06 Vocab(994, 0) offset: 000C48F2
0027: E4 03 B5 24 06 Vocab(996, 0) offset: 000C496A
0027: E5 03 DC 25 06 Vocab(997, 0) offset: 000C4BB8
0027: E6 03 DD 43 06 Vocab(998, 0) offset: 000C87BA
0027: 00 00 57 45 06 Font(0, 0) offset: 000C8AAE
0027: 01 00 C6 48 06 Font(1, 0) offset: 000C918C
0027: 04 00 10 4C 06 Font(4, 0) offset: 000C9820
0027: 45 00 99 4E 06 Font(69, 0) offset: 000C9D32
0027: E7 03 09 52 06 Font(999, 0) offset: 000CA412
0027: 45 06 6F 54 06 Font(1605, 0) offset: 000CA8DE
0027: 3A 08 4E 57 06 Font(2106, 0) offset: 000CAE9C
0027: 01 00 BD 5A 06 Patch(1, 0) offset: 000CB57A
0027: 03 00 F4 80 06 Patch(3, 0) offset: 000D01E8
0027: 04 00 7C 8B 06 Patch(4, 0) offset: 000D16F8
0027: 65 00 10 8E 06 Patch(101, 0) offset: 000D1C20
0027: E6 03 2A 8F 06 Palette(998, 0) offset: 000D1E54
0027: E7 03 41 91 06 Palette(999, 0) offset: 000D2282
0027: 00 00 58 93 06 Message(0, 0) offset: 000D26B0
0027: 0D 00 9F 99 06 Message(13, 0) offset: 000D333E
0027: 0F 00 D1 99 06 Message(15, 0) offset: 000D33A2
0027: 14 00 F7 9A 06 Message(20, 0) offset: 000D35EE
0027: 64 00 0F 9B 06 Message(100, 0) offset: 000D361E
0027: 65 00 1F 9B 06 Message(101, 0) offset: 000D363E
0027: 66 00 3D 9B 06 Message(102, 0) offset: 000D367A
0027: 69 00 5B 9B 06 Message(105, 0) offset: 000D36B6
0027: 6E 00 79 9B 06 Message(110, 0) offset: 000D36F2
0027: B7 00 CA 9B 06 Message(183, 0) offset: 000D3794
0027: DE 03 E8 9B 06 Message(990, 0) offset: 000D37D0
0027: E2 03 66 9D 06 Message(994, 0) offset: 000D3ACC
0027: FF FF 2F 9E 06 Map(65535, 0) offset: 000D3C5E
0027: 00 00 3B 9E 06 Heap(0, 0) offset: 000D3C76
0027: 0B 00 0F A2 06 Heap(11, 0) offset: 000D441E
0027: 0C 00 28 A2 06 Heap(12, 0) offset: 000D4450
0027: 0D 00 31 A2 06 Heap(13, 0) offset: 000D4462
0027: 0E 00 49 A2 06 Heap(14, 0) offset: 000D4492
0027: 0F 00 71 A2 06 Heap(15, 0) offset: 000D44E2
0027: 10 00 2A A4 06 Heap(16, 0) offset: 000D4854
0027: 11 00 58 A4 06 Heap(17, 0) offset: 000D48B0
0027: 12 00 8E A4 06 Heap(18, 0) offset: 000D491C
0027: 13 00 04 A5 06 Heap(19, 0) offset: 000D4A08
0027: 14 00 62 A5 06 Heap(20, 0) offset: 000D4AC4
0027: 15 00 4B A7 06 Heap(21, 0) offset: 000D4E96
0027: 16 00 6B A7 06 Heap(22, 0) offset: 000D4ED6
0027: 18 00 C8 A7 06 Heap(24, 0) offset: 000D4F90
0027: 19 00 FC A9 06 Heap(25, 0) offset: 000D53F8
0027: 1A 00 2E AA 06 Heap(26, 0) offset: 000D545C
0027: 1B 00 7C AA 06 Heap(27, 0) offset: 000D54F8
0027: 1E 00 BF AA 06 Heap(30, 0) offset: 000D557E
0027: 20 00 A6 AB 06 Heap(32, 0) offset: 000D574C
0027: 64 00 D2 AB 06 Heap(100, 0) offset: 000D57A4
0027: 65 00 DB AD 06 Heap(101, 0) offset: 000D5BB6
0027: 66 00 C2 AE 06 Heap(102, 0) offset: 000D5D84
0027: 69 00 0A AF 06 Heap(105, 0) offset: 000D5E14
0027: 6E 00 52 AF 06 Heap(110, 0) offset: 000D5EA4
0027: B7 00 D5 AF 06 Heap(183, 0) offset: 000D5FAA
0027: CD 00 1D B0 06 Heap(205, 0) offset: 000D603A
0027: FF 00 4A B0 06 Heap(255, 0) offset: 000D6094
0027: 6D 03 B7 B0 06 Heap(877, 0) offset: 000D616E
0027: 99 03 F0 B0 06 Heap(921, 0) offset: 000D61E0
0027: 9A 03 1D B1 06 Heap(922, 0) offset: 000D623A
0027: 9B 03 A3 B1 06 Heap(923, 0) offset: 000D6346
0027: 9C 03 22 B2 06 Heap(924, 0) offset: 000D6444
0027: 9D 03 99 B2 06 Heap(925, 0) offset: 000D6532
0027: 9E 03 FB B2 06 Heap(926, 0) offset: 000D65F6
0027: 9F 03 23 B3 06 Heap(927, 0) offset: 000D6646
0027: A0 03 47 B3 06 Heap(928, 0) offset: 000D668E
0027: A1 03 01 B4 06 Heap(929, 0) offset: 000D6802
0027: A2 03 40 B4 06 Heap(930, 0) offset: 000D6880
0027: A4 03 6F B4 06 Heap(932, 0) offset: 000D68DE
0027: A5 03 9E B4 06 Heap(933, 0) offset: 000D693C
0027: A6 03 BC B4 06 Heap(934, 0) offset: 000D6978
0027: A7 03 F6 B4 06 Heap(935, 0) offset: 000D69EC
0027: A8 03 29 B5 06 Heap(936, 0) offset: 000D6A52
0027: A9 03 94 B5 06 Heap(937, 0) offset: 000D6B28
0027: AA 03 DF B5 06 Heap(938, 0) offset: 000D6BBE
0027: AB 03 FD B5 06 Heap(939, 0) offset: 000D6BFA
0027: AD 03 18 B6 06 Heap(941, 0) offset: 000D6C30
0027: AE 03 4E B6 06 Heap(942, 0) offset: 000D6C9C
0027: AF 03 6C B6 06 Heap(943, 0) offset: 000D6CD8
0027: B0 03 49 BA 06 Heap(944, 0) offset: 000D7492
0027: B1 03 79 BA 06 Heap(945, 0) offset: 000D74F2
0027: B2 03 A5 BA 06 Heap(946, 0) offset: 000D754A
0027: B3 03 C0 BA 06 Heap(947, 0) offset: 000D7580
0027: B4 03 F6 C3 06 Heap(948, 0) offset: 000D87EC
0027: B5 03 B0 C8 06 Heap(949, 0) offset: 000D9160
0027: B6 03 DA C8 06 Heap(950, 0) offset: 000D91B4
0027: B7 03 3C C9 06 Heap(951, 0) offset: 000D9278
0027: B8 03 67 C9 06 Heap(952, 0) offset: 000D92CE
0027: B9 03 2C CB 06 Heap(953, 0) offset: 000D9658
0027: BA 03 55 CB 06 Heap(954, 0) offset: 000D96AA
0027: BB 03 C7 CB 06 Heap(955, 0) offset: 000D978E
0027: BC 03 F0 CB 06 Heap(956, 0) offset: 000D97E0
0027: BE 03 11 CC 06 Heap(958, 0) offset: 000D9822
0027: C1 03 1A CC 06 Heap(961, 0) offset: 000D9834
0027: C3 03 39 CC 06 Heap(963, 0) offset: 000D9872
0027: C4 03 62 CC 06 Heap(964, 0) offset: 000D98C4
0027: C7 03 89 CC 06 Heap(967, 0) offset: 000D9912
0027: C8 03 AF CC 06 Heap(968, 0) offset: 000D995E
0027: C9 03 D3 CC 06 Heap(969, 0) offset: 000D99A6
0027: CA 03 ED CC 06 Heap(970, 0) offset: 000D99DA
0027: CB 03 14 CD 06 Heap(971, 0) offset: 000D9A28
0027: CC 03 3C CD 06 Heap(972, 0) offset: 000D9A78
0027: CD 03 63 CD 06 Heap(973, 0) offset: 000D9AC6
0027: CE 03 8B CD 06 Heap(974, 0) offset: 000D9B16
0027: CF 03 9F CD 06 Heap(975, 0) offset: 000D9B3E
0027: D0 03 C4 CD 06 Heap(976, 0) offset: 000D9B88
0027: D1 03 1C CE 06 Heap(977, 0) offset: 000D9C38
0027: D2 03 5C CE 06 Heap(978, 0) offset: 000D9CB8
0027: D4 03 B0 CE 06 Heap(980, 0) offset: 000D9D60
0027: D5 03 D8 CE 06 Heap(981, 0) offset: 000D9DB0
0027: D6 03 25 CF 06 Heap(982, 0) offset: 000D9E4A
0027: D7 03 2E CF 06 Heap(983, 0) offset: 000D9E5C
0027: D8 03 81 CF 06 Heap(984, 0) offset: 000D9F02
0027: D9 03 CC CF 06 Heap(985, 0) offset: 000D9F98
0027: DA 03 E4 CF 06 Heap(986, 0) offset: 000D9FC8
0027: DB 03 10 D0 06 Heap(987, 0) offset: 000DA020
0027: DC 03 B6 D0 06 Heap(988, 0) offset: 000DA16C
0027: DD 03 04 D1 06 Heap(989, 0) offset: 000DA208
0027: DE 03 29 D1 06 Heap(990, 0) offset: 000DA252
0027: DF 03 5E D3 06 Heap(991, 0) offset: 000DA6BC
0027: E0 03 AF D3 06 Heap(992, 0) offset: 000DA75E
0027: E1 03 71 D4 06 Heap(993, 0) offset: 000DA8E2
0027: E2 03 8C D4 06 Heap(994, 0) offset: 000DA918
0027: E3 03 20 D6 06 Heap(995, 0) offset: 000DAC40
0027: E4 03 85 D6 06 Heap(996, 0) offset: 000DAD0A
0027: E6 03 D7 D6 06 Heap(998, 0) offset: 000DADAE
0027: E7 03 A4 D7 06 Heap(999, 0) offset: 000DAF48
« Last Edit: June 25, 2015, 12:21:26 AM by MusicallyInspired »
Brass Lantern Prop Competition


SMF 2.0.19 | SMF © 2021, Simple Machines
Simple Audio Video Embedder

Page created in 0.037 seconds with 22 queries.