5 * Created by Bryan Donlan on Sun 21 May 2006
6 * Copyright (c) 2006 Bryan Donlan. All rights reserved.
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
23 * SERS MAPP (command) filename (string)
26 * Saves the map to the specified file.
29 void caosVM::c_SERS_MAPP() {
30 VM_PARAM_STRING(filename
)
35 * SERL MAPP (command) filename (string)
38 * Loads the map from the specified file
40 * May explode if anything at all exists.
42 void caosVM::c_SERL_MAPP() {
43 VM_PARAM_STRING(filename
)
48 * SERS SCRP (command) filename (string)
51 * Saves the scriptorium to the specified file
53 void caosVM::c_SERS_SCRP() {
54 VM_PARAM_STRING(filename
)
59 * SERL SCRP (command) filename (string)
62 * Loads the scriptorium from the specified file
64 void caosVM::c_SERL_SCRP() {
65 VM_PARAM_STRING(filename
)