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

    Rising Continent - Development

    Yeah, its in a PRE-BETA stage, so just login and play :D
  2. Klank

    Lua Attempt to index a number value

    Instead of sending player:getId() in the addEvent, try send player.uid. addEvent(clearBossRoom, 60 * tmpConfig.time * 1000, player.uid, tmpConfig.centerPosition, tmpConfig.rangeX, tmpConfig.rangeY, tmpConfig.exitPosition)
  3. Klank

    help force tfs 1.4.2

    Depending on how u add the timer, you could add the initial description using item:setAttribute(key, value) and in Onlook script you could use if item:hasAttribute(key) then ..-get timer value - update timer value Or something..?
  4. Klank

    help force tfs 1.4.2

    Can’t you use onlook? Whenever a player looks at the item you update the remaining time?
  5. Klank

    TFS 1.X+ TFS 1.2 Add timer on spell

    First of all, your countdown function. You should pass the counter as an argument back. How else will it know how much time is left? Don't change the timer i posted. Also, your trying to create an area spell with target. that means the player has to be in the direction of the monster to hit...
  6. Klank

    TFS 1.X+ TFS 1.2 Add timer on spell

    Probably several ways of doing it, i have not done custom spells for monsters yet, but you can create a monster script that kills all people on a given situation. I think this should do(not tested): function onCreatureAppear(cid) local think = createConditionObject(CONDITION_ATTRIBUTES)...
  7. Klank

    TFS 1.X+ TFS 1.2 Add timer on spell

    That requires you to make it in lua.
  8. Klank

    [TFS 1.X] Food with conditions

    Hi, I'm sharing my extended food code, which can make food more useful than just eating for default reg.time. The code are configured with: Instant health Instant mana Instant soul Additional mana regeneration Additional health regeneration speed boost How to use? Add the item id of the...
  9. Klank

    Why the private server is dying and otland is dying with them?

    Not dead, there are multiple projects going on. Project threads on otland might not be as active as before, as many project use discord server to show updates, including my own.. Otland has been one of the top contributers when it comes to me learning to code. I’ve been a member here for years...
  10. Klank

    Server Warning - Spawn::addMonster

    Perhaps you added the monster to RME when it was wrong. Remove or re-add it in your RME-
  11. Klank

    Server Warning - Spawn::addMonster

    Monster name should be the name of the creature, not file name. Can you conform that it is?
  12. Klank

    Action Advanced quest chests 1.x

    just create an array with ur items local soulWarItem = {item1, item2.....,item10} local randomItem = math.random(1,#soulWarItem) [1] = {type = "item", item = randomItem, count = 1},
  13. Klank

    Lua HealthGain and ManaGain

    Edit: i withdraw
  14. Klank

    Lua HealthGain and ManaGain

    First you need to show us the code where it handles the conditions.
  15. Klank

    Althea ¤ A New World ¤ Mapping Thread ( Scripting atm, low activity on mapping part )

    Sorry, not a good one, the city is build upon hills, so you will not see it in "the bigger picture". ;p
  16. Klank

    Andreew's showoff

    Looks amazing!
  17. Klank

    Althea ¤ A New World ¤ Mapping Thread ( Scripting atm, low activity on mapping part )

    Working on a jungle continent with a old but rich city, starting to be consumed by the jungle. [1] [2] [3] - Harbour [4] [5]
  18. Klank

    Althea ¤ A New World ¤ Mapping Thread ( Scripting atm, low activity on mapping part )

    Yeah, it’s sad! It’s been a while since i mapped, so a bit rusty.. The project has been highly active the last 8 months, having already had an closed alpha, i am now working towards a open alpha as we speak. If anyone wants to follow, join Althea discord! https://discord.gg/gNgRGNNX
  19. Klank

    [TFS 1.5] Simple Aura System

    Nice Sarah, i tried to add multiple effects ( 4x in total) surrounding the target by using addEvent(simpleAura.init(player),......) However, i know this is not correct, as im not able to stop an event triggering another event that are looping. I failed on removing the 4 effects surrounding the...
Back
Top