• 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!

Recent content by multrayzor

  1. M

    Is it possible to run old versions on the newest TFS release?

    Got any links to a good one? or at least an ok one that i can modify, I've been looking for it for a while.
  2. M

    Is it possible to run old versions on the newest TFS release?

    If so, how? And if not, which server would you recommend to run the 7.4 version?
  3. M

    NPC Mission

    If i want to insert a delay between messages, how do i do it? looked everywhere but couldnt find. Ex: selfSay('yadda yadda yadda.', cid) (10 seconds delay) selfSay('bla bla bla.', cid)
  4. M

    Solved Problem with quest scripts

    Thank you so much, I have no idea how people of this forum could live without you!
  5. M

    Solved Problem with quest scripts

    This is the system.lua that came with the server: local specialQuests = { [2001] = 30015 --Annihilator } local questsExperience = { [30015] = 10000 } function onUse(cid, item, fromPosition, itemEx, toPosition) if(getPlayerCustomFlagValue(cid...
  6. M

    Solved Problem with quest scripts

    Still trying to get that work, no system.lua script seem to work :/
  7. M

    Solved Problem with quest scripts

    So, i was using chests unique id the same as quest rewards item id. But i realized this was too outdated and decided to change to the system.lua script that seems to be the best. I followed everything found on this post here: http://otland.net/threads/tfs-0-2-1-0-system-lua-questsystem.185583/...
  8. M

    Solved NPC problem on selling/buying

    It worked, i would take forever to figure this out on my own, thanks mate.
  9. M

    Solved NPC problem on selling/buying

    Where is that file on the server directory?
  10. M

    Solved NPC problem on selling/buying

    This also happens with some other npcs. such as the npc the buys items Soya, you cant sell anything to her, the xml and lua: <?xml version="1.0" encoding="UTF-8"?> <npc name="Soya" script="loot.lua" walkinterval="2000" floorchange="0"> <health now="150" max="150"/> <look type="139"...
  11. M

    Solved NPC problem on selling/buying

    .So, i just started with my server again, im running TFS 8.6, but i realized that some npcs that sells and buy stuffs arent working correctly, for example, the npc Eryn, wont sell/buy wands/rods, here is the xml and the lua. <?xml version="1.0" encoding="UTF-8"?> <npc name="Eryn"...
  12. M

    Lua Complete Quest action

    after some fooling around with the script, i finished with this version: specialquests = { {5803, 6528, 2453}, --poi {2400, 2494, 2431, 2112} --anni {10544, 10545, 10546} --test } special = false function onUse(cid, item, frompos, item2, topos) prize = item.uid for i, quests in...
  13. M

    Lua Complete Quest action

    So...with all the distros i used none of them came with a simple well explained quest chest action, and i didnt have any luck finding a good one, so i started working on this: specialquests = { {5803, 6528, 2453}, --poi {2400, 2494, 2431, 2112} --anni } special = false function onUse(cid...
  14. M

    Chests doesnt work :(

    I had this same problem with this quest system script, i was getting chests as a reward, so i changed to this one instead: function onUse(cid, item, frompos, item2, topos) prize = item.uid if prize > 0 and prize < 9000 then queststatus = getPlayerStorageValue(cid,prize) if...
  15. M

    Lua Items with too many charges

    Im running 0.3.6 tfs and my aol and my ice rapier comes with 100 charges for some reason, i already changed the charges in items.xml but it doesnt work at all. looks like the item get the carges value from somewhere else. any ideas on this?
Back
Top