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

    What is compiling?

    I see alot of people speaking of compiling this to that or whatnot. What exactly is compiling? What is it used for? I'm a noob so try to keep it simple. Thank you
  2. highclick

    Lua What's wrong? Tiny script

    TFS: 0.3.6 local lever = 113 local item = 2346 local altarpos = {x = 1205, y = 1189, z = 10} local cpos = {x = 1205, y = 1190, z = 10} local npos = {x = 1205, y = 1184, z = 12} function onUse(cid, item, fromPosition, itemEx, toPosition, item2, topos) if item.actionid == lever and...
  3. highclick

    Solved NPC kill mission help

    TFS 0.3.6 Hey guys! I've followed this guide (http://otland.net/threads/npc-mission.211063/#post-2022378) to create a monster killing quest. For some reason it won't start the monster count. Here are my files: The spider name is actually "Spider [Level 10]" in game. Any ideas?
  4. highclick

    Solved Reward XP percentage?

    What is up community! Is it possible to reward a certain % XP instead of a fixed amount of XP? Example: Finish a quest and get 23% XP instead of 131323 amount of XP TFS: 0.3.6 Thank you!
  5. highclick

    Lua Very simple teleport script help!

    Why won't this work? function onUse(cid, item) if item.actionid == 110 then doTeleportThing(cid, {1212, 1151, 8}) else return false end return true end VERSION: 0.3.6 Thank you in advance! Please if you've got a fix and got time, write what i did wrong and not...
  6. highclick

    Real time mapping?

    Hey guys! I'm working on an OT with my friend. I'm the scripter and he is doing all the mapping, everytime we update our map he sends it too me via skype, i put it into the OT folder. The problem is, I have too put out all of the NPC everytime I get the new map from him. It wasn't a problem...
  7. highclick

    Lua Checkpoint system help.

    Hi guys! I found this checkpoint system available: http://otland.net/threads/advanced-checkpoint-system.172371/ I tried it out, followed all steps but I can't get it working. I am using TFS 0.3.6 I get NO errors in the console. Literally nothing happens in game, at all. Does anyone know how...
  8. highclick

    Solved Cannot identify the console error (easy for pro's like u)

    TFS 0.3.6 Here is the error that i get [28/01/2015 07:20:26] [Error - LuaScriptInterface::loadFile] data/creaturescripts/scripts/login.lua:11: unexpected symbol near '==' [28/01/2015 07:20:26] [Warning - Event::loadScript] Cannot load script (data/creaturescripts/scripts/login.lua) [28/01/2015...
  9. highclick

    Solved NPC conversation help please

    This is what I've got so far. TFS 0.3.6 local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState = {} function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function...
  10. highclick

    Solved onUse help, very simple script.

    I got some shishas in game, i want the character too say "Puff Puff" when he clicks on them, I've assigned ACTIONID 2002 too the Shishas. This is my .xml: <action actionid="2002" event="script" value="other/shisha.lua"/> <!-- Shisha --> This is my .lua: function onUse(cid, item,)...
  11. highclick

    Solved Why wont this work? Lever teleport

    .lua script: function onUse(cid, item, fromPosition, itemEx, toPosition) if item.actionid = 102 then doTeleportThing(cid, {x=1283, y=1084, z=8}) end return true end .xml script: <action actionid="102" event="script" value="other/dungeonleverking.lua" /> It's a lever with actionID 102...
  12. highclick

    Solved Make tiles unwalkable?

    Hey guys. So I've got some "holy ground" on my server and i don't want people too be able too step on the ground, is there a way too make the specified tiles unwalkable/push you back? I don't need a finished script i just need some help too get started! Thank you in advance.
  13. highclick

    Solved TFS 0.3.6 | NPC face certain direction?

    I've browsed the forums in order too find a solution, the solutions were very diffuse and hard for me too understand so I decided too post it here. I want too be able to make my NPC's face a certain direction (North,South,East,West). How can i go about?
  14. highclick

    Lua Turn sword into Mace

    Hi! I'm trying too transform a sword (ID 11395) into a mace (ID 2448). I'm very new at using .lua and im unfamiliar with their functions. If anyone could explain what i should put into the parameters and why that would be great This is how far I've come with my script:
  15. highclick

    Solved Remeres Map Editor showing non 8.6 items?

    Hello everybody! I'll cut too the chase. I was mapping some things for my 8.6 server, and i was using Remeres Map Editor. I have it navigated too my 8.6 client. When i was done mapping, i attempted too start the server and i got the following error: "otbm loader failed to create item [x, y...
  16. highclick

    Lua NPC greet depending on storagevalue

    Hi guys, I'll try too describe as good as possible. I have an XML NPC: And then i have a .lua script: Okay so, when you've finished her quest and type "hi" then "help" you get the response "Thanks again for the feathers" I want you too get the "thanks again for the feathers response...
Back
Top