• 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

    Teleport Rune MAKING ME CRAZY!

    I use a teleport rune on my server, except it has a 60 minute cooldown, although I'm sure you can change it to suit your needs. function onUse(cid, item, fromPosition, itemEx, toPosition) local scrollid = 2264 -- Id of your rune. local temple = getPlayerMasterPos(cid) -- Dont touch...
  2. Yodot

    Tibia Pic Editor v3.0 by Trooper

    Also works nicely for 9.1 Thank you very much for this tool :)
  3. Yodot

    [npc] Gives action id to items

    It's a bit of a hack, but at least it's going to do what I need. Thanks for this. Cheers.
  4. Yodot

    Request: Script for Change Temple with Teleport

    Try this... Simply put a teleport with the x,y,z of the temple and set the actionID of the teleport to 100 + the town ID. So, if your town ID is 1 then set the action id of the teleport to 101. Cheers.
  5. Yodot

    [npc] Gives action id to items

    Has anyone got a fix for this or do I need to assign actionid's via an action script instead? I do know that previous versions of TFS allowed for NPC lua's to set actionid's in the way stated above... local item = doPlayerAddItem(cid,2090,1) doSetItemActionId(item,3940) But this method no...
  6. Yodot

    Exhaust for spells - Problem setting 'exhaustion'

    Oh ok then.. bummer. Cheers for the reply.
  7. Yodot

    Exhaust for spells - Problem setting 'exhaustion'

    Hi guys, I'm having a problem regarding the spells on my server and the exhaust rate for them. I have had the spells each set with exhaustion="1000" which seems to allow for a 1 second exhaust, but if I change the setting to exhaustion="1100" it suddenly becomes closer to 3 seconds...
  8. Yodot

    How do I remove mana from a player?

    OMG, ty so much... I must have had plenty of stupid pills before I asked that. Cheers
  9. Yodot

    How do I remove mana from a player?

    Hi guys, Again, great server ;) I'm trying to implement an enchant gems script into my server (tfs 2 patch 14) and I can't work out how to remove mana from a player. Currently doPlayerRemoveMana(cid, 300) is not working. Am I doing something wrong or is there another command I can use...
  10. Yodot

    Action Enchant weapons with enchanted gems

    Hi guys, just finished this and thought I should share it. It's simply just an action script for enchanting weapons with enchanted gems (this is not a script to enchant the gems). Tested and working with TFS 2 patch 14 first, add this to actions.xml <action itemid="7759"...
  11. Yodot

    NPC Banker

    -edited- Sry for this. I have removed the code here becuase it stopped working on my server and don't want to stuff anyone up. Cheers.
  12. Yodot

    Ctrl + V

    Phew.. I wasn't sure what was gonna be there ;p
  13. Yodot

    [request] Buying BPs of runes (TFS)

    I've got NPC's in the new distro to sell bp's of runes. You have to make a couple of simple changes. In data\global.lua Find: function doPlayerBuyItemContainer(cid, container, itemid, count, cost, charges) if doPlayerRemoveMoney(cid, cost) == TRUE then for i = 1, count do local...
  14. Yodot

    OpenTibia Replace autowalk with walkinterval on NPC .xml files

    Hey thanks heaps for this script. Yeh, I could have used notepad++ but when I have over 200 NPC files that makes my puter a bit laggy opening them all up and ctrl-h and replacing all..... Yeh, so for me this was a pwnage fix in a min. Cheers.
  15. Yodot

    The Forgotten Server v0.2 (Mystic Spirit)

    @ACrippledBadger Thank heaps. I appreciate the help. Cheers.
  16. Yodot

    The Forgotten Server v0.2 (Mystic Spirit)

    I'm having the same issue at the moment and I think it's because I'm trying to spawn my npc's with the map-spawn.xml file. It has just occured to me after looking at the forgotten-spawn.xml file there are no npc's in it. I'll edit this once I have worked it out. edit I think it best to...
  17. Yodot

    The Forgotten Server ERROR!

    I'm pretty sure that is you set the group's flag for players (id 1) to "1048576" (that's providing you don't have any flags already set) then they will have unlimited capacity. I haven't tried this as my OT is RPG but I am 99.95% sure it will work. Cheers. Edit I replied to this post with the...
  18. Yodot

    Tfs server save

    I'm pretty sure that with this release, it is still possible to start a manual save at a frequency you desire. Simply log onto your GM and type !save "15 if you want your server to save every 15 minutes. You can, of course, change the number 15 with any number you like. This number is...
  19. Yodot

    Erm spawning an NPC

    I'm not 100% sure what you're asking, but NPC's are now placed the same way as Monsters, pretty much... So in your map-spawn.xml file (\data\world\..). Example of Monster and NPC spawn. <spawn centerx="909" centery="999" centerz="7" radius="5"> <monster name="Giant Spider" x="-5" y="5"...
  20. Yodot

    How to make teleports work?

    This is a lot easier than you think. Right Click your Teleports in your Map editor and under properties you can enter the destination of the teleport in an X,Y,Z format. Cheers.
Back
Top