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

  1. R

    Lua [rope] (luaGetThingFromPos) Tile not found

    Try this rope.lua: local spotId = {384, 418, 8278, 8592} local holeId = { 294, 369, 370, 383, 392, 408, 409, 427, 428, 430, 462, 469, 470, 482, 484, 485, 489, 924, 3135, 3136, 7933, 7938, 8170, 8286, 8285, 8284, 8281, 8280, 8279, 8277, 8276, 8323, 8380, 8567, 8585, 8596...
  2. R

    Windows terribly slow map loading on 0.3.6pl1

    I'm gonna copy my previous post because this solution may help you, too. The problem is not the version of your engine, it's the size of your map. Download Laatido from: http://www.musikbanken.se/laatidosetup.exe In step 1 select your .exe file that you use to turn your server on...
  3. R

    64 Bit

    Download Laatido from: http://www.musikbanken.se/laatidosetup.exe In step 1 select your .exe file that you use to turn your server on. Make a backup file if you want. Click Enable in Step 4. Now try to run your server. If it still doesn't work then it means you don't have enough RAM...
  4. R

    Lost account how to configure?

    First of all, create a new e-mail with gmx.com (their service seems to be working really well it the Lost Account interface) Once you do that, open config/config.php and find a block of text starting with: // E-MAIL config $config['site']['send_emails'] = 1; You have to edit all the...
  5. R

    Linux Linux Web Problem!

    Add chmod 777 to your www folder chmod +x www Is www folder in /var? cd /var chmod +x www You can also do it manually in your SSH/FTP program like FileZilla. Right click on the file/folder name and select "File Permissions" from the drop-down menu. Type in '777'. Relic
  6. R

    Change 8.5 a 8.54

    Try this login.lua: local config = { loginMessage = getConfigValue('loginMessage'), useFragHandler = getBooleanFromString(getConfigValue('useFragHandler')) } function onLogin(cid) local loss = getConfigValue('deathLostPercent') if(loss ~= nil) then doPlayerSetLossPercent(cid...
  7. R

    Lua TFS 0.3.6 - It doesn't work to buy wands or rods, only runes

    In runes.lua file, replace your: shopModule:addBuyableItem({'wand of vortex', 'vortex'}, 2190, 500, 'wand of vortex') shopModule:addBuyableItem({'wand of dragonbreath', 'dragonbreath'}, 2191, 1000, 'wand of dragonbreath') shopModule:addBuyableItem({'wand of decay', 'decay'}, 2188, 5000...
  8. R

    level doors

    Which level doors don't work. It's not the problem with the script, it's probably action IDs on your map. Log in on your God character and 'look' at the door. A level door for 40lvl should have and action ID 1040 (level door for 80lvl would have an action ID of 1080, etc.).. Are all of...
  9. R

    level doors

    Try this: local function checkStackpos(item, position) position.stackpos = STACKPOS_TOP_MOVEABLE_ITEM_OR_CREATURE local thing = getThingFromPos(position) position.stackpos = STACKPOS_TOP_FIELD local field = getThingFromPos(position) return (item.uid == thing.uid or thing.itemid...
  10. R

    First items help plz

    Try now.
  11. R

    Lua Items for Level

    100k at 50lvl: Go to data/creaturescripts/scripts and make a new file called advanceMoney.lua: local config = { levelReach = 50, item = 2160, count = 10 } function onAdvance(cid, skill, oldLevel, newLevel) if(skill ==...
  12. R

    Geisor Bank NPC

    data/npc/scripts/bank.lua local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) local stan = 0 local stan_two = 0 local player_pattern = '^[a-zA-Z0-9 -]+$' local number_pattern = '%d' local target_cid = 0 local number_pattern_two = '%d+' local...
  13. R

    First items help plz

    Give different items to your sample characters or change firstitems.xml file in /mods folder. Sample firstitems.xml file, numbers 1, 2, 3, and 4 correspond to different vocations. <?xml version="1.0" encoding="UTF-8"?> <mod name="First Items" version="1.0" author="The Forgotten Server"...
  14. R

    Problem Sweaty Cyclops

    Try this: local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function onCreatureDisappear(cid)...
Back
Top