Register to post in forums, or Log in to your existing account
 

 Related 
Contents
Files
  #CLOSE
  #ERASE
  #FILE
  #IMAGE
  #LOG
  #READ
  #RESET
  #SEND
  #TYPE
  #WRITE
  #WRITELOG
  %filesize
  %grep
  %read
  %write
  Files
Miscellaneous
  #CR
  #DEBUGFILE
  #EXECUTE
  #EXECWIN
  #HELP
  #MSS
  #NOOP
  #SCRIPT
  #SEND
  #SENDPROMPT
  #SENDRAW
  #SENDSB
  #SS
  #VERSION
  #WIZLIST
  %ansi
  %clip
  %color
  %colorname
  %exec
  %exp
  %expand
  %gsl
  %literal
  %mcp
  %mss
  %null
  %numparam
  %param
  %params
  %random
  %time
  Miscellaneous
Command Reference
  #nnn
  #ABORT
  #ACTION
  #ADD
  #ADDITEM
  #ADDKEY
  #AFK
  #ALARM
  #ALIAS
  #ALL
  #BACKUP
  #BEEP
  #BREAK
  #BUTTON
  #C-
  #C+
  #CALL
  #CAPTURE
  #CASE
  #CHARACTER
  #CLASS
  #CLOSE
  #CLR
  #CMD
  #COLOR
  #COM
  #CONDITION
  #CONFIGURE
  #CONNECT
  #CONTINUE
  #CR
  #CW
  #DBCLOSE
  #DBDELETE
  #DBFIRST
  #DBGET
  #DBLOAD
  #DBNEXT
  #DBOFFLINE
  #DBONLINE
  #DBPREV
  #DBPUT
  #DBRESET
  #DBSAVE
  #DDE
  #DEBUG
  #DEBUGFILE
  #DEFAULT
  #DELCLASS
  #DELITEM
  #DELKEY
  #DELNITEM
  #DESCRIBE
  #DIRECTION
  #DISCONNECT
  #DOOR
  #ECHO
  #ECHOPROMPT
  #EDITOR
  #ERASE
  #EVALUATE
  #EVENT
  #EXECUTE
  #EXECWIN
  #EXIT
  #FILE
  #FIND
  #FIRE
  #FORALL
  #FREEZE
  #FTP
  #FUNCTION
  #GAG
  #GAGBLOCK
  #GAGLOG
  #GAGOFF
  #GAGON
  #GAGSPACE
  #GAUGE
  #H-
  #H+
  #HELP
  #HIGHLIGHT
  #HISTLOAD
  #HISTORY
  #HISTSAVE
  #HOST
  #IF
  #IGNORE
  #IMAGE
  #INPUT
  #KEY
  #KILLALL
  #LAUNCH
  #LMAP
  #LOAD
  #LOCAL
  #LOCATION
  #LOG
  #LOOK
  #LOOP
  #LOOPDB
  #LOOPVIEW
  #LUA
  #MAKEROOM
  #MAKEWINDOW
  #MAP
  #MAPQUERY
  #MARK
  #MATH
  #MEDIA
  #MENU
  #MERGE
  #MESSAGE
  #MODULE
  #MOVE
  #MSS
  #MXP
  #MXPTRIG
  #NAME
  #NEW
  #NEWVAR
  #NODEF
  #NODIR
  #NOINPUT
  #NOMAP
  #NOOP
  #NOSAVE
  #OK
  #ONINPUT
  #PATH
  #PATHHIGH
  #PAUSE
  #PCOL
  #PICK
  #PLAY
  #PLUGIN
  #PORTAL
  #PRINT
  #PROMPT
  #PSUB
  #PUEBLO
  #PW
  #QUERY
  #QUEUE
  #RAISEEVENT
  #READ
  #RECALL
  #RECORD
  #REGEX
  #RENAME
  #REPEAT
  #RESET
  #RESUME
  #RESULT
  #RETRACE
  #RETURN
  #SAVE
  #SAY
  #SAYADD
  #SAYPROMPT
  #SCRIPT
  #SCROLL
  #SECTION
  #SEND
  #SENDGMCP
  #SENDPROMPT
  #SENDRAW
  #SENDSB
  #SESSION
  #SET
  #SETPROMPT
  #SHOW
  #SHOWARR
  #SHOWDB
  #SHOWPROMPT
  #SHOWTABLE
  #SIGNAL
  #SLOW
  #SORT
  #SQLCLOSE
  #SQLDB
  #SS
  #STATE
  #STATUS
  #STEP
  #STOP
  #STWIN
  #STYLE
  #SUBSTITUTE
  #SUSPEND
  #SWITCH
  #T-
  #T?
  #T+
  #TAB
  #TAG
  #TELEPORT
  #TEMP
  #TEMPVAR
  #THREAD
  #TIMER
  #TRACK
  #TRIGGER
  #TSET
  #TYPE
  #TZERO
  #UNALIAS
  #UNBUTTON
  #UNCLASS
  #UNDIR
  #UNGAG
  #UNKEY
  #UNEVENT
  #UNLOAD
  #UNLOC
  #UNMENU
  #UNPATH
  #UNPORTAL
  #UNSTYLE
  #UNTAB
  #UNTIL
  #UNTRIGGER
  #UNVAR
  #UPDATE
  #URL
  #VARFUNC
  #VARIABLE
  #VERBATIM
  #VERSION
  #VIEW
  #WAIT
  #WAITFOR
  #WAITSIGNAL
  #WAITTHREAD
  #WALK
  #WHILE
  #WINDOW
  #WITHLOC
  #WIZLIST
  #WRAP
  #WRITE
  #WRITELOG
  #YESNO
Related Links:
  Files
  Miscellaneous
#FTP [[cmud_#FTP]] 
FTP

Syntax: #FTP command arguments

Note: Not currently implemented in CMUD

The #FTP command allows you to transfer files using the Internet File Transfer Protocol (FTP). If no command or agument is specified, the #FTP command will open a graphical window allowing you to transfer files interactively. Otherwise, when you use a command, you can control FTP from your scripts. The following commands are available:

open hostname[:port] [username] [password]

open an FTP connection to the specified host. The Port is optional. Port 21 is used if no port is specified. The FTP program will store the previous username and password (encoded, but not encrypted) for a host in the zFTP.INI file. So, if Username and/or Password is omitted from the command line, the values stored in the INI file will be used automatically. If no Username or password is stored in the INI file, an "anonymous" FTP connection is made.

close

close the current FTP session

dir or list

display a directory listing of the current remote server files

cwd

display the "current working directory" of the remote server

ascii

set the transfer mode to ascii text (this is the default)

binary

set the transfer mode to binary

get filename [localname]

Download the specified filename from the remote server to the current system. By default, this file is placed into your MUD character directory within the CMUD directory. To override this, specify the actual path and filename of the local file.

put filename

Upload the specified filename from the local computer to the remote server. If no path is specified in the filename, CMUD will look first in the current character directory, and then it will look in the main CMUD directory

getedit filename

Download the specified text file and load its contents directly into the editor. No file is created on your disk (unless you save the file from the editor). A new button called "FTP" will be displayed in the editor toolbar. This FTP button can be pressed to upload the edited file back to the remote server using the same filename. This command is useful for grabbing a text file from the MUD, editing it, and then sending it back again.
Viewer Comments [0 - Post your comments]

Jump to:  

© 2009 Zugg Software. Hosted by Wolfpaw.net