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

  1. N

    TFS 0.X TFS 0.4 Zombie Event fix problem

    yes but he is inactive i think
  2. N

    economy on otservers

    just make systems that require much KKs to get like dodge system, critical system and you can make a npc sells donation items for KKs- or store -
  3. N

    TFS 0.X TFS 0.4 Zombie Event fix problem

    i fixed it bro, he had a problem in movements.xml
  4. N

    teleport

    at creaturescripts.xml add <event type="kill" name="CreateTP" script="createteleport.lua"/> at creaturescripts/scripts/login.lua add registerCreatureEvent(cid, "CreateTP") add new lua in your creaturescripts/scripts/createteleport.lua add local config = { ["Rat"] = {time = 60, toPos = {x =...
  5. N

    Scripter pay for who make it work on tfs 0.4 mysql

    i fixed this problem 2 years ago using this solution - i think - and he did not tell us what errors he get but hope it works :)
  6. N

    Scripter pay for who make it work on tfs 0.4 mysql

    well its for tfs 0.4 just add this in your lib folder in 100-compat db.executeQuery = db.query and about prize every rebirth you can use this script to give him money as a reward your npc :- local config = { price = 0, -- Price of first rebirth priceIncrease = 0, -- Works as 'price' +...
  7. N

    TFS 0.X Help Please with error tfs 0.4

    Add this in your lib folder in 100-compat db.executeQuery = db.query
  8. N

    TFS 0.X TFS 0.4 Zombie Event fix problem

    well this line is responsible for teleporting you to the event position = {x=1023,y=1033,z=7}, -- position to which player is teleporting but the lines i mentioned From and To positions make sure they are right From is top left corner and to is buttom right corner
  9. N

    TFS 0.X TFS 0.4 Zombie Event fix problem

    make sure that those lines are right room = { from = {x=1019,y=1028,z=7}, -- left top corner of event room to = {x=1027,y=1036,z=7}-- right bottom corner of event room }, this message appear because there is nobody in the...
  10. N

    TFS 1.X+ Rune

    try this script function onUse(cid, item, frompos, itemEx, topos) local playerinfo = -- Please don't touch { level = getPlayerLevel(cid), mlevel = getPlayerMagLevel(cid), voc = getPlayerVocation(cid) } local config = { strenght = "template", ---Values: template (strenght dependent on level and...
  11. N

    TFS 0.X TFS 0.4 Zombie Event fix problem

    which script are you using?
  12. N

    Lua how add exaust potions in this script 1.2

    try this one i did not test but it should work function onUse(player, item, fromPosition, target, toPosition) local exhaustTime = 5 -- time in seconds local exhuststorage = 200001 -- empty storage local targetItemType = ItemType(target:getId()) if targetItemType and...
  13. N

    [TFS 1.2] Fire Storm Event fix help

    try this in your script at movements dofile('data/firestorm_event.lua') function onStepIn(creature, item, position, fromPosition) local player = creature:getPlayer() local pos = {x = 885, y = 964, z = 7} local pos1 = {x = 985, y = 1276, z = 7} if...
  14. N

    [TFS 1.2] Fire Storm Event fix help

    what about "fsArena = Position(991, 930, 7) " i think the place you used in the script to teleport you to the event area is not available in the map so it does not teleport you anywhere
  15. N

    [TFS 1.2] Fire Storm Event fix help

    make sure that the tp has an action id
Back
Top