• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Recent content by Mystara

  1. Mystara

    [Znote AAC] Characterprofile EQ shower

    I honestly cannot tell you why it will not display correctly on yours. Looking through the code it appears correct.
  2. Mystara

    [Znote AAC] Characterprofile EQ shower

    <!-- DEATH LIST --> <ul><li> <b>Death List:</b><br /> <?php if ($config['TFSVersion'] == 'TFS_02') { $array = user_fetch_deathlist($user_id); if ($array) { //print_r($array)...
  3. Mystara

    [Znote AAC] Characterprofile EQ shower

    The code is checking out properly. Here it is reformatted again. <?php require_once 'engine/init.php'; include 'layout/overall/header.php'; if ($config['log_ip']) { znote_visitor_insert_detailed_data(4); } if (isset($_GET['name']) === true && empty($_GET['name']) === false) { $name =...
  4. Mystara

    [Znote AAC] Characterprofile EQ shower

    I actually see another mistake. Add these two corrections <!-- DEATH LIST --><ul> . . . . <!-- END DEATH LIST --></ul>
  5. Mystara

    [Znote AAC] Characterprofile EQ shower

    <!-- DEATH LIST --> <li> <b>Death List:</b><br /> <?php if ($config['TFSVersion'] == 'TFS_02') { $array = user_fetch_deathlist($user_id); if ($array) { //print_r($array); ?>...
  6. Mystara

    [Znote AAC] Characterprofile EQ shower

    Try This <?php require_once 'engine/init.php'; include 'layout/overall/header.php'; if ($config['log_ip']) { znote_visitor_insert_detailed_data(4); } if (isset($_GET['name']) === true && empty($_GET['name']) === false) { $name = $_GET['name']; if (user_character_exist($name)) {...
  7. Mystara

    [Znote AAC] Characterprofile EQ shower

    Can you show me a screenshot of the page? Mine is using the basic Znote AAC design. I'm not using any special layout. I also did mine slightly different because I'm a bit particular about making sure the code is correct so this part: <!-- Fix item positions CSS --> <style...
  8. Mystara

    [Znote AAC] Characterprofile EQ shower

    Make the following changes to the original code: <!-- Render HTML --> <div class="signBgrnd" style="float: right;"> Insert the entire code in your characterprofile.php on a blank line before: <ul class="unstyled"> <li><font class="profile_font"...
  9. Mystara

    [Znote AAC] Characterprofile EQ shower

    I love this. Here is a screenshot on how I positioned it on my Character Profile Page.
  10. Mystara

    [10.77][TFS 1.2] ORTS, a real map project

    I did a lot of testing and troubleshooting. I then tried the 32 bit server and the problem vanished. Seems there may be trouble with the 64 bit nightly build.
  11. Mystara

    [10.77][TFS 1.2] ORTS, a real map project

    This did it! Thank you a million times! Seems I've run into another issue. Now the server will randomly stop working. (I'm under windows 7 home 64 bit.) The crash log states the fault module to be C:\Windows\System32\Kernelbase.dll There isn't any recognizable actions that cause the crash, nor...
  12. Mystara

    [10.77][TFS 1.2] ORTS, a real map project

    Hello, I am trying to set this up as a personal freemium server (i.e. I would be the only one on it) However I cannot seem to get it to run. After I set everything up I keep getting and invalid Username/Password error. A couple of questions: Is there a default account associated with this...
Back
Top