• 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!

Search results

  1. J

    Client versions 10.99 older than 10.00?

    Im looking all over and I see 10.0 was released in 2013 and 10.99 was in 2016 but other places have 10.00 listed as newer than 10.99. Tibia webpage has 10.00 as the legacy download? Which is newer? Why? is there any documentation on this?
  2. J

    TFS1.x Autolooting items to depot, doesn't save them

    I'm using a script based off AutoLoot System for tfs 1.x to autoloot items to a depot box. The problem I'm running into is, if the player doesn't open the depot box before the logout, the items don't save. EX: hunt 3 hours. have 1234 items in inbox. Logout. Login. 0 items in inbox, even if the...
  3. J

    [Gesior AAC] Updated Experience Table to show upto lvl 500.

    Don't know if this has been posted before, but its quite a simple fix. This just makes your experience table go to level 500 instead of stopping at 400, like the real tibia one does. experiencetable.php <?PHP if($action == "") { $main_content .= ' This is a list of the experience points...
  4. J

    [Gesior AAC] Transparent Default Images for Equipment Shower

    Hello. I noticed in some screenshots of peoples custom layouts, some players don't have items equipped in some slots. The default item images will show this as an ugly brown color. I made the default slot images have a transparent background so they will now have the same background color of...
  5. J

    [Geisor AAC] Customized characters.php, screenshot!

    Here's a screenshot of my customized characters.php screen. Code below screenshot. To get yours to look like this, you must do the following: In MySQL execute the following: DROP TABLE IF EXISTS `player_advances`; CREATE TABLE `player_advances` ( `id` int(11) NOT NULL...
  6. J

    [Gesior AAC] exphist.php & onlinetime.php fix the level & vocation showing

    If you are using Gesior's powergamer & online time scripts, and its not showing the players level and/or vocation (its supposed too), this small post tells you how to fix it. I'm using http://otland.net/f118/gesior-aac-0-3-4-beta4-fixed-v5-33645/ so I'm not sure if it shows on gesior's default...
  7. J

    [Gesior AAC] Characters page only show marriage if married (and enabled in config)

    This tells you how to make your characters page only show marriage info if the character is married. No more "Single"! You also must have marriage info enabled in config.php. Open characters.php and find: (Roughly lines 43 -> 53) if($config['site']['show_marriage_info']) {...
  8. J

    [Gesior AAC] Fixed "Position" showing in characters.php

    Probably not the best way or most optimized way to fix it, but it works. Open characters.php and find: (Roughly lines 31 -> 38) /* $group = $player->getGroup(); if($group->getId() != 1) { if(is_int($number_of_rows / 2)) { $bgcolor = $config['site']['darkborder']; } else...
  9. J

    Exphist.php (Powergamers) with some mods. Smaller text, condensed #'s

    Based off http://otland.net/f118/gesior-acc-maker-forgotten-server-0-3-powergamers-online-time-stats-8640/ I modified this exphist.php to my liking and I'm sure someone else will enjoy it as well. It uses smaller text on the numbers and uses correct number formatting based on php's built in...
  10. J

    Shopsystem.php with items linked to /images/items, tables use $config['site'] colors.

    Based off http://otland.net/f118/gesior-aac-0-3-4-beta4-fixed-v5-33645/ v5's shopsystem.php. I modified it to load the item images directy from /images/items/itemnumber.gif so you dont have to add an image to the item_images folder for everything you add to your shop, it gets them automatically...
  11. J

    Looking for a script to edit houses.xml and set rent = size*10

    As the title says, I'm looking for some kind of tool/script that can replace my rent="*" with rent=size*10. A friend told me I might be able to use notepad++ for it but I'm not sure how. Any feedback?
  12. J

    Looking for an "isSummon" function?

    I'm not really sure on how to go about this one so I'm going to make a request. I'm looking for a function where i can type like... if isSummon(target) == true then, code else code end I'm using TFS 0.3.4 PL2. I read in the LUA_FUNCTIONS list: getCreatureMaster(cid) Info...
  13. J

    Action [RELEASE] PoI - 16 levers (in order!) TFS 0.3.4pl2 [Optimized?]

    Well, I couldn't seem to find a good solid PoI script anywhere. The one I've been using had a separate folder and a file for all the 16 levers and it was messy. What I did was combine all this into one simple .lua file. This is only part one of many I'm going to try and make. I don't create many...
  14. J

    [REQUEST] onLogin, check # of polls and tell if you havent voted

    RESOLVED - Admin can change this to [Release] Credits - Me (Idea & Original Code) Credits - Beam Da Brat (Helping fix my code) This script will alert players when they login if there is any polls they haven't voted in. This is for TFS 3.4 and Nicaw AAC 3.21 SQL...
  15. J

    TalkAction !bless Buys all 5 with 1 command - RL tibia costs!

    Originally posted by Mazen Here. I fixed his 2 errors and added a cost system like RL tibia (based on level) Create a new file in data\talkactions\scripts\ called bless.lua function onSay(cid, words, param) local fail = 0 if getPlayerLevel(cid) < 31 then cost = 2000 else cost =...
Back
Top