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

    Data pack 7.6 Avesta real map + quests

    http://speedy*****malware.localhost/VFT4w/Distro-config.rar cred for this distro goes to the developer and 53701688 he made extra features and bug fixes to this distro. hope you enjoy this! :)
  2. T

    script fix plese

    it shouldnt :)
  3. T

    Solved Set outfit to group ID.

    if getPlayerAccess(cid) >= 6 then doCreatureChangeOutfit(cid, 332) elseif getPlayerAccess >= 5 then doCreatureChangeOutfit(cid, outfit) elseif getPlayerAccess >= 4 then doCreatureChangeOutfit(cid, outfit) it works something like this.
  4. T

    script fix plese

    local m = { ["Snake God Essence"] = { time = 10, -- Seconds to = { x = 283, y = 1427, z = 7 }, -- Where Teleport Goes tp = { x = 347, y = 1365, z = 7 } -- Where Teleport Creates } } function onKill(cid, target) local monster =...
  5. T

    10.10 The Forgotten Server 0.3.?

    In the XML folder you find groups, the access is not synced with talkaction commands. <?xml version="1.0" encoding="UTF-8"?> <groups> <group id="1" name="Player"/> <group id="2" access="1" name="Tutor" flags="137455730688" customFlags="2"/> <group id="3" access="2" name="Senior...
  6. T

    Data pack 7.6 Avesta real map + quests

    sorry nottinghster, yea its some of your files in there for sure. just didnt think of if. so credits for you aswell to 53701688 that i made most of the quests in this data pack with. there is not many 7.6 servers out anymore so i thought pharaps with this datapack more ppls will start some and...
  7. T

    Data pack 7.6 Avesta real map + quests

    http://speedy*****malware.localhost/AemPh/data.rar
  8. T

    Data pack 7.6 Avesta real map + quests

    Hello! here is a nice datapack with manymany quests all you need is a server engine and you are ready to go! a little prewiev of all the actions.xml file i have. <actions> -- Rook aid = 3000+ <action uniqueid="2999" script="rook/bear room/key.lua" /> <action uniqueid="3000"...
  9. T

    7.72 Server

    http://remeresmapeditor.com/marklar.php works for all verisons.. show some good mapping and i could help you out with a 7.72 distro.
  10. T

    Lua doTransformItem problem.

    it doesnt work. it just have truble finding out wich item its suposed to transform again in the event. seems like its impossible :D local event = 0 local cfg = { item1 = 2123, item2 = 2357, } function onUse(cid, item, frompos, item2, topos) if item.actionid == 2357 and item.itemid ==...
  11. T

    Lua doTransformItem problem.

    it doesnt work either, "luadoTransformItem item not found
  12. T

    Lua doTransformItem problem.

    ahhh... i got an item and when you use it i want it to transform into another item for in this script 2 seconds. so it works with the first doTransformItem, but not on addevent to turn it back to its original item. error code item not found. local event = 0 function onUse(cid, item...
  13. T

    Lua doTransformItem problem.

    This scripts works propertly buy only with uid not with actionid how come ? so im not able to move the object. =S local event = 0 function onUse(cid, item, frompos, item2, topos) if item.uid == 2357 and item.itemid == 2357 then doTransformItem(item.uid,item.itemid-234) event =...
  14. T

    Solved Kill monsters with fluids.

    thank you verry much!! :)
  15. T

    How to edit starting stat?

    i think you do it with the sample characters.
  16. T

    Solved Kill monsters with fluids.

    Here is my script to kill a specific monster. but at this line if item.type == 1 and getCreatureTarget(cid,'mr gulos') then it doesnt get the monster by its name so i dont know how else to script it. With this script i can kill any monster i attack with a vial of water. thank you. if item.type...
  17. T

    Windows Nicaw AAC Avesta 7.6 PROBLEM

    CREATE TABLE IF NOT EXISTS `groups` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL COMMENT 'group name', `flags` bigint(20) unsigned NOT NULL DEFAULT '0', `access` int(11) NOT NULL, `maxdepotitems` int(11) NOT NULL, `maxviplist` int(11) NOT NULL...
  18. T

    How To Make Door For Level Ex:100 And Qeust

    you put action id at the door. 1100 = level 100. 1050 = level 50.
  19. T

    9.8 Globalevents

    function onThink(interval, lastExecution, thinkInterval) for _, name in ipairs(getOnlinePlayers()) do local player = getPlayerByName(name) if getTileInfo(getThingPos(player)).protection then if getPlayerMana(player) < getPlayerMaxMana(player) then doPlayerAddMana(player, 1)...
  20. T

    Solved NPC problem

    <parameter key="shop_buyable" value="bread,2689,3;cheese,2696,5;ham,2671,8;meat,2666,5;" /> <parameter key="shop_sellable" value="bread,2689,1;cheese,2696,2;ham,2671,4;meat,2666,2;carrot,2684,1;cherry,2679,1;egg,2695,1;salmon,2668,2;" /> added; in the end. should work then.
Back
Top