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

    Mapper Custom server looking for mapper

    Hello community, Nelvara is recruiting a mapper. You will be creating brand new content for the server game world. Depending on how enthusiastic you are you will either create content in parts or you will start from scratch on a whole new continent of the world (we currently have 4 continents)...
  2. trollebror

    Nelvara - Reset and Update Discussion

    Hello community, the Nelvara team are preparing for a total server reset. Before the reset will be executed the server will be placed in a beta stage. This allows both the Nelvara team and the players to test some new stuff out (that may or may not be bugged) and come with feedback. This "new...
  3. trollebror

    Set and get player storage

    Hello, I will share these two scripts because they're so extremely useful. I'm sure that something similar already have been posted but here is my version of it. :) I'm using TFS 1.1. What does it do? It allows you to set and get any online player storage with talkactions. Usage examples...
  4. trollebror

    SQL queries through LUA

    Hello! I'm using TFS 1.0. Since using db.executeQuery() gives me this: attempt to call field 'executeQuery' (a nil value) And db.storeQuery() is used for selects (?) only, how to execute inserts/updates etc from lua? Thanks in advance! :)
  5. trollebror

    onGetFormulaValues in global.lua

    Hello! Does anyone know how to put a combat object with a onGetFormulaValues-callback in the global.lua? Putting a combat object in global.lua is no problem, but when adding the callback to the combat-object all hell break loose. I'm getting this error: >> Loading script systems [Warning -...
  6. trollebror

    Lua How costly is this kind of operations (SQL)?

    Hello OTLanders! I'm wondering about exactly how efficient or inefficient is it to use this kind of database operations. function insertToSQL(accid, time, admin_id, comment) return db.executeQuery("INSERT INTO `someDataz` ... ") end function getBanAccInfo(acc) local info,qry =...
  7. trollebror

    Weapon scripts - Default behaviour

    What I want to do is that any wand/rod/bow/sword (any weapon) that I point to a script in the weapons.xml should behave like they normally do (like if I would not have pointed a script to this weapon). <melee id="2376" function="default" script="somescript.lua" /> <distance id="2456"...
  8. trollebror

    doItemSetAttribute() for 0.2.14

    Hello guys! Is there a way to achieve the doItemSetAttribute() result on a 0.2.14~? There is a similar get function getItemDescriptions(), but none for setting value. If this is not possible with the 0.2.14, what has to be done in the source to achieve this? Thanks guys! :)
  9. trollebror

    TalkAction Set Player Storage Value

    I could not find a similar script so I made one myself. What it does: Sets a players storage value. Use example: !storage "GM Trollebror, 21212, -1 set_storage.lua function onSay(cid, words, param) local parameters = string.explode(param, ",") local player =...
  10. trollebror

    [Weapon] Hit or block?

    Is it possible to check if the attack is blocked or not inside a weapon-script? Check the code below for a more illustrative explanation. local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_BLOCKARMOR, 1) setCombatParam(combat, COMBAT_PARAM_BLOCKSHIELD, 1)...
  11. trollebror

    Quest Item Container

    Hello guys! Is there a way to use this quest item container with the TFS 0.2.14? If there is, how to use it? If not, are there any distro that supports this new feature? -edit- This is the container I'm talking about:
  12. trollebror

    Lua Client built-in 'quest item container'

    Hello guys! Is there a way to use this quest item container with the TFS 0.2.14? If there is, how to use it? If not, are there any distro that supports this new feature? -edit- This is the container I'm talking about: - - - Updated - - - Anyone?
  13. trollebror

    Team Lightsource Team recruiting dedicated players

    I wrote a tryhard text, but it went gone, so here you got a short review. We are searching for: 18+ scripter Npc/quest/storyline crafter Trailer responsible Post here or add me via skype: Daviid1996. //Lightsource Team.
  14. trollebror

    [CREATURESCRIPT] onPrepareDeath 2.0.14

    Hello folks! Is there a way to make the following on the 2.0.14 in any other way then the onPrepareDeath - since the onPrepareDeath does not work properly for this distro? local EXIT_POS = {x = 1280, y = 686, z = 9} function onPrepareDeath(cid, deathList) doTeleportThing(cid, EXIT_POS)...
  15. trollebror

    [Sweden] Thor 8.60 Custom Map (Low rate)

    Thor OT 8.6 Custom Map Map: It's a huge map with 5 continents. Server information: Experience rate: x5 Skill rate: x8 Loot: x1 Magic rate: x4 Other information: Legendary and Divine drops from all monsters, example: You see a longsword (Legendary) (Atk:17 +4, Def:14). It...
  16. trollebror

    Solved Can not sell stacked items

    I can not sell stacked items in shop, one at a time is okey. When I press "Ok" in the trade window it says "You do not have this object.". Im using TFS V5. - - - Updated - - - Anyone? :) Solved: Updated to newer NPC-system files.
  17. trollebror

    [Action] doItemSetAttribute(MAGIC LEVEL)

    Title says it all pretty much. These are the attributes I've found: If there are no attribute for this, how can it be made another way? Script way, not in item.xml. Cheers!
  18. trollebror

    [Sweden] Oden 8.60 Custom Map

    Oden OT 8.6 Custom Map Map: It's a huge map with 5 continents. Server information: Experience rate: 8-20: x100 21-30: x90 31-40: x75 41-60: x60 61-80: x50 81-100: x40 101-130: x20 131-200: x10 201+ x5 Skill rate: x45 Loot: x2 Magic rate: x40 Other information: Legendary and Divine drops...
  19. trollebror

    Windows Server lag when monsters on screen

    I can run on a GM or a fast character without lag when there are no monsters around. When I move around when there are monsters chasing me or my summon (on GM) I can see a big lagging difference. I wonder what the cause might be? Slow internet connection, bad monster.xml files, too large map or...
  20. trollebror

    [Raid] Spawn Item

    Hello. I am using tfs 0.2.10. To spawn a item with a raid, how do you do that? This pieces of code I thought was working, but it does not. Any ideas?
Back
Top