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

    Add soul orb on monster kill, not summons.

    I would think adding if isMonster(target) and not isSummon(target) then That should do it if your server supports that function.
  2. Tech_Rob

    Scripter - [StoryWriter]

    Not wanting to flame your thread but I think people that come here need to know that your information is crossed. You posted on someone elses thread that you had 7 years of C# and scripting experience. I think everyone needs to know that your information is missleading to say the least.
  3. Tech_Rob

    Lua List of Attributes usable

    I am looking for a list of working attributes that can be used in action scripts. I have search over the forums and did not come across anything, though I did see that absorbpercentmagic and such is only for items.xml unless source editing is completed. What I am looking to do is make a...
  4. Tech_Rob

    [Request] {NPC} Custom Promoter

    Any help with this NPC would be greatly appreciated.
  5. Tech_Rob

    [Request] {NPC} Custom Promoter

    I am looking to get a custom promotion NPC. This NPC would be for a single vocation, each Vocation will get their own. For example: Player: Hi NPC: Welcome *Player name*. My name is *NPC name*. How may I assist you today? Player: training NPC: I can certainly train you to become *Custom...
  6. Tech_Rob

    Request maps you need here!

    Version: 8.54 I am looking for islands that have or do not have spawns added already. Grass, Snow, Sand, Mountain, Dirt, Swamp.... whichever you may have for 8.54 servers, I can use. I am putting together a map with alot of nice islands to hunt on. I do not need any towns at this time, but...
  7. Tech_Rob

    Lua 2 Scripts needed.

    I need two pretty simple scripts. One is basically made already, just having a slight error. function onUse(cid, item, fromPosition, itemEx, toPosition) if(itemEx.itemid == 2694) then doPlayerAddItem(cid, 2692, 1) doRemoveItem(itemEx.itemid) return true end end This...
  8. Tech_Rob

    Lua Gain Exp

    Shockah has hit it on the head. He wants to be able to receive exp for killing anyone within 80 levels of his current level. Therefore his example of him being level 100 and the character being level 20 or higher and level 180 or lower he still receives experience. @Topic The server looks at...
  9. Tech_Rob

    [Request] Lua script movement needed

    Ok, so I am trying to figure out which function is used to save text to a file. I want to be able to save text to a file as some either walks on specified tile, or says something specific. The format of the file should include the players name, the time, and then drop down to a new line incase a...
  10. Tech_Rob

    Action deleted thread

    I tested the script with .3.6 and it seems to work great, only problem I seem to get is that the book does not display recipe forme.
  11. Tech_Rob

    Knight online Action script? confused...

    local voc = getPlayerVocation(cid) if voc == 4 or 8 then return 0 end You can also do it this way if you want.... local voc = getPlayerVocation(cid) local id = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11} if voc == id then return 0 end
  12. Tech_Rob

    [Huge Request!]Searching anty crash scripts!

    Honestly, we cant tell you your armor script is causing it, or your npc cause we do not know! Search and find what is crashing YOUR server. Its something you have in your server.
  13. Tech_Rob

    Remeres map editor

    Control is necessary if you are deleting land, shift is used for items on the ground.
  14. Tech_Rob

    Remeres map editor

    Hold Shift + Control + drag your cursor when on the delete tool.
  15. Tech_Rob

    Npc's help!

    Use the search feature on the website, that has been done before. It was posted in Lua/XML section.
  16. Tech_Rob

    (!?)Searching for help its important.

    Local Area Network IP. The IP your router assigns you. Usually starts with 192.169.1.xx for linksys. Netgear can start with 10.xx Go to control panel, network connections and right click on Local Area Network and choose status. Then go to Support and it should be listed there.
  17. Tech_Rob

    Lua Deads are disappear

    Versions of server? Post login.lua script? Give us some more information rather then just "fix this bug" or "I have same problem". Obviously alot of us here have not had that problem, so we cant pinpoint exactly where to fix it. We can only throw common sense at you.
  18. Tech_Rob

    Running without MYSQL

    Make an exact copy of your server, in a different folder then set it to run as Sqlite. Just chance the settings in config to make sure it isnt going online... that it is local only, and also change the port numbers so it doesnt interfere with the other server.
  19. Tech_Rob

    Help with runes!! plz :D

    Check and see if they have an exhaustion set in the Config.lua file for the attack spells.
  20. Tech_Rob

    Lua Transform player to outfit

    if (getPlayerStorageValue(cid, storage) == 1 and current.lookType ~= old.lookType) then On that line you need to put a space between your == 1. Also you do not get local values for old and current look types. So you need to add something like this up. local old = getPlayerOutfit(cid) local...
Back
Top