World 
The byond world object stores some basic byond level config, and has a few hub specific procs for managing hub visibility
Procs | |
| KillImmediately | This proc kills DreamDaemon (DreamSeeker if locally debugging) instance via shell command. This is not a normal routine and it should be used under certain circumstances (like world can't shutdown itself properly) Please close spawned threads with separate PIDs (if any) |
|---|---|
| file2list | Splits the text of a file at seperator and returns them in a list. returns an empty list if the file doesn't exist |
| increase_max_x | Handles incresing the world's maxx var and intializing the new turfs and assigning them to the global area. If map_load_z_cutoff is passed in, it will only load turfs up to that z level, inclusive. This is because maploading will handle the turfs it loads itself. |
| invoke_callback_with_usr | Makes a call in the context of a different usr. Use sparingly |
Proc Details
KillImmediately
This proc kills DreamDaemon (DreamSeeker if locally debugging) instance via shell command. This is not a normal routine and it should be used under certain circumstances (like world can't shutdown itself properly) Please close spawned threads with separate PIDs (if any)
file2list
Splits the text of a file at seperator and returns them in a list. returns an empty list if the file doesn't exist
increase_max_x
Handles incresing the world's maxx var and intializing the new turfs and assigning them to the global area. If map_load_z_cutoff is passed in, it will only load turfs up to that z level, inclusive. This is because maploading will handle the turfs it loads itself.
invoke_callback_with_usr
Makes a call in the context of a different usr. Use sparingly