• 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. Zonet

    Archez AAC

    Modern AAC uses CodeIgniter and it has too much uneccesary files for an AAC. But writing your own framework would be better, you have all u need for an AAC. It's also written very messy & wrong, all functions are in controller (they should be in model).
  2. Zonet

    [PHP] Simple Content Display class

    Thank you Chris! :)
  3. Zonet

    [PHP] Simple Content Display class

    nonono! i love oop<3
  4. Zonet

    [PHP] Simple Content Display class

    Hey, here is my simple content display! <?PHP class View { public $_show = null; public function __construct( $subtopic, $_404 = 'not_found' ) { if( file_exists(...
  5. Zonet

    Every vocation receive ITEMS at level 45,

    Tested and works now :) function onAdvance(cid, skill, oldlevel, newlevel) local reward = { ["sorcerer"] = {2187}, ["druid"] = {2183}, ["paladin"] = {7367}, ["knight"] = {2430, 2392, 2436}, } local level = 45 local storage, vocation = 99821, "" if getPlayerStorageValue(cid, storage)...
  6. Zonet

    OtLand OtLand is being merged with OTFans (April fools!)

    where did this random noob come from?
  7. Zonet

    OtLand OtLand is being merged with OTFans (April fools!)

    I don't know why I can't trust :$
  8. Zonet

    [ModernAAC] Activity Stream

    You can't use and/or in php. You can make like this ($return == true ? "true" : "false");
  9. Zonet

    [ModernAAC] Activity Stream

    Bogart, try this :p <style> .activity p{line-height:16px;} .activity ul li{padding:14px 0; border-bottom:1px dotted #b39d6b; list-style: none;} .activity h4{font-size:12px;color:#000000;padding:0 0 5px; font-family:Georgia; font-weight:normal;} .activity img{padding-right: 10px;} .activity...
  10. Zonet

    [ModernAAC] Activity Stream

    Oh, that guy should absolutely put a limit on the results or make a pagination :p
  11. Zonet

    Server Alternative - WAMP

    No it isn't. WAMP Server doesn't have accelerator.
  12. Zonet

    CreatureEvent When 1hp Teleport to tempe dont die

    onKill remove return true and teleport+addhealth :)
  13. Zonet

    Firefox 4!

    No way ... Firefox is way better, especially the 4th version ;D
  14. Zonet

    Archez AAC

    or just echo $main_content; but that would still store content in variable :p
  15. Zonet

    Archez AAC

    Use the normal tibia aac layout while coding :p Here is my aac which I'm not working on anymore :p
  16. Zonet

    Lua Script problem.

    <movevent type="StepIn" actionid="10201" event="script" value="poi/MagicWallEntrance.lua"/> function onStepIn(cid, item, pos) if isPlayer(cid) then if getPlayerItemCount(cid, 1970) >= 1 then doTeleportThing(cid, {x=32791, y=32327, z=10}) else doTeleportThing(cid, {x=32791, y=32332...
  17. Zonet

    Daopay Wrong PINCODE?

    Either you've put wrong DaoPay information or Make sure you put the right ip address to the dedicated server/your computer to make it able receive the info(if pin is correct) By the way, you should read the forum rules. You might not bump your thread within 24 hours.
  18. Zonet

    Every vocation receive ITEMS at level 45,

    Oh there was a problem with the if' I guess. Try again (edited post)
  19. Zonet

    Messages at a level, need help

    function onAdvance(cid, skill, oldlevel, newlevel) local config = { _level = 50, _message = "Congratulations for your new level "..config._level..". We hope to see you playing mroe on te server bla bla bla. . ", _messageType = 22, _storage = 44587 } if getPlayerStorageValue(cid...
Back
Top