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

    stairs code

    hey im using tfs 1.2 running 10.98 i was wondering how could i make these item in rme work like stairs they dont function properly in game was wondering how i could fix this issue
  2. tnecniiv

    Spell that creates an item with action id

    function onCastSpell(cid, var) doPlayerAddItem(cid, 2579, 1, 1,1) doSetItemActionId(2579, 1000) end i need script that creates an item with an action ID i create the item but it doesnt come with an action ID im trying to create an item that has different spells which will be used for...
  3. tnecniiv

    Npc promotion system 1.2

    hello guys i need help with an npc that will check for level 50 and offer a promotion but the promotion branches out to two different types of vocations the promotion will cost 30,000 so for instance let say i have a knight that is level 50 he could have a choice to go to a defender or the...
  4. tnecniiv

    weapon type

    i updated all my .cpp files and const.h file to include fist as a weapon type. but now it doesnt add the attack of the weapon it will only go based on fist fighting skill the damage out put is the same as the damage output as having no weapon equipped. the weapon does how ever register as fist...
  5. tnecniiv

    Lua Banker npc cant transfer

    i cant transfer to another player with this bank script can anybody help me out tfs 1.2 local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local Topic, count, transfer = {}, {}, {} function onCreatureAppear(cid)...
  6. tnecniiv

    Compiling error

    so I followed all the instructions on how to compile your OT on tfs 1.0 and 1.1 when I finished compiling the server I got this error 1>------ Rebuild All started: Project: theforgottenserver, Configuration: Release x64 ------...
  7. tnecniiv

    how to start 1.1

    i just upgraded from tfs 0.2.14 to forgotten 1.1 and i wanted to know how could i even run the server as local host and is there any tutorials on here on how to start. i use znotes uniserver for my 0.2.14 and was wondering how i could implement that into as well.
  8. tnecniiv

    weapon types

    what is the list of weapon types in tfs 0.2.14 9.60
  9. tnecniiv

    monster causes a bleed effect

    hello all i was wondering if it is possible to have a monster cause a bleed effect im running 0.2.14 and making 9.6 note i do not want to substitute poison effect because i do not want them to just exana pox this.
  10. tnecniiv

    Give extra health to a character

    Hello guys i am working on a 9.60 server using tfs 0.2.14. i was wondering if it is possible to have a druid use a spell to give 10% hp of the characters health and or mana. if it isnt possible in my server ill understand. thank you for your time.
  11. tnecniiv

    rme 3.2 troubles

    so im in the process of updating my servers map from rme 9.60 to rme 10.91 i downloaded rme 3.2 and set the paths to 10.91 imported my map perfectly fine, saved it as a whole new map. but when i go to work on my i get this error below what does it mean and why this error? what does this mean...
  12. tnecniiv

    Lua beginner is havinng trouble

    why is my client debugging after i pull a certain lever function onUse(cid, item, fromPos, item2, toPos) if item.itemid == 9827 then doPlayerSendTextMessage(cid, 21, "It worked!") doTransformItem(item.uid, 9828) elseif item.itemid == 9828 then doPlayerSendTextMessage(cid, 21, "You pulled...
  13. tnecniiv

    just starting scripting

    hey so i am just diving into the scripting world. but how do i add scripts to my server i have this lever command that i found on otland buuuuuuut they dont explain how to add it in the game could i get some info please and thank you the point on this command is to remove a wall (i preferred a...
  14. tnecniiv

    [MAP] help change auto border

    how can i change the auto border from this to this
  15. tnecniiv

    updte my server

    how do i update my 9.60 tfs o.2.14 to the 10.31 1.0 tfs server im also using znotes website is it possible to fully update all?
  16. tnecniiv

    taming mounts

    i have the mounts.xml i was wondering if it was possible to make it to tame the mounts i search for this for days i dont understand how to add it. this is what i got for mounts.xml <mounts> <mount id="1" clientid="368" name="Widow Queen" speed="10" premium="yes" /> <mount id="2"...
  17. tnecniiv

    Solved [SPELL] Swap

    local combat = createCombatObject() local config = { notAllowed = {"training monk", "Slaktaren", "Admin"}, exhaustStorage = 1338, exhaustTime = 5, -- Seconds slowStorage = 1339, slowTime = 3, -- Seconds slowSpeed = 100, -- Speed will be set to 100 when swaping for slowTime seconds. } function...
  18. tnecniiv

    Solved cant load items

    i cant load items.xml why not o_O solved nvm i forgot an attribute
  19. tnecniiv

    spell need help

    i was wondering if it is possible to make a spell for knight to slow the target down 50% of the players speed so knights have some kill potential in the game i am using tfs 0.2.14
  20. tnecniiv

    mountseller

    hey guysi have this mountseller npc in my folder but i never implemented it when i do i get this error [29/01/2014 21:25:28] [Warning - NpcScript::NpcScript] Can not load script: data/npc/scripts/mountseller.lua [29/01/2014 21:25:28] data/npc/scripts/mountseller.lua:14: '}' expected (to close...
Back
Top