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

    help with story npc

    if player:getStorageValue(Storage.Quest.Cipfriedtible.QuestLine) Do you have set storages in lib\miscellaneous\051-storages.lua?
  2. Kouki

    tfs 7.6

    @platano So add a github, I gave a reference to the Nekiro topic because michalmaz18 was looking for tfs 7.6 :)
  3. Kouki

    TFS 1.X+ 10.98 issue regarding loading npc

    What's the server version? Tfs 1.2? Otx? Try this: teleport.lua local upFloorIds = {1386, 3678, 5543} function onUse(player, item, fromPosition, target, toPosition, isHotkey) if isInArray(upFloorIds, item.itemid) then fromPosition:moveUpstairs() else fromPosition.z =...
  4. Kouki

    TFS 1.X+ 10.98 issue regarding loading npc

    Any errors when you try use doors/ladders or killing monsters?
  5. Kouki

    TFS 1.X+ 10.98 issue regarding loading npc

    if you don't have it in 051-storages.lua Add on top: Storage = { Postman = { Rank = 60976, }, I don't know what storage it should be :/
  6. Kouki

    tfs 7.6

    @Nekiro add this: https://otland.net/threads/7-60-7-72-latest-forgottenserver-1-3-clean-downport.268508/
  7. Kouki

    Mana Rune with no Charges

    Not better to add to actions item like manarune? You tag Topic as 7.6 then: manarune.lua function onUse(cid, item, frompos, item2, topos) if item.itemid == 2281 and item.type > 1 then doPlayerAddMana(cid,800) doChangeTypeItem(item.uid,item.type-1) doSendMagicEffect(topos,12)...
  8. Kouki

    TFS 1.X+ 10.98 issue regarding loading npc

    Do you have set storage in 051-storages.lua? These are the default NPC settings in RME.
  9. Kouki

    TFS 1.X+ 10.98 issue regarding loading npc

    Can you add customModules.lua?
  10. Kouki

    Mana Rune with no Charges

    Without charges or with only 1 charge? Did you try "/i 2281 100" or "/i 2281 100a"?
  11. Kouki

    Summon,Monsters

    @Okyanus data/monster/yoursummon.xml If you use tfs 1.2 and use normal monster as summon just use this spell: https://otland.net/threads/setmaster-tfs-1-2-solved.236017/
  12. Kouki

    [TFS 1.3] Postman quest, crowbar on mailbox not working

    Hm, if I'm not mistaken, unid = 2155 isn't in these files. Do you have your crowbar ID somewhere in the action.xml file? @Edit Maybe this topic help you: https://otland.net/threads/use-item-on-set-storage-tfs-1-1.238793/
  13. Kouki

    Tutorial on how to create new weapons, armors and shields.

    Hm let's start: Item Editor: Load your items.otb -> Create Item Next Step: Change ClientID, you can find it in ObjectBuilder, set attributes Next: And: If you have it, save your files now. Creating new weapone/armor/items.. 1) items.xml <item id="26516" article="a"...
  14. Kouki

    TFS 1.X+ TFS 1.2 exp stage below 1?

    Hey, in stages.xml <config enabled="1" /> and if you want multiple exp: <stage minlevel="1" maxlevel="8" multiplier="xxxx" /> <------- xxxx (stage x7)= basic*7 ~> 100*7=700 Its work for my Tfs 1.2 ;)
  15. Kouki

    Linux Problem with ubuntu

    Just write in consol sudo apt install libboost-filesystem-dev but if you changed the machine and didn't compile the source on a new one, you may get libs errors. If you get some errors, just install all libs and recompile as @Pox wrote :)
  16. Kouki

    Summon,Monsters

    Change corpse=0 in .xml :) <look type="monster_looktype" corpse="0" />
  17. Kouki

    CreatureEvent [TFS 1.2] Outfit bonuses

    @Edit I have error data/creaturescripts/scripts/login.lua:39: attempt to call global 'getBonusCondition' (a nil value) stack traceback: [C]: in function 'getBonusCondition' data/creaturescripts/scripts/login.lua:39: in function <data/creaturescripts/scripts/login.lua:1> Solved...
  18. Kouki

    TFS 1.2 - Summon Spell Bug

    Hello, i try to do "Summon Emberwing Spell" I find code here: Lua - Summon floorchange (https://otland.net/threads/summon-floorchange.250838/) but when i use this spell on normal char i got client crash, on god char i can use it. Someone know why i got this? local combat = createCombatObject()...
  19. Kouki

    [NEW] World of Naruto Online 1.2

    If someone want turn on linux wono 1.2 i give u libs. Sorry i can't give screens, i dont have vps to do it. I give u edited wono 1.3 map too. Have fun with this ;) Libs: https://www95.zippyshare.com/v/ymNODHiA/file.html Map: https://www35.zippyshare.com/v/MOlhcVcA/file.html
  20. Kouki

    Feature Reward Chest & Boss Reward [TFS 1.2]

    Yes, in 2nd page you have solution for tfs 1.3 ;)
Back
Top