• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. 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)...
  2. 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 =...
  3. J

    Modern aac vocations help

    No i had the sample account i just forgot the commas
  4. J

    Modern aac vocations help

    Yea i realized this right after i made the post lol, all works now
  5. 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"...
  6. 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...
  7. J

    Script summon monster from item with charges

    Sorry, how would i go about that?
  8. J

    Script summon monster from item with charges

    Thanks guys, sorry i just started learning lua scripts. I'm used to C++ so it's a little difficult to switch. - - - Updated - - - If i wanted to clear the amount of charges the player has used, lets say if they talked to an npc or something. Would i use this line of code? (using warofthetitans...
  9. 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...
  10. 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