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

    Lua TFS 1.2 Storage value.

    so what is the issue with the script? why is it that whenever theres a second setStorage it always sets the first storage to the second value?
  2. F

    Lua TFS 1.2 Storage value.

    As far as I know string is used because otherwise it looks for a variable, unless something has changed between 0.4 and 1.2
  3. F

    Lua TFS 1.2 Storage value.

    Why does this: elseif msgcontains(msg, 'look') and quest == 2 and talk_state == 3 or msgcontains(msg, 'yes') and quest == 2 and talk_state == 3 then selfSay("Please, go quickly. This town has lost enough warriors from the evil surrounding it.", cid)...
  4. F

    The ArchLight Project

    The idea of this sounds great, but you came back to working on open tibia servers 1 month ago after not being active in this community for almost 2 years. Something suspicious going on here.
  5. F

    Change player colors in-game

    doCreatureChangeOutfit(cid, outfit)
  6. F

    Lua Slot type

    Using 0.4, is there any functions that will allow you to get the weapons slottype like one-handed or two-handed?
  7. F

    Solved Reward XP percentage?

    function onUse(cid, item, fromPosition, itemEx, toPosition) doPlayerAddExperience(cid, getExperienceForLevel(getPlayerLevel(cid) + 1) * .23) doCreatureSay(cid, "You have recieved ".. (getExperienceForLevel(getPlayerLevel(cid) + 1) * .23) .." Experience points!", 19) return true end
  8. F

    Hostile Summon?

    Make a new spell file, and then in spells.xml add a new spell.
  9. F

    Hostile Summon?

    function onCastSpell(cid, var) doCreateMonster("Fire Elemental", getCreaturePosition(cid) return true end
  10. F

    Lever that gives you items depending on your vocation and only if you have an item

    How's this Look? local config = { [1] = { items = {{2175, 1}, {2190, 1}, {8819, 1}, {8820, 1}, {2468, 1}, {2643, 1}, {2661, 1}}, }, [2] = { items = {{2175, 1}, {2182, 1}, {8819, 1}, {8820, 1}, {2468, 1}, {2643, 1}, {2661, 1}}, }, [3] = { items = {{2525, 1}, {2389, 5}, {2660, 1}, {8923, 1}...
  11. F

    Lever that gives you items depending on your vocation and only if you have an item

    Since you said you wanted to edit it, I organized it nicely for you. Let me know if you have any issues, made this while at work. local function setOne(cid) local items = {1234, 1234, 1234, 1234, 1234} if getPlayerVocation(cid) == x then for i = 1, #items do...
  12. F

    Solved block damge

    What tfs version?
  13. F

    Tuvaria 8.6 - creation of a realmap in my perspectiv!

    That doesn't make the text anymore complicated to read, so basically what you're saying is the thread doesn't look good.
  14. F

    Tuvaria 8.6 - creation of a realmap in my perspectiv!

    Easy to read? It's in simple black and white. How much easier does it get?
  15. F

    Dead Body Problem

    It's because you made it a pvp zone, remove the pvp tiles.
  16. F

    Stamina Doll :>

    No it's not lol.
  17. F

    Lua StepIn animation (55) on x y z (only one)

    replace the . with ,
  18. F

    Stamina Doll :>

    Lol your stamina went back after being added. Okay guy.
  19. F

    Stamina Doll :>

    Also you originally used local cfg = {}, the way you had that setup had no use, you must insert a value in that table like Breed did, unless you are assigning one to that table later in the script.
  20. F

    Spell ring?

    Using doCreatureSay will not make a player cast spell just Fyi, also for idle time just use doPlayerResetIdleTime(cid)
Back
Top