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

    Lua Spell buff animation

    I got the following working code for a spell that buffs critical skills. My (luxury) problem is that the animation to show that the buff is active on the person, is in my eyes not the greatest. Though I can't think of another way. Is there a better way to show that the character is buffed...
  2. Raikou

    Get skill within a Spell

    Hello all, I got a very basic problem/annoyance. Within a spell I want to get the players skill lvl. I tried several variations of something like below but i keep getting nill/nothing. function onCastSpell(creature, var, player) -- seems i cant get player here? local skill =...
  3. Raikou

    TFS 1.X+ onKill script get's triggered more than once

    Hello all, I got a problem with getting the onKill event triggered more than once. Several checks have been done and my conclusion is that the script gets triggered several times. The script is called within the creaturescript: <event type="kill" name="Bosskill" script="Bosskill.lua"/>...
  4. Raikou

    Making a fallen tree walkable

    Hello all i found myself stuck on something(probably) very simple. How can i walk on this, or make it walkable without destroying the looks of the borders/water.
  5. Raikou

    [NL] [10.98] Dolport Challenges

    Dolport Challenges Dolport Challenges is a small server where the whole map is custom made. The standard 10.98 client is usable, but the best performance will be with Dolport's own client. Dolport Challenges is meant to be, for people seeking new places that are yet to be explored. The...
  6. Raikou

    TFS 1.X+ Dynamic trade window

    I'm trying to make a dynamic trade window, sadly i can't get the window to pop up yet. The code looks as following: local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) function onCreatureAppear(cid)...
  7. Raikou

    TFS 1.X+ Set uniqueid to created item

    I have a quest that consists in destroying an item/object. After it's destroyed I want to let it respawn with uniqueid, but i cant get it to work. function createEgg(position) print('Egg has respawned') Game.createItem(14820, 1, position) local egg =...
  8. Raikou

    TFS 1.X+ Use item with uid x set storage id x

    I'm trying to do something simple, so at least i think. But can't get it to work. I have an item(book) with uid 6600, as soon as a player reads(use) it player.storage 6600 needs to be set. I thought I could do this with actionid 15000 (the standard reward box thing) but then I can't use the...
  9. Raikou

    TFS 1.X+ Teleport player out of area after x amount of time

    So i`m trying to make a boss room, the tp into the room works. But the tp after x amount of time doesn't work. since i`m using 1.3 and i think the code i got from here is 0.4? or something. local config = { room = {x = 896, y = 1048, z = 8}, kick = {x = 890, y = 1049, z = 8} } local...
  10. Raikou

    Rope spots for certain grounds

    Hello fellow tibian people, I've been doing some mapping lately and I've noticed something. There are not much rope spots? Or atleast I cant find them. I wanted to make a swampish cave and I settled with a few good grounds but there is just no rope spot? Anyone knows if they exists and where to...
  11. Raikou

    Hole id 7932 not working

    So i`m trying to make use of this hole, but it doesnt want to open (use shovel and transform to 7933). These are my server settings: Items: <item id="7932" article="a" name="large hole"/> <item id="7933" article="a" name="large hole"> <attribute key="floorchange" value="down" />...
Back
Top