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

    Lua Movement script error - StepIn StepOut

    local tile = 426 -- tile id local wall = 1049 -- id of wall to remove local pos = {x=988, y=805, z=14} -- position of wall to remove local wallFromPos = getThingfromPos(pos) -- get item uid function onStepIn(cid, item, position, fromPosition, itemEx, toPosition) if isPlayer(cid) then...
  2. L

    Lua [SLOVED] NPC Wands and Rods problem

    Hello! I have some problem with my Wand and Rods NPC - i can't buy wands and rods: NPC code: local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState = {} function onCreatureAppear(cid)...
  3. L

    NPC Promoter if player storage = XXXXX

    Hello, I need help with Promoter NPC. local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function onCreatureDisappear(cid)...
  4. L

    Problem with "Loading script systems" - crash

    hello! I have problem with my movement script. When I starting server I get error message "Don't send"(after "Loading script systems...") I using TFS 0.2 Mystic Spirit My script: in movements.xml: <movevent event="StepIn" actionid="61016" script="darkportal1.lua"/> <movevent event="StepOut"...
Back
Top