Spider Posted February 28, 2016 Report Share Posted February 28, 2016 I was actually looking for one of these but could not find one, although I'm about 95% sure there was one printed in a magazine "back in the day" so to speak, so I just quickly whipped one up. :) It simply (as the title indicates) lists the room names. To use, load the game code (don't forget to issue a CLEAR first!) then load and run this. jswlistrooms.tap Quote Link to comment Share on other sites More sharing options...
jetsetdanny Posted February 28, 2016 Report Share Posted February 28, 2016 Thanks, Andy. How about something PC-based that would dump the room names from a JSW game into a text file? Would you be able to create something like this? Spider 1 Quote Link to comment Share on other sites More sharing options...
Spider Posted February 28, 2016 Author Report Share Posted February 28, 2016 Possibly although it may be a bit messy :lol: :unsure: It might be something to suggest for JSWED actually, just a straightforward .xml export / import (rather than a file choice) , I would like to suggest something along the lines of the following format for that: <id>0</id> <desc>The Off Licence</desc> <id>1</id> <desc>The Bridge</desc> I could not do that format however. Quote Link to comment Share on other sites More sharing options...
SkoolKid Posted February 29, 2016 Report Share Posted February 29, 2016 Here's how you could do it in one line with SkoolKit (on Linux, and possibly OS X): $ echo -e 'b 49280\nT 49280,32\nL49280,256,60' | sna2skool.py -c - jsw.z80 | grep -o '".*"' This produces the following listing: " The Off Licence " " The Bridge " " Under the MegaTree " ... " The Yacht " Spider, andrewbroad and jetsetdanny 3 Quote Link to comment Share on other sites More sharing options...
jetsetdanny Posted February 29, 2016 Report Share Posted February 29, 2016 Thanks for the tip, Richard! Quote Link to comment Share on other sites More sharing options...
SkoolKid Posted March 1, 2016 Report Share Posted March 1, 2016 And here's how to do it using SkoolKit and Windows PowerShell: > echo "b 49280" "T 49280,32" "L 49280,256,60" | sna2skool.py -c - jsw.z80 | select-string DEFM | %{$_ -replace '.*DEFM ', ''} This might not be the best way (PowerShell is not my first language), but I think it works. Spider 1 Quote Link to comment Share on other sites More sharing options...
jetsetdanny Posted March 1, 2016 Report Share Posted March 1, 2016 Thanks again! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.