• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. Darth Maul

    Ban the user above you!

    Banned for not being Henrik#1.
  2. Darth Maul

    Ban the user above you!

    Banned for not being deep enough.
  3. Darth Maul

    Lua Help to change traineroff stamina max

    Try editing these two functions to the ones below. (they're based off your above scripts) function OfflineTraining_setTime(cid, newTime) -- set values only between 0 - 720 [12 hours] if (isPremium(cid)) { doCreatureSetStorage(cid, 62666, math.max(0, math.min(newTime, 720))) }...
  4. Darth Maul

    Windows Explain charactersearch.php? Znote

    Something like this would probably work: (format it how you like) <?php } else { echo 'Player '; echo htmlentities(strip_tags($name, ENT_QUOTES)).' does not exist.'; ?> <h1>Character search:</h1> <div class="inner"> <form type="submit"...
  5. Darth Maul

    [Znote AAC 1.4] Show marriage/flags on characterprofile.php

    After looking at your code, this should work for both. <!-- Player country data --> <?php if ($config['country_flags']) { ?> <li><font class="profile_font" name="profile_font_country"><b>Country:</b> <?php echo '<img src="flags/' . $account_data['flag'] . '.png">'...
  6. Darth Maul

    Alterting Znotes Forum?

    Hey, Znote's pre- built forum is a little lackluster, I've had a look around and couldn't find any other variations though. :( Has anyone seen any compatible pre-build forums around? As a point of reference, Znote's forum file can be found here: http://pastebin.com/PNe81BeN
  7. Darth Maul

    [Znote AAC 1.4] Show marriage/flags on characterprofile.php

    Add this to the www/characterprofile.php page, where ever you want. It'll create a new table with the players flag if they have one. If they don't have one it wont display anything. If you dont have the flag images, you'll need to get those: https://github.com/Znote/ZnoteAAC <!-- Player country...
  8. Darth Maul

    Solved Mystery Box doesn't dissapear

    doRemoveItem(item.uid)
Back
Top