File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ; $VER: StartNode 1.4 (2020-06-07)
2+ ; created by Dimitris Panokostas (dimitris@blitterstudio.com)
3+ ;
4+ ; This AmigaDOS script starts up the Lightwave ScreamerNet-II program with the right parameters
5+ ; It will automatically increment the node number until it finds one that is not used already.
6+ ;
7+
8+ ECHO "********************************************"
9+ ECHO "Lightwave ScreamerNet-II node script v1.4 starting..."
10+ ECHO "Lightwave command directory to use: Command:"
11+ ECHO "********************************************"
12+ SetEnv NodeNumber 1
13+
14+ LAB MakeName
15+ If Exists Command:ack$NodeNumber
16+ SetEnv NodeNumber `Eval $NodeNumber + 1`
17+ SKIP MakeName Back
18+ EndIf
19+
20+ Set jobNumber job$NodeNumber
21+ Set ackNumber ack$NodeNumber
22+
23+ CD Toaster:
24+ LWSN.FP -2 -cToaster:LightWave_Support/LW-config Command:$jobNumber Command:$ackNumber
25+
26+ ; Quit emulator when ScreamerNet shuts down
27+ C:UAEquit
You can’t perform that action at this time.
0 commit comments