Results 1 to 15 of 17

Thread: script I came up with to download and convert all maps

Threaded View

  1. #1
    Registered User
    Join Date
    Jun 2003
    Posts
    550

    script I came up with to download and convert all maps

    This uses the "mapconvert" script that is stickied in this forum section.

    have a copy of mapconvert in your home folder that you launch SEQ from along with the contents of this script (named whatever you wish it)

    Code:
    #!/bin/bash
    
    wget http://www.mapfiend.net/fetchpack/ALL
    
    mkdir tmpmaps
    mv ALL tmpmaps/all.zip
    cd tmpmaps
    
    unzip all.zip
    
    rm all.zip
    rm *_2.txt
    
    ../mapconvert
    
    mv *.map $HOME/.showeq/maps
    rm *.txt
    cd ..
    rmdir tmpmaps
    I delete the _2's since I don't want the text that shows up in the 2nd layer (comes in handy in game, but not here). The mapconvert script is smart enough to handle the missing _2 files.

    Depending on how you have your permissions set up, you may need to sudo to run it to overwrite any old maps.

    It took about 50 minutes to run the script on my linux box.

    In case anyone's interested. Enjoy.
    Last edited by uRit1u2CBBA=; 01-29-2009 at 11:47 PM.

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