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

    Looking for low rate server

    Hi kostek, I am the admin/owner of Years of Decay. We are a low rate server (5x exp, 5x skills, 3x ml, 1x loot) with a custom map, intricately scripted quests, daily quests, tasks, and lots of other fun stuff. I'd be honoured if you'd check us out. Don't forget, to pass New Haven (levels...
  2. Yodot

    Mysql help

    Hi Bug, A php routine to rename all players so that it capitalised the first letter of each word in their name while making the rest of the word lower case would be: php code to do that would be (you have to use your own mysql db connection routine): <?PHP $query = "SELECT * FROM...
  3. Yodot

    Server Crashes when i switch to mysql, "original is sqlite",

    Have you populated the mysql fields in the config.lua? Do you have a mysql database for the server to connect to? Have you imported the mysql schema into the mysql db? There could be 100's of reasons why you are having errors. Simply changing db type from sqlite to mysql is one reason.
  4. Yodot

    [Australia] Yodot 9.2 5x Exp

    Hi FeC, The Linux client has been tested and is ready for download at http://yod.austerror.com/downloads.php. Thank you very much for your interest in Years of Decay. Cheers.
  5. Yodot

    [Australia] Yodot 9.2 5x Exp

    Hi guys, Just a few updates: Years of Decay now has it's own Wiki to help players with the differences between YoD and Tibia. Auctioneer Ybay has started working at the Thane depot and will happily help you auction your items to other players. The Thanian council has decreed that all housing is...
  6. Yodot

    [Australia] Yodot 9.2 5x Exp

    Hi all, Just letting you know that YoD is back and now being hosted on a professional dedicated server. All account management (including new accounts) must be performed via the website (Years of Decay). A dedicated client is also available for download on the site (still). The...
  7. Yodot

    help can you get this script to not be able to move even after relog

    In your script above set a player storage value, then in creaturescripts/login.lua include a if player storage value = (whatever storage value you used) then doCreatureSetNoMove(cid, 1) Cheers.
  8. Yodot

    [Australia] Yodot 9.2 5x Exp

    Hi All, Yodot now features an Antibot system. Players will be asked at random intervals (between 1 - 2 hours) to enter a code. If they fail to enter the code within the time given then they are sent to 'jail' for 1 hour, after which time they are free to hearth out using their own hearthstone...
  9. Yodot

    [Australia] Yodot 9.2 5x Exp

    Thanks to everyone who partook in the Christmas/New Years celebrations on the server. The christmas tree and decorations have been removed. If you did not get your present from under the christmas tree then better luck next year. Be sure to join in the Easter celebrations this year as scripting...
  10. Yodot

    NeoBot comes to an end!

    Until the next undetectable bot comes out... Cipbia is dead. Too many have gained levels and skills through neobot for there to be any point to play there again.
  11. Yodot

    Lua If you kill monster > doSummonCreature.

    With your thrid script, make sure you match the case of the monster (Snake God Essence, not snake god essence for example). Cheers.
  12. Yodot

    teleport that get you to the city you are citizen

    Sure thing, Example 1: Player steps on a magic forcefield (portal) that takes him/her to home city. In your map, place item 9773 (same graphic as magic forcefield) and assign it an action ID not in use by your server. For this example I'll use AID 1234. In movements.xml place the following...
  13. Yodot

    teleport that get you to the city you are citizen

    doTeleportThing(cid,getPlayerMasterPos(cid)) Let me know if you would like an example of how/where to add this (just let me know if the teleport should be a portal, switch or something else). Cheers.
  14. Yodot

    Open ports

    Can I ask if you have restarted the router after setting up the port forward?
  15. Yodot

    Lua Potioins help custom vocs

    Try data\global.lua (changes in red) function isSorcerer(cid) if(isPlayer(cid) == FALSE) then debugPrint("isSorcerer: Player not found.") return false end return (isInArray({1,5,9}, getPlayerVocation(cid)) == TRUE) end function...
  16. Yodot

    Rate ma Jokes

    3/10 Cheers.
  17. Yodot

    [Australia] Yodot 9.2 5x Exp

    Yodot is still going strong. Great content, ever expanding map, new quests (with dailies) and many unique features. Here's the world map (slightly outdated as there are new areas and Thane has become more compact). Note: It takes approx 40 minutes to level from 1 to 8 (to get out of New...
  18. Yodot

    Problem with Ports

    Sorry I haven't got back to you sooner. Seems you're doing everything right there. One other thing I can suggest is that your ISP may be blokcing ports 7171 and 7172. It would be worth contacting them or visiting their site and try and determine if they do block ports. Most ISP's will unblock...
  19. Yodot

    Lua Potioins help custom vocs

    What OT are you using? When I added new vocations to my OT I had to change many files, I'll try and include them all here. data\lib\031-vocations.lua (changes in red): function isSorcerer(cid) return isInArray({1, 5, 9}, getPlayerVocation(cid)) end function isDruid(cid) return...
  20. Yodot

    Windows Stats to items doesnt work on some items ;s

    You need to add them to movements.xml Try adding this to movements\movements.xml <movevent type="Equip" itemid="6433" slot="shield" event="function" value="onEquipItem"/> <movevent type="DeEquip" itemid="6433" slot="shield" event="function" value="onDeEquipItem"/> <movevent...
Back
Top