Originally written by Frank Linhares (netsurge/demonic/bbs-scene.org) and updated by Philipp Giebel (kuehlbox.wtf), this is a library for reading MysticBBS data files with php.
$mystic->lastcallers( $number = 10, $pipe = false );
$mystic->oneliner( $number = 10, $pipe = false );
$mystic->files( $area, $number = 10, $start = 0, $pipe = false );
$mystic->fbases( $number = 10, $start = 0, $pipe = false );
$mystic->chat( $nodes = 1, $pipe = false );
$mystic->history( $number = 10 );
$mystic->userlist( $number = 10, $start = 0, $pipe = false );
First include the library using something like:
require_once 'inc/mystic_library.php';
Then create a new element with the class, providing the full path to your mystic data files:
$mystic = new mystic( '/path/to/your/mystic/data/' );
When using Mystic v1.11, add 1.11 as a parameter:
$mystic = new mystic( '/path/to/your/mystic/data/', 1.11 );
Now you can use its methods like:
$userlist = $mystic->userlist();
Please check the comments inside the library for more detailed information on how to use the different methods.
Well.. ..This page! :)
The oneliners, last callers and the filebase are written using this library.
Originally written by Frank Linhares (netsurge/demonic/bbs-scene.org), this
library looked pretty much abandoned, when I started using it in 2015.
So, first I updated it to work with MysticBBS v1.11 and later, I added a
few more methods.
Lastly, I made it a class for object oriented use and started uploading it
publicly to my personal gitlab.
In 2019, I updated this library to work with MysticBBS v1.12 as well.
So now you can use it, too, contribute to or extend it.
There is absolutely no guarantee that this will work with your setup, won't damage anything or work at all! Don't blame me!
git clone https://gitlab.ambhost.net/stimpy/phplib_mystic.git