Author Topic: Sierra's Internal SCI Tools  (Read 35943 times)

0 Members and 5 Guests are viewing this topic.

Offline lance.ewing

Re: Sierra's Internal SCI Tools
« Reply #15 on: October 28, 2016, 04:41:51 AM »
Call me weird, but that sounds EXACTLY like my kind of jam. I'm all for this. Go big or go home.

troflip was probably half joking, but I've also thought the same thing a few times. A year or so ago, we even identified what "IDE" they were using back then and found a site online that appeared to have a version of it that roughly matched what Sierra would have been using. This was based on a partial match between a fragment in an unused part of an original game disk with one of the standard BRIEF macro files that comes with BRIEF, and based on the publish date of that particular version of BRIEF.

One thing I haven't heard of turning up yet though are the custom BRIEF macros that Sierra used. They clearly used a lot of them. They are referenced in some of the documentation that Omer released, and we've seen a few fragments from original disk slack space, but I don't think anyone has any full macro files.

The AGDS document included in the AGI Original Documentation thread mentioned BRIEF a number of times. Here is an interesting bit:

Code: [Select]
CG -- the game compiler.
This is the most used. Assuming you use BRIEF to edit the source code files,
call the compile macro (often assigned to the F9 key). It saves your file,
calls the CG game compiler, routes CG's output to your LGC subdirectory, and
if errors are found, displays them in the current window.

...and this bit as well:

Code: [Select]
MACROS
The BRIEF macros "allfiles.m" and "modify.m" allow you to modify all of
your source files at once. To use them, edit the file "\brief\macro\modify.m"
to do whatever you want done to your files. Compile it (use F9) until it iscorrect, and automatically loaded.
enter "allfiles."

Offline Kawa

Re: Sierra's Internal SCI Tools
« Reply #16 on: October 28, 2016, 05:49:25 AM »
Me, I just want compression and maybe multiple volume files. But I can't get MAKEVOLS to work.

Offline lskovlun

Re: Sierra's Internal SCI Tools
« Reply #17 on: October 28, 2016, 08:31:08 AM »
Me, I just want compression and maybe multiple volume files. But I can't get MAKEVOLS to work.
This reminds me of how the first decompressor I wrote for SCI1.1 abused a command-line tool from Logitech that happened to use the same compression library. Christoph's first comment to that was, predictably, "WTF?"
But it worked.

Offline NewRisingSun

Re: Sierra's Internal SCI Tools
« Reply #18 on: October 28, 2016, 11:42:31 AM »
Quote from: Kawa
Me, I just want compression and maybe multiple volume files. But I can't get MAKEVOLS to work.
I did get it to work to rebuild Space Quest I with compression. What exactly is your problem, and what version of MAKEVOLS are you using, and for what SCI version are you building?
Quote from: Iskovlun
This reminds me of how the first decompressor I wrote for SCI1.1 abused a command-line tool from Logitech that happened to use the same compression library. Christoph's first comment to that was, predictably, "WTF?" But it worked.
Ah, ye olde PKWare Data Compression Library. I first extracted it from SIERRA.EXE to create a linkable library version of it, then debugged it and wrote my own implementation of the decompressor using assembly language. Of course, with the C implementations available in open-source, that effort has become useless. I'm not positive though whether the compressor has ever been rewritten in Assembly or C as well, or whether an official linkable library has ever been leaked. PKWDCL seems to have been used quite widely --- not only did Sierra use it, but LucasArts would distribute Monkey Island 2 and Indiana Jones 4 using their own custom archive format (LFG) that compressed using the library. And many mid-90s floppy-based games used the INSTALIT installation package. Its built-in decompressor first used the old PAK compression from NoGate Consulting but later switched to PKWDCL in later versions. I know that from writing my own InstalIt .PVL archive extractor.

Offline Kawa

Re: Sierra's Internal SCI Tools
« Reply #19 on: October 28, 2016, 11:47:35 AM »
I did get it to work to rebuild Space Quest I with compression. What exactly is your problem, and what version of MAKEVOLS are you using, and for what SCI version are you building?
The one from OmerMor's SCI16 release, and the one from OmerMor's SCI16 release. The problem: I know now what RESOURCE.TXT should be, but MAKEVOLS wants a WHERE file. I have one of those, adjusted to the best of my knowledge but all I get is a blank RESOURCE.000 and RESOURCE.MAP. I'll try again so I can document the error after dinner, which is now.

Given the following:
WHERE
Code: [Select]
vocab=c:
script=c:
text=c:
heap=c:
message=c:
videoDrv=c:\vga320.drv
soundDrv=c:\std.drv
kbdDrv=c:\ibmkbd.drv
joyDrv= NO
mouse = YES
minHunk=1k
pic=.;c:\*.p56;c:
view=.;c:\*.v56;..\art\view\*.v56;c:
palette=.;c:
font=.;c:
sound=.;c:

RESOURCES.TXT
(Loosely based on http://symphoniae.com/nrs/sciprogramming/RESOURCE.TXT)
Code: [Select]
(volumes
volume 0
script 255
heap 255

script 0
script 10
script 11
script 14
script 15
script 20
script 21
script 24
script 26
script 100
)

Result
(Running this from DOSBox, where C: is my game's folder, with all resources extracted.)
Code: [Select]
MAKEVOLS 3.01 Copyright Sierra On-Line, Inc., Apr 27 1993. All rights reserved.

MAKEVOLS: (2) Object (volume) not found.
MAKEVOLS: (3) Object (umes) not found.
MAKEVOLS: (3) End of file while building (null).
resource.000 is 0 bytes long.
Bytes read: 0
Bytes written: 0
Compression: 100%
Sorting...

Resource.000: 0 bytes
Resource.map: 7 bytes

Removing particular script lines from resource.txt yields a shitton of Object (olume) not found. errors.
« Last Edit: October 28, 2016, 01:04:27 PM by Kawa »

Online OmerMor

Re: Sierra's Internal SCI Tools
« Reply #20 on: October 28, 2016, 12:47:16 PM »
One thing I haven't heard of turning up yet though are the custom BRIEF macros that Sierra used. They clearly used a lot of them. They are referenced in some of the documentation that Omer released, and we've seen a few fragments from original disk slack space, but I don't think anyone has any full macro files.

Here's an archive with BRIEF, some utilities, and compiled macros I managed to scrape off my stuff:
https://drive.google.com/file/d/0B5j-_ZMS8_UoYVJIVEtnZk5lbWc/view?usp=sharing&resourcekey=0-qPC6H-efAXoDFphQ7nquyQ
« Last Edit: January 09, 2022, 12:38:47 AM by OmerMor »

Offline NewRisingSun

Re: Sierra's Internal SCI Tools
« Reply #21 on: October 28, 2016, 01:40:34 PM »
I have just rebuilt KQ6 floppy using the MAKEVOLS utility from OmerMor's SCI16 archive. The resulting RESOURCE.000 and RESOURCE.MAP are not byte-for-byte identical, as the MAKEVOL.EXE seems to be of a later version that inserts an additional 0x12 0x34 0x00 0x00 into RESOURCE.MAP. A few of the files also compress differently, indicating a different version of the PKWare Data Compression Library. But the result still works nicely with the original interpreter included with the game. Attached find my WHERE and RESOURCE.TXT file for KQ6 Floppy. I put my individual game resources are in a subdirectory named INPUT\ under the current directory from which MAKEVOLS is launched.

Offline Kawa

Re: Sierra's Internal SCI Tools
« Reply #22 on: October 28, 2016, 02:10:13 PM »
That works much better!

Offline NewRisingSun

Re: Sierra's Internal SCI Tools
« Reply #23 on: October 28, 2016, 02:31:59 PM »
MAKEVOLS is actually quite flexible, which in the case of SCI0/10 with multiple volumes is very useful. Basically, you can have as many lists as you want, with one list calling up another. For example, you could do the following (stylized example):
Code: [Select]
(CDROM ; all resources in one volume file
system
rm1
rm2
)

(360K
volume 0
system

volume 1
rm1

volume 2
rm2
)

(720K
volume 0
system

volume 1
rm1
rm2
)

(system
script 999
script 998
)

(rm1
script 1
pic 1
)

(rm2
script 2
pic 2
)
Anything that is not a recognized keyword is interpreted as a reference to a separate list. When MAKEVOLS is run without a list name, it just takes the first one in RESOURCE.TXT. If you specified "MAKEVOLS 360k" with the RESOURCE.TXT above, only the "360K" list would be built, which puts all resources associated with rm1 and rm2 in separate volumes 1 and 2, whereas "MAKEVOLS 720K" would put them in the same volume 1. That flexibility still exists in MAKEVOLS 3.01, though it is somewhat useless since that version of MAKEVOLS/SCI does not support multiple volumes anymore.

Some early versions of MAKEVOLS, but not 1.10 and not 3.xx, apparently specified the paths in RESOURCE.TXT as well using the "resource" keyword (from INN):
Code: [Select]
resource view     0x80 /app24/ll/view/%d.v56;/app24/appshare/view/%d.v56
It seems that the paths were moved out of RESOURCE.TXT into the WHERE file at some point in time, possibly because SCI.EXE (without V) requires a WHERE file anyway which could be reused.
« Last Edit: October 28, 2016, 02:40:09 PM by NewRisingSun »

Offline Kawa

Re: Sierra's Internal SCI Tools
« Reply #24 on: October 28, 2016, 04:22:30 PM »
Haha. "Unable to allocate inBuffer", try again, "unable to allocate work buffer" X3

Offline lskovlun

Re: Sierra's Internal SCI Tools
« Reply #25 on: October 28, 2016, 05:59:48 PM »
The resulting RESOURCE.000 and RESOURCE.MAP are not byte-for-byte identical, as the MAKEVOL.EXE seems to be of a later version that inserts an additional 0x12 0x34 0x00 0x00 into RESOURCE.MAP.
That very much sounds like it's meant for the version-stamping utility to find and change... the thing is that there is a version stamp in the resource map and the executable that must match, but they differ by 0x1234. I helped troflip handle this for the LSL6 interpreter, and I believe it has a base stamp of 360 (dec), so the resource map must have 360+0x1234=0x139c.

Offline robbo007

Re: Sierra's Internal SCI Tools
« Reply #26 on: October 24, 2025, 11:04:21 AM »
Just trying to run the makevols.exe on my extracted SCI0 resource files to see if this makes any difference to the size of my resource.001

I get the following errors for all resources. Is there a certain naming convention its looking for? Mine are for example:
fonts
font.000, font.004 etc etc

Code: [Select]
MAKEVOLS: (731) Object (vocab) not found.

I've created the sub directories and my where file
Code: [Select]
view    = C:\Studio\testcomp\INPUT\view\
pic     = C:\Studio\testcomp\INPUT\pic\
script  = C:\Studio\testcomp\INPUT\script\
text    = C:\Studio\testcomp\INPUT\text\
sound   = C:\Studio\testcomp\INPUT\sound\
vocab   = C:\Studio\testcomp\INPUT\vocab\
font    = C:\Studio\testcomp\INPUT\font\
cursor  = C:\Studio\testcomp\INPUT\cursor\
patch   = C:\Studio\testcomp\INPUT\patch\

I've created a resource.txt
Code: [Select]
(volumes
; Cursors
cursor 768
cursor 992
cursor 997
cursor 999

; Fonts
font 000
font 001
font 004
font 007
font 009
font 100
font 200
font 300
font 600
font 601
font 603
font 999

; Patches
patch 001
patch 002
patch 003
patch 004
patch 007
patch 101

; Pictures
pic 001
pic 002
pic 003
pic 004
pic 005
pic 006
pic 007
pic 008
pic 009
pic 010
pic 011
pic 012
pic 013
pic 014
pic 015
pic 016
pic 017
pic 018
pic 019
pic 020
pic 021
pic 022
pic 023
pic 024
pic 025
pic 026
pic 027
pic 028
pic 029
pic 030
pic 031
pic 032
pic 033
pic 034
pic 035
pic 036
pic 037
pic 038
pic 039
pic 040
pic 041
pic 042
pic 043
pic 044
pic 045
pic 046
pic 047
pic 048
pic 050
pic 051
pic 052
pic 053
pic 055
pic 056
pic 057
pic 058
pic 059
pic 060
pic 061
pic 062
pic 063
pic 064
pic 065
pic 072
pic 073
pic 079
pic 080
pic 083
pic 089
pic 090
pic 091
pic 092
pic 093
pic 094
pic 095
pic 096
pic 097
pic 098
pic 099
pic 100
pic 101
pic 102
pic 103
pic 104
pic 105
pic 106
pic 107
pic 108
pic 109
pic 110
pic 111
pic 120
pic 121
pic 122
pic 123
pic 124
pic 140
pic 377
pic 500
pic 501
pic 502
pic 503
pic 505
pic 506
pic 507
pic 509
pic 510
pic 511
pic 512
pic 514
pic 515
pic 516
pic 517
pic 518
pic 520
pic 521
pic 522
pic 523
pic 524
pic 525
pic 650
pic 653
pic 654
pic 655
pic 656
pic 658
pic 800

; Scripts
script 000
script 001
script 002
script 003
script 004
script 005
script 006
script 007
script 008
script 009
script 010
script 011
script 012
script 013
script 014
script 015
script 016
script 017
script 018
script 019
script 020
script 021
script 022
script 023
script 024
script 025
script 026
script 027
script 028
script 029
script 030
script 031
script 032
script 033
script 034
script 035
script 036
script 037
script 038
script 039
script 040
script 041
script 042
script 043
script 044
script 045
script 046
script 047
script 048
script 050
script 051
script 052
script 053
script 055
script 056
script 057
script 058
script 059
script 060
script 061
script 062
script 063
script 064
script 065
script 072
script 073
script 079
script 080
script 083
script 089
script 090
script 091
script 092
script 093
script 094
script 095
script 096
script 097
script 098
script 100
script 101
script 102
script 103
script 104
script 105
script 106
script 107
script 108
script 109
script 110
script 111
script 120
script 121
script 122
script 123
script 124
script 265
script 290
script 300
script 301
script 302
script 303
script 304
script 305
script 306
script 500
script 501
script 503
script 505
script 506
script 507
script 508
script 509
script 510
script 511
script 512
script 514
script 515
script 516
script 517
script 518
script 521
script 522
script 523
script 524
script 525
script 526
script 600
script 650
script 651
script 652
script 653
script 654
script 655
script 656
script 797
script 799
script 800
script 809
script 810
script 811
script 969
script 970
script 971
script 972
script 973
script 974
script 975
script 976
script 977
script 978
script 979
script 980
script 981
script 982
script 983
script 984
script 985
script 986
script 987
script 988
script 989
script 990
script 991
script 992
script 993
script 994
script 995
script 996
script 997
script 998
script 999

; Sounds
sound 001
sound 002
sound 004
sound 005
sound 007
sound 010
sound 021
sound 022
sound 023
sound 024
sound 025
sound 026
sound 033
sound 100
sound 101
sound 107
sound 110
sound 120
sound 140
sound 141
sound 206
sound 207
sound 253
sound 261
sound 265
sound 299
sound 323
sound 330
sound 335
sound 340
sound 341
sound 395
sound 399
sound 431
sound 435
sound 452
sound 500
sound 540
sound 560
sound 599
sound 799
sound 800
sound 801
sound 802
sound 899
sound 900

; Text
text 000
text 001
text 002
text 003
text 004
text 005
text 006
text 007
text 008
text 009
text 010
text 011
text 012
text 013
text 014
text 015
text 016
text 017
text 020
text 021
text 022
text 023
text 024
text 025
text 026
text 027
text 028
text 029
text 030
text 032
text 033
text 034
text 035
text 039
text 040
text 055
text 057
text 058
text 070
text 071
text 094
text 100
text 102
text 104
text 105
text 107
text 108
text 120
text 124
text 140
text 141
text 142
text 143
text 144
text 145
text 146
text 147
text 148
text 149
text 150
text 151
text 152
text 153
text 154
text 155
text 156
text 157
text 158
text 159
text 160
text 161
text 162
text 163
text 164
text 165
text 166
text 265
text 290
text 301
text 306
text 341
text 503
text 506
text 507
text 509
text 510
text 512
text 514
text 515
text 516
text 517
text 518
text 522
text 523
text 525
text 655
text 656
text 797
text 809
text 976

; Views
view 000
view 001
view 003
view 004
view 005
view 006
view 007
view 008
view 009
view 010
view 011
view 012
view 013
view 017
view 018
view 020
view 021
view 023
view 024
view 026
view 027
view 028
view 029
view 030
view 031
view 032
view 033
view 034
view 035
view 036
view 037
view 038
view 039
view 040
view 041
view 042
view 043
view 044
view 045
view 046
view 047
view 048
view 050
view 051
view 052
view 053
view 055
view 056
view 057
view 058
view 072
view 073
view 079
view 080
view 083
view 090
view 091
view 092
view 093
view 094
view 095
view 096
view 097
view 098
view 100
view 101
view 102
view 103
view 104
view 105
view 106
view 107
view 108
view 109
view 110
view 111
view 112
view 120
view 121
view 122
view 123
view 124
view 125
view 126
view 140
view 200
view 201
view 202
view 203
view 204
view 205
view 206
view 207
view 208
view 209
view 210
view 211
view 212
view 213
view 214
view 215
view 216
view 217
view 218
view 219
view 220
view 221
view 222
view 223
view 224
view 225
view 226
view 227
view 228
view 229
view 230
view 231
view 232
view 233
view 234
view 235
view 240
view 290
view 315
view 502
view 503
view 504
view 505
view 506
view 508
view 509
view 510
view 511
view 512
view 513
view 514
view 515
view 516
view 517
view 518
view 519
view 520
view 522
view 523
view 524
view 525
view 526
view 527
view 528
view 529
view 530
view 531
view 532
view 533
view 534
view 536
view 538
view 539
view 540
view 541
view 542
view 543
view 544
view 545
view 546
view 547
view 548
view 549
view 550
view 551
view 552
view 553
view 554
view 600
view 601
view 602
view 603
view 604
view 605
view 606
view 607
view 608
view 609
view 610
view 611
view 612
view 613
view 614
view 615
view 616
view 617
view 618
view 650
view 651
view 652
view 653
view 654
view 655
view 656
view 705
view 706
view 707
view 708
view 710
view 712
view 714
view 715
view 716
view 717
view 718
view 719
view 720
view 721
view 722
view 723
view 725
view 726
view 727
view 728
view 729
view 730
view 731
view 732
view 733
view 734
view 901
view 914
view 915
view 916
view 917
view 918
view 950
view 994
view 995
view 996
view 997
view 998

; Vocabulary
vocab 000
vocab 900
vocab 901
vocab 994
vocab 995
vocab 996
vocab 997
vocab 998
vocab 999
)

Offline lskovlun

Re: Sierra's Internal SCI Tools
« Reply #27 on: October 24, 2025, 03:28:48 PM »
MAKEVOLS doesn't use a where file as far as I know (it's possible that some versions do). Instead you need to have a section in your resource.txt that defines the resource types:
The one from LSL3 looks like this:
Code: [Select]
(setpaths
        resource        view            0x80    ../../view/view
        resource        pic             0x81    ../../pic/pic
        resource        script  0x82    ../../script/script
        resource        text            0x83    ../../script/text
        resource        sound           0x84    ../../sound/sound
;       resource memory 0x85    ;       (can not be loaded from disk)
        resource        vocab           0x86    ../../script/vocab
        resource        font            0x87    s:font
        resource        cursor  0x88    s:cursor
        resource        patch           0x89    ../../sound/patch
)
Then you reference that in your main section before actually building any volumes.

Offline robbo007

Re: Sierra's Internal SCI Tools
« Reply #28 on: October 26, 2025, 07:45:25 AM »
ok thanks,
I've added that to the start of my resource.txt and it seems it likes the paths and locations but fails with a runtime error:

Code: [Select]
C:\STUDIO\TESTCOMP\INPUT>makevols -f resource.txt volume
Volume.000 is 0 bytes long.

run-time error R6003
- integer divide by 0

C:\STUDIO\TESTCOMP\INPUT>

Running the -xv paramter does not show any errors. Could it be the path format I'm using to declare the resource location is not correct?

Code: [Select]
;**
;** Resource list for both 360K and 720K floppy-based games.
;**
;** LSL4:  Never Say Nontoonyt
;**        Copyright 2025
;** by Robbbo
;**
;** Last Update: October 26, 2025
;**

(setpaths
        resource        view            0x80    C:\Studio\testcomp\INPUT\view
        resource        pic             0x81    C:\Studio\testcomp\INPUT\pic
        resource        script  0x82    C:\Studio\testcomp\INPUT\script
        resource        text            0x83    C:\Studio\testcomp\INPUT\text
        resource        sound           0x84    C:\Studio\testcomp\INPUT\sound
;       resource memory 0x85    ;       (can not be loaded from disk)
        resource        vocab           0x86    C:\Studio\testcomp\INPUT\script\vocab
        resource        font            0x87   C:\Studio\testcomp\INPUT\font
        resource        cursor  0x88    C:\Studio\testcomp\INPUT\cursor
        resource        patch           0x89    C:\Studio\testcomp\INPUT\patch
)
(volume
; Cursors
cursor 768
cursor 992
cursor 997
cursor 999

; Fonts
font 000
font 001
font 004
font 007
font 009
font 100
font 200
font 300
font 600
font 601
font 603
font 999

; Patches
patch 001
patch 002
patch 003
patch 004
patch 007
patch 101

; Pictures
pic 001
pic 002
pic 003
pic 004
pic 005
pic 006
pic 007
pic 008
pic 009
pic 010
pic 011
pic 012
pic 013
pic 014
pic 015
pic 016
pic 017
pic 018
pic 019
pic 020
pic 021
pic 022
pic 023
pic 024
pic 025
pic 026
pic 027
pic 028
pic 029
pic 030
pic 031
pic 032
pic 033
pic 034
pic 035
pic 036
pic 037
pic 038
pic 039
pic 040
pic 041
pic 042
pic 043
pic 044
pic 045
pic 046
pic 047
pic 048
pic 050
pic 051
pic 052
pic 053
pic 055
pic 056
pic 057
pic 058
pic 059
pic 060
pic 061
pic 062
pic 063
pic 064
pic 065
pic 072
pic 073
pic 079
pic 080
pic 083
pic 089
pic 090
pic 091
pic 092
pic 093
pic 094
pic 095
pic 096
pic 097
pic 098
pic 099
pic 100
pic 101
pic 102
pic 103
pic 104
pic 105
pic 106
pic 107
pic 108
pic 109
pic 110
pic 111
pic 120
pic 121
pic 122
pic 123
pic 124
pic 140
pic 377
pic 500
pic 501
pic 502
pic 503
pic 505
pic 506
pic 507
pic 509
pic 510
pic 511
pic 512
pic 514
pic 515
pic 516
pic 517
pic 518
pic 520
pic 521
pic 522
pic 523
pic 524
pic 525
pic 650
pic 653
pic 654
pic 655
pic 656
pic 658
pic 800

; Scripts
script 000
script 001
script 002
script 003
script 004
script 005
script 006
script 007
script 008
script 009
script 010
script 011
script 012
script 013
script 014
script 015
script 016
script 017
script 018
script 019
script 020
script 021
script 022
script 023
script 024
script 025
script 026
script 027
script 028
script 029
script 030
script 031
script 032
script 033
script 034
script 035
script 036
script 037
script 038
script 039
script 040
script 041
script 042
script 043
script 044
script 045
script 046
script 047
script 048
script 050
script 051
script 052
script 053
script 055
script 056
script 057
script 058
script 059
script 060
script 061
script 062
script 063
script 064
script 065
script 072
script 073
script 079
script 080
script 083
script 089
script 090
script 091
script 092
script 093
script 094
script 095
script 096
script 097
script 098
script 100
script 101
script 102
script 103
script 104
script 105
script 106
script 107
script 108
script 109
script 110
script 111
script 120
script 121
script 122
script 123
script 124
script 265
script 290
script 300
script 301
script 302
script 303
script 304
script 305
script 306
script 500
script 501
script 503
script 505
script 506
script 507
script 508
script 509
script 510
script 511
script 512
script 514
script 515
script 516
script 517
script 518
script 521
script 522
script 523
script 524
script 525
script 526
script 600
script 650
script 651
script 652
script 653
script 654
script 655
script 656
script 797
script 799
script 800
script 809
script 810
script 811
script 969
script 970
script 971
script 972
script 973
script 974
script 975
script 976
script 977
script 978
script 979
script 980
script 981
script 982
script 983
script 984
script 985
script 986
script 987
script 988
script 989
script 990
script 991
script 992
script 993
script 994
script 995
script 996
script 997
script 998
script 999

; Sounds
sound 001
sound 002
sound 004
sound 005
sound 007
sound 010
sound 021
sound 022
sound 023
sound 024
sound 025
sound 026
sound 033
sound 100
sound 101
sound 107
sound 110
sound 120
sound 140
sound 141
sound 206
sound 207
sound 253
sound 261
sound 265
sound 299
sound 323
sound 330
sound 335
sound 340
sound 341
sound 395
sound 399
sound 431
sound 435
sound 452
sound 500
sound 540
sound 560
sound 599
sound 799
sound 800
sound 801
sound 802
sound 899
sound 900

; Text
text 000
text 001
text 002
text 003
text 004
text 005
text 006
text 007
text 008
text 009
text 010
text 011
text 012
text 013
text 014
text 015
text 016
text 017
text 020
text 021
text 022
text 023
text 024
text 025
text 026
text 027
text 028
text 029
text 030
text 032
text 033
text 034
text 035
text 039
text 040
text 055
text 057
text 058
text 070
text 071
text 094
text 100
text 102
text 104
text 105
text 107
text 108
text 120
text 124
text 140
text 141
text 142
text 143
text 144
text 145
text 146
text 147
text 148
text 149
text 150
text 151
text 152
text 153
text 154
text 155
text 156
text 157
text 158
text 159
text 160
text 161
text 162
text 163
text 164
text 165
text 166
text 265
text 290
text 301
text 306
text 341
text 503
text 506
text 507
text 509
text 510
text 512
text 514
text 515
text 516
text 517
text 518
text 522
text 523
text 525
text 655
text 656
text 797
text 809
text 976

; Views
view 000
view 001
view 003
view 004
view 005
view 006
view 007
view 008
view 009
view 010
view 011
view 012
view 013
view 017
view 018
view 020
view 021
view 023
view 024
view 026
view 027
view 028
view 029
view 030
view 031
view 032
view 033
view 034
view 035
view 036
view 037
view 038
view 039
view 040
view 041
view 042
view 043
view 044
view 045
view 046
view 047
view 048
view 050
view 051
view 052
view 053
view 055
view 056
view 057
view 058
view 072
view 073
view 079
view 080
view 083
view 090
view 091
view 092
view 093
view 094
view 095
view 096
view 097
view 098
view 100
view 101
view 102
view 103
view 104
view 105
view 106
view 107
view 108
view 109
view 110
view 111
view 112
view 120
view 121
view 122
view 123
view 124
view 125
view 126
view 140
view 200
view 201
view 202
view 203
view 204
view 205
view 206
view 207
view 208
view 209
view 210
view 211
view 212
view 213
view 214
view 215
view 216
view 217
view 218
view 219
view 220
view 221
view 222
view 223
view 224
view 225
view 226
view 227
view 228
view 229
view 230
view 231
view 232
view 233
view 234
view 235
view 240
view 290
view 315
view 502
view 503
view 504
view 505
view 506
view 508
view 509
view 510
view 511
view 512
view 513
view 514
view 515
view 516
view 517
view 518
view 519
view 520
view 522
view 523
view 524
view 525
view 526
view 527
view 528
view 529
view 530
view 531
view 532
view 533
view 534
view 536
view 538
view 539
view 540
view 541
view 542
view 543
view 544
view 545
view 546
view 547
view 548
view 549
view 550
view 551
view 552
view 553
view 554
view 600
view 601
view 602
view 603
view 604
view 605
view 606
view 607
view 608
view 609
view 610
view 611
view 612
view 613
view 614
view 615
view 616
view 617
view 618
view 650
view 651
view 652
view 653
view 654
view 655
view 656
view 705
view 706
view 707
view 708
view 710
view 712
view 714
view 715
view 716
view 717
view 718
view 719
view 720
view 721
view 722
view 723
view 725
view 726
view 727
view 728
view 729
view 730
view 731
view 732
view 733
view 734
view 901
view 914
view 915
view 916
view 917
view 918
view 950
view 994
view 995
view 996
view 997
view 998

; Vocabulary
vocab 000
vocab 900
vocab 901
vocab 994
vocab 995
vocab 996
vocab 997
vocab 998
vocab 999
)

Offline Kawa

Re: Sierra's Internal SCI Tools
« Reply #29 on: October 26, 2025, 08:29:55 AM »
It's either the fact you're using absolute paths where the example uses relative, or it's because you're using backslashes where the example uses forward slashes. Take your pick.

For the former, either specify it like ./view instead of C:\Studio\testcomp\INPUT\view, or as just view etc.


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

Page created in 0.069 seconds with 22 queries.