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

    [8.6] Cyclopses (640kb!)

    Really nice, i'll use it :D
  2. OTx

    addContainerItems(container, items)

    I looks nice, but this have been released somewhere else before, I think. Btw, the last example (2), it's the same as "doPlayerAddItem" hah xd
  3. OTx

    TalkAction Multiple outfit save slots.

    If you change gender and use the command. It will give the man/woman outfit, lolz
  4. OTx

    item sid

    woot? sid? or cid? Even if it's cid, it's not makin' sense
  5. OTx

    Windows Mapa się nie ładuję.

    Wot? Please stop use google translate...
  6. OTx

    TFS Optimizing Tables

    OptimizeDatabaseblablablah... = false In config.lua. I am not sure with the name but just search 'optimize' and it will popup. If it don't, it is not compiled with your rev.
  7. OTx

    Lua Simple string.gsub question

    Oh... post the script here and i'll fix it asap..
  8. OTx

    Lua Simple string.gsub question

    you don't need string.gsub. send the script here
  9. OTx

    [NPC] Blacksmith

    Do it yourself. Read this: [ LUA FUNCTIONS Project Name The Forgotten Server Version 0.3.6 Codenamed Crying Damson License GNU GPLv3 Forum http://otland.net/ ] [ ABOUT List with all available Lua functions. You can read a short instruction for all of them; how to use...
  10. OTx

    So i am working on a casino script and i need some help with the dice and npc

    This npc is done with 2 dices. Read the script and make it to 1 if you want. I made it with 2, it's too easy to win otherwise. local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState = {} function...
  11. OTx

    !hp/mp, !level commands

    With popup: function onSay(cid, words, param) local info = { [1] = {"Current Mana: ", getCreatureMana(cid)}, [2] = {"Current Health: ", getCreatureHealth(cid)}, [3] = {"Level: ", getPlayerLevel(cid)} } local str = "" for i = 1,#info do str = str .."".. info[i][1] .."".. info[i][2]...
  12. OTx

    Need !Info Me Script ----> Look V

    function onSay(cid, words, param) local info = { [1] = {"Max Mana: ", getCreatureMaxMana(cid)}, [2] = {"Current Mana: ", getCreatureMana(cid)}, [3] = {"Max Health: ", getCreatureMaxHealth(cid)}, [4] = {"Current Health: ", getCreatureHealth(cid)}, [5] = {"Level: "...
  13. OTx

    !hp/mp, !level commands

    Lol, Loney. Your script is copied right away and doesn't return anything to the player. Lolz xd
  14. OTx

    Need !Info Me Script ----> Look V

    Left corner where the replay button is. The icon is like a sheriff star.
  15. OTx

    Need !Info Me Script ----> Look V

    Rep?
  16. OTx

    LUA Problem

    The script look nice for first lua script but you just missed a bracket and remove a comma: function onStepIn(cid, item, position, lastPosition, fromPosition, toPosition, actor) config = { storage = 34344 } if(getPlayerStorageValue(cid, config.storage) > 0) then doCreatureSay(cid...
Back
Top