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

    After Quest npc help

    I'm trying to quest a boatman npc that gives you an option after you finish a quest. I'm just not quiet sure how to call the, or what to call. I'm assuming you need to call the storageID from the quest, but I'm not sure how to do that. I can script the travel functions for the boatman I'm just...
  2. J

    Problem logging into the server

    Hey i had an ots working fully and wonderfully, but i had to move. So i packed up my server and moved, reconfigured it to the new modem, forwarded my ports and decided to redo the database. I also modified my no-ip host. Now i have problems. If i try and log in using 127.0.0.1 then it loads...
  3. J

    Modern aac house auctions.

    I got my first problem fixed, just replaced the bank script. Now i can't have another player join in on the auction, it gives me an error 404 page not found. I've noticed it also tries to take me to this url: http://myots.no-ip.org//houses/view/25 when it should try to take me to this url...
  4. J

    Lua Quest log help

    Hey I've been trying to get my quest log to work but so far no luck, i was hoping that someone could take a look at my code and see if i missed something: Here is my quests.xml document <?xml version="1.0" encoding="UTF-8"?> <quests> <quest name="Rebellion beer run" startstorageid="25000"...
  5. J

    .lua spell script help

    I'm trying to make a spell for druids that summons a 3x3 area of jungle grass, and the grass slows targets. this is the code i have but it won't slow creatures or people. local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_FIRE)...
  6. J

    Spell help

    I'm trying to make a spell for druids that summons a 3x3 area of jungle grass, and the grass slows targets. this is the code i have but it won't slow creatures or people. local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_DISTANCEEFFECT, CONST_ANI_FIRE)...
  7. J

    Multi log.

    I'm designing a new server and for now i would so i can connect on via multi client to two different accounts. I'm running tfs 0.3.7 on tibia 8.6. Here's my connection config, but it still doesn't work. -- Connection config worldId = 0 ip = "127.0.0.1" bindOnlyConfiguredIpAddress =...
  8. J

    Modern aac vocations help

    I'm trying to make custom vocations and i have them working in the game, but not on the website so far. I went into config.php and tried this: /*List of vocation available to choose when creating new character*/ $config['vocations'] = array(1=>"Sorcerer", 2=>"Druid", 3=>"Paladin", 4=>"Knight"...
  9. J

    Custom vocations?

    I was wondering if it was possible to do new vocations, along with the old ones. I added in a rouge vocation to vocations.xml and put this code: function isRouge(cid) return isInArray {{13}, getPlayerVocation(cid)) end in the 031-vocations.lua file. It didn't work though, any...
  10. J

    Script summon monster from item with charges

    This script should summon a demon from a lamp, 3 times then run out of charges but it won't work. heres my code: local config= { monster="Demon" i=3 } function onUse(cid, item, frompos, itemEx, topos) if config.i >0 then if item.itemid == 2063 then...
  11. J

    roxor 8.62 webpage help

    Hello i'm making an ots, using the roxor 8.62 server. I'm trying to make a webpage that links into my data base, but so far no luck. I tired using this guide : http://otland.net/f479/website-installing-modern-aac-uniform-server-91951/ But realized the version wouldn't work with it, can you...
Back
Top