MG Mud User | 88f1247 | 2016-06-24 23:31:02 +0200 | [diff] [blame] | 1 | SYNOPSIS |
Zesstra | 7ea4a03 | 2019-11-26 20:11:40 +0100 | [diff] [blame] | 2 | string *epilog(int eflag) |
MG Mud User | 88f1247 | 2016-06-24 23:31:02 +0200 | [diff] [blame] | 3 | |
| 4 | DESCRIPTION |
Zesstra | 7ea4a03 | 2019-11-26 20:11:40 +0100 | [diff] [blame] | 5 | Perform final actions before opening the system to users. |
MG Mud User | 88f1247 | 2016-06-24 23:31:02 +0200 | [diff] [blame] | 6 | |
Zesstra | 7ea4a03 | 2019-11-26 20:11:40 +0100 | [diff] [blame] | 7 | The argument is the number of -e options that were |
| 8 | given to the parser on the commandline. Normally it is just 0 |
| 9 | or 1. The function should return an array of strings, which |
| 10 | traditionally denote the objects to be preloaded with |
| 11 | master->preload(). Any other return value is interpreted as |
| 12 | "no object to preload". The resulting strings will be passed |
| 13 | one at a time as arguments to preload(). |
MG Mud User | 88f1247 | 2016-06-24 23:31:02 +0200 | [diff] [blame] | 14 | |
Zesstra | 7ea4a03 | 2019-11-26 20:11:40 +0100 | [diff] [blame] | 15 | SEE ALSO |
| 16 | preload(M), master(M) |