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

    TalkAction !commands for TFS 1.1

    So I'm just posting this because I couldn't find it in Otland (probably just my bad research skills and because it's so basic). I found it here: http://www.tibiaking.com/forum/topic/52973-commands-para-tfs-11/ For those who don't want to register on another website just to read some code: This...
  2. S

    Firewalker boot npc

    I made this for a friend. If you like it, just tell me. If not... well, go away. :) firebootmaker.lua local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState = {} function onCreatureAppear(cid)...
  3. S

    Solved Debug when type my account and password and press enter.

    I can log in to the account manager without problems, the map isn't the problem(I have my characters position the same as the account managers). It's just when I type my account and password, then press enter it debugs. I'm using cryingdamson 0.3.6 (8.60) V6. This is what I get: -- The...
  4. S

    Lua Event onSay not found.

    local notallowed = {100-385}-- Items not allowed to destroy function onUse(cid, item, frompos, item2, topos) local destroyitem if getPlayerAccess(cid) > 4 then for i = 1, 255 do destroyitem = getThingfromPos({x=topos.x, y=topos.y, z=topos.z, stackpos=i}) if...
  5. S

    Lua Need help with script error.

    This is a deletion rune script for an 8.0 server I'm working on. (Armonia) I'm not a good scripter at all so.... function onUse(cid, item, frompos, item2, topos) local destroy = {x=topos.x, y=topos.y, z=topos.z, stackpos=255} local destroyitem = getThingfromPos(destroy)...
Back
Top