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

    Lower Roshamuul Quest

    Lower Roshamuul: The Giant Traverse tested in TFS 1.2 10.95 In order to repair the bridge and advance further, the following tasks must be done. Completing a task also awards some Inquisition Gold. Rewards can be managed with Sandomo by the use of the keyword gratitude, and then repairs. Add...
  2. hodleo

    [TFS 1.2] Rune Match event

    Rune Match! by cbrm written with Sublime Text 3 on TFS 1.2, 10.95 powered by 1337 technology 2~4 multiplayer event not recommended for players with poor memory based on the traditional Concentration game Goal: Player must compete with other ones by searching pairs of runes in the board...
  3. hodleo

    Spike Tasks Quest

    Spike Tasks Quest Help the Gnomes to fight their enemies around The Spike! Originally scripted on TFS 1.2, 10.77. Also tested on 10.95 http://tibia.wikia.com/wiki/Spike_Tasks_Quest/Spoiler Initial Setup You need to have common sense, patience and at least an average ot knowledge to install...
  4. hodleo

    Feature Reward Chest & Boss Reward [TFS 1.2]

    Tested on TFS 1.2, 10.77/78 Based on http://www.tibia.com/news/?subtopic=newsarchive&id=2486 Features To-Do Changelog Comments Special thanks to Setup instructions Execute query at database CREATE TABLE IF NOT EXISTS `player_rewardchest` ( `id` int(11) NOT NULL AUTO_INCREMENT...
  5. hodleo

    Fix/Patch Exiva long names on TFS 1.x

    According to Tibia, the limit of characters in the player's name is 29. If you try to cast exiva on names longer than 20 characters in TFS 1.x it simply doesn't work or tells you player isn't online. This quick workaround fixed it and it might be useful for those who allow players to have long...
  6. hodleo

    TalkAction [TFS 1.0] Temporial waypoints

    The old, useful and simple waypoint command from tfs 0.3, which saves positions for GMs that get erased on server restart. <talkaction words="/wp" separator=" " script="waypoints.lua" /> if getGlobalStorageValue('waypoints') == -1 then setGlobalStorageValue('waypoints', {}) end function...
  7. hodleo

    TalkAction [TFS 1.0] Local highscores

    I made this talkaction since I didn't see any ingame highscore scripts for tfs 1.0 yet. It loads the top 30 ranked players on experience, magic and skill levels into global storages when server starts up and it gets updated each 3 hours by default. This script takes advantage of the new global...
  8. hodleo

    [TFS 1.0] Custom Experience Rate

    If you add @Evil Hero's player events, then you can manipulate the exp gained or lost by a player. Here I show you how to add experience bonus rate for players. /events/scripts/player.lua Normally you just have these lines when you end adding the new events: function...
  9. hodleo

    [1.0] Problem with new Creature Class interface

    is it my outdated compiled sources or don't the new metatables of compat.lua fully work yet? Lua Script Error: [Action Interface] data/actions/scripts/other/potions.lua:onUse data/compat.lua:91: attempt to index a number value stack traceback: [C]: in function '__index'...
  10. hodleo

    [TFS 1.0 / 1.2] LUA Functions

    all tfs 1.0 lua functions sorted alphabetically, excluding metamethods addDamageCondition(condition, rounds, time, value) addEvent(callback, delay, ...) addOutfitCondition(condition, lookTypeEx, lookType, lookHead, lookBody, lookLegs, lookFeet) broadcastMessage(message, type)...
  11. hodleo

    MoveEvent Flying Platform

    If you want the platform always moving use http://otland.net/f82/flying-platform-190928/ You step on a flying tile that makes you travel thru a path you draw on map editor, platform stops on destination arrival Any item thrown on path or platform is erased Config Draw the travel path with...
  12. hodleo

    GlobalEvent Flying Platform

    If you want the platform to move when players step in use http://otland.net/f81/flying-platform-191207 Click on image to play animation You step on a flying tile that makes you travel thru a path you draw on map editor. Any item thrown on path or platform is erased Config Draw the travel...
  13. hodleo

    [Znote AAC] Advanced Spells v2

    This script loads spells.xml when requested by the user at admin panel, and creates a PHP file saving all spells in arrays. It has sort options exactly like Tibia's page. It works with both 0.2 and 0.3 distributions. Preview: Setup: engine/function/general.php Before ?> Add function...
  14. hodleo

    [Znote AAC] Account VIP list (TFS 0.3)

    Preview: Edit /layout/widgets/loggedin.php Below: <li> <a href='myaccount.php'>My Account</a> </li> Add: <li> <a href='friends.php'>My Friends</a> </li> friends.php <?php # TFS 0.3 VIP...
  15. hodleo

    [Znote AAC] Online players records

    Only for TFS 0.3, unless you add the record tables to your 0.2 db and edit your record globalevent like 0.3 Preview: record.php <?php # Online Players Records for ZnoteAAC # By cbrm @ otland.net require_once 'engine/init.php'; include 'layout/overall/header.php'; echo'<h1>Online...
  16. hodleo

    [Znote AAC] Staff support list

    Preview: support.php If you use a TFS 0.2 distribution, use: <?php # TFS 0.2 Support List for ZnoteAAC # By cbrm @ otland.net # Credits to: AchTung, Zonet require_once 'engine/init.php'; include 'layout/overall/header.php'; $groups = array(2 => 'Gamemaster', 3 => 'God')...
  17. hodleo

    [LUA] get Day of next week

    tfs 0.3.5 / 0.3.6 I need a globalevent that doesn't repeat twice per week, therefore I'd need a function that returns day of the next week as monthday number I've googled this a bit but it appears in python, msexcel, etc function getYearDay(dd, mm, yy) return os.date('*t',os.time{year =...
Back
Top