Jump to content

foxdie

Retired Staff
  • Posts

    3,694
  • Joined

  • Last visited

  • Days Won

    8

Posts posted by foxdie

  1. PB_SV_AliasMax [0-99]Setting defaults to 0 which means alias tracking is disabled; set to some value above 0 to enable and to specify how many aliases will be stored for each GUID; if the player uses more aliases than the max, the later ones will be ignored

  2. #!/bin/bash

    FTP_SRV=""
    FTP_LOGIN=""
    FTP_PW=""
    REMOTE_DIR="."


    FN=`echo $1 | sed -e s/"\(\\/.*\\/\)"//`
    FULLFN_HTM=`echo $1 | sed -e s/"\([.]png\)"/.htm/`
    FN_HTM=`echo $FULLFN_HTM | sed -e s/"\(\\/.*\\/\)"//`
    SVSS=`echo $1 | sed -e s/"pb[0-9]\+[.]png"/pbsvss.htm/`

    ftp -np $FTP_SRV << END_SCRIPT
    quote USER $FTP_LOGIN
    quote PASS $FTP_PW
    binary
    cd $REMOTE_DIR
    put $1 $FN
    put $FULLFN_HTM $FN_HTM
    put $SVSS pbsvss.htm
    quit
    END_SCRIPT
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.