Home Forums Download Support Last Updated: Sat, 21 Jun 2003 19:18:32 GMT
 

View the mymud.inc Here
View the site.inc Here

<?php
        
    
require 'include/mymud.inc';
    
printheader("MyMud Homepage");
    
    
opentable(0,0,0,"center","middle",700);

    
openrow("","","","*",10,0,0);
    
opencol("","","center","*","*",0,0);
    
printspace(1);
    
closecol();
    
closerow();
    
    
openrow("","","","*","*",0,0);
    
opencol("","","center","*","*",0,0);    
?>

<p>Welcome to the MyMud homepage.  This project is written 100% from scratch.
I am attempting to build a stable mud server that has all the the latest
mud features while housing it's data on a MySQL server instead of text files.
Hopefully I can use the power of MySQL to speed up the simple data management of
the server.</p>

<p>Currently the project is in it's pre-alpha stage.  I have mainly been investing a 
lot of time into the logging capabilities of the server.  For now it's just a glorified
chat server that can log information.</P>

<p>The command structure has been built and I have designed it on the standard shell
argument syntax. It looks like Function(CONNECTION_DATA, int argc, char** argv).  This
structure will be much simpler to process arguments and switches for commands and such.
It does add a little complexity communication commands but with a simple for loop that
can easily be solved.</p>

<p>Color has been added and I am currently working on routines to help format the data
to be displayed to the client.  I am also going to be setting it up so that an account
is created from a webpage and the account can have multiple characters.  The only thing
I am still unsure of is if I am going to do the character creation through the web or
the mud server.  I have decided to create all the web pages using php this should 
allow for a wide range of free and cheap services to host the pages on.</p>



<?php
    
    closecol
();
    
closerow();
    
    
openrow("","","","*",10,0,0);
    
opencol("","","center","*","*",0,0);
    
printspace(1);
    
closecol();
    
closerow();
    
    
closetable();
    
    
printfooter($_SERVER['PHP_SELF']);
?>
 
This webpage and it's content is released under the GNU General Public License.