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

    Linux server out of memory crash

    Hi guys, I'm hosting a server which runs on a fast dedicated server. TFS is the only major application that is running on the server. It uses %20 of the memory, around %5 of the cpu. It is not an active server but players log in from time to time. Yesterday the game server randomly crashed for...
  2. Gsp

    Lua [Solved][Talkaction] Bank system for TFS 0.4

    Hi guys, does anyone have a properly working bank system for 0.4 3884? I havent been able to find it here. I made a talkaction script which reads your balance from database (instead of GPs you are carrying) and it is working fine. function onSay(cid, words, param) local balance =...
  3. Gsp

    A question about outfits

    Can someone tell me how the outfit system works in global tibia? I retired before addons were added so I dont know much. Is it possible to get first or second addons of an outfit without having the base outfit? For example, if I bring Cael a tribal crest(without having the base outfit and...
  4. Gsp

    Lua Raid problem - bosses keep spawning

    Same problem as in http://otland.net/threads/raids-help-spawns-more-than-one-monster.83550/ Is there a way to stop it? I'm trying to create random boss spawns for demodras etc.
  5. Gsp

    Solved Npc message delay

    Is there a way to delay npc messages if you have them in this order? npcHandler:say("msg1", cid) npcHandler:say("msg2", cid, true) npcHandler:say("msg3", cid, true) npcHandler:say("msg4", cid, true) .. using 0.4 8.6.
  6. Gsp

    Solved Rings,amulets,boots stop working on login

    Everything works without a problem but when I relog with a stealth ring for example, I am no longer invisible. It is the same with amulets and boots. I have to remove them and wear them again to make them work. What is the problem? using 0.4 8.6
  7. Gsp

    Lua How to get a number of storagevalues

    I'm trying to create a npc that will reward the player if the player has at least 4 out of 8 storagevalues (doenst matter which one) spent 3 hours trying to script it but still nothing .i need your help.
  8. Gsp

    Lua Elemental machine not working

    function onUse (cid ,item, frompos, itemEx, topos) local config = { machUID = 1400 , machStorage = 1400 , PallyPos = { x = 33262 , y = 32201 , z = 13 }, SorcerPos = { x = 33180 , y = 32198 , z = 13 }, DruidPos = { x = 33329 , y = 32075 , z = 13 }, KninaPos = { x = 33086 , y = 32094 , z = 13 }...
  9. Gsp

    Running a mod twice a day

    Hi guys . I have an event mod that runs once a day from the file <globalevent name = "eventStart" time="15:00:00" event="script"><![CDATA........[ I want this file to run twice a day. how should I do it? should I just copy the mod file?
  10. Gsp

    Gesior spells page for 8.6

    Does anyone have it? I couldnt find it anywhere
  11. Gsp

    Solved which border is this?

    i couldnt find this on my 8.6 items.otb . this ss is taken from lightonia.
  12. Gsp

    console on PuTTY

    Is there a way to put the TFS in background or something so i can use the command line? http://oi59.tinypic.com/106cwfd.jpg as you see after running the file im not able to execute any commands. this might be a stupid question i've just started learning debian many thanks
  13. Gsp

    deleting characters ctrl + y

    Is it possible to add an option for deletion to ctrl + y actions? Or is there any way to directly delete a character (account) with a command?
  14. Gsp

    Question about duplicated items

    If someone clones an item, will the description be copied on the cloned item? You see a magic sword. (X owns it) for example.
  15. Gsp

    Walking the npc to a pos

    local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState = {} function onCreatureSay(cid, type, msg) npcHandler:onCreatureSay(cid, type, msg) end function onThink() npcHandler:onThink() end function...
  16. Gsp

    Windows Which system to choose?

    I want to get a dedicated server to host ots but I dont know which one is better. Windows Server 2012 Standard Edition Windows Server 2008 R2 SP1 Standard Edition 2012 version is cheaper, has any of you tried hosting ots on these ?
  17. Gsp

    windows server 08 standard vs web edition?

    guys can someone tell me the difference between these two? i'm gonna get a dedicated soon please tell me which one is better for hosting ots. and dont tell me to go linux it's too hard for me i dont have time to learn it
  18. Gsp

    teleport (twice) script

    guys i'm trying to make a script that will teleport the player who pulls the lever (or just clicks on the item) and 30 seconds later the player will be teleported again but this time to a different location i tried something but did not work. (im a noob by the way) local level = 0 local...
  19. Gsp

    [request] globalevent for stone

    hi guys xD i need a script that will check the pos and if stone isnt there it will create it i tried to make one but i sux local walls = { { x = 27, y = 124, z = 9, stackpos = STACKPOS_FIRST_ITEM_ABOVE_GROUNDTILE } } function createWalls(item, position) doCreateItem(1304, 1...
  20. Gsp

    remove vials after usage

    guys how do i make it so mana potions disappear after usage?
Back
Top