Difference between revisions of "File Commands"
(added the content for this page. added a bit about ?cd and ?pwd (would like to rename page to cover the other file commands).) |
(Added category) |
||
Line 47: | Line 47: | ||
Current working directory: . | Current working directory: . | ||
</pre> | </pre> | ||
+ | |||
+ | [[Category: Server]] | ||
+ | [[Category: Tutorial]] |
Revision as of 08:13, 11 January 2005
Contents
Uploading and downloading files within the game
?getfile <path>
This will retrieve a file from the server and download it into your client directory. Useful paths to know are maps and arenas where maps and arenas are located respectively.
?getfile arenas/(default)/arena.conf File received: arena.conf
?putfile <local path>[:<destination path>]
Don't be put off by the complexity of this command. It can be used like a normal *putfile:
?putfile news.txt Sending file: news.txt File received: ./news.txt
You can supply an optional destination path by using a colon:
?putfile local.lvl:maps/local.lvl Sending file: local.lvl File received: ./maps/local.lvl
The path is relative to the base directory where asss has been installed. You can also change the filename using the colon method.
?putfile arena.conf.bak:arenas/(public)/arena.conf Sending file: arena.conf.bak File received: ./arenas/(public)/arena.conf
?putzip <somefile.zip>[:<destination path>]
This is similar to ?putfile. The optional part after colon is used to specify a target directory rather than a file. The zip file will be uncompressed into this directory or the current working directory (see ?pwd). Any directory tree structure in the zip file is ignored and files from the .zip will overwrite any duplicate files. Note: this command is not available to windows users.
Helper commands
There are two helper commands that can be used with these three, ?cd and ?pwd.
?cd <path>
With this command you can change the current directory. By default it will start off as ., the base directory for the asss install.
?cd arenas/(public) Changed working directory.
You shouldn't use .. or end the path with /. This command is different from the cd command that you would find in a shell in that the parameter is always taken to be relative to the asss base directory.
?pwd
The print working directory command shows where you are currently located.
?pwd Current working directory: .