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

    Mead Bucket - Barbarian Quest Mission 1

    This is part of that what you need, with set noMove and change Outfit doCreatureSetNoMove(cid, true) addEvent(doCreatureSetNoMove, 2500, cid, false) doSendMagicEffect(getThingPosition(cid), CONST_ME_HITBYPOISON) if getPlayerSex(cid) == 0 then doSetItemOutfit(cid, 3065, 2000) else...
  2. andypsylon

    Storage teleport for Poi

    Place there seven quest doors.. with your 7 storages
  3. andypsylon

    Requesting check if monster is in area

    so I chose this and no other solution: local storage = 2021 -- global storage value used to know that lever is available local pos = {x=111,y=222,z=333} -- tiger center position local posWall1 = {x=111,y=222,z=333} local posWall2 = {x=111,y=222,z=333} function onUse(cid, item...
  4. andypsylon

    Grizzly Adams: Count kills via Quest Log

    http://otland.net/f82/creatureevent-npc-killing-name-122701/ not good?
  5. andypsylon

    Requesting check if monster is in area

    almost ready :) local storage = 2021 -- global storage value used to know that lever is available local pos = {x=111,y=222,z=333} -- tiger center position local posWall1 = {x=111,y=222,z=333} local posWall2 = {x=111,y=222,z=333} function onUse(cid, item, fromPosition, itemEx...
  6. andypsylon

    Requesting check if monster is in area

    I will finish that later local storage = 2021 -- global storage value used to know that lever is available local area = {x=111,y=222,z=333} -- tiger center position function onUse(cid, item, fromPosition, itemEx, toPosition) if item.aid == storage then if item.id == 1945 then...
  7. andypsylon

    How to use 2 Outfits ???

    add these outfits to mounts.xml
  8. andypsylon

    initial skill

    tja.. you can simple delete all in player_skills in your database you get the same result!
  9. andypsylon

    Looktype in source?

    you have to change "newtype.lua" script and test with the use of the "/newtype" talkactions
  10. andypsylon

    Parcel of item

    doCreateItemEx -- edit (wytlumacz dokladniej po pl na priv albo w pl dziale i wrzuc linka)
  11. andypsylon

    boss kill creaturescript

    repeat if isInArray(t, s:lower()) with if isInArray(t:lower(), s:lower())
  12. andypsylon

    Kill x monster in x area

    probably you have a conflict Delete all events from login.lua and test only this script
  13. andypsylon

    Items drop on line

    local fromPos = {x=996, y=998, z=6} local toPos = {x=1004, y=998, z=6} local items = {{2667,1}, {2679,1}, {2671,1}, {2696,1}, {2689,1}} local maxItems = 20 function isWalkable(pos, creature, proj, pz) if getTileThingByPos({x=pos.x,y=pos.y,z=pos.z}).itemid == 0 then return false...
  14. andypsylon

    Banana>banana skin script?

    :D man replace fromposition with frompos -- edit look above corrected
  15. andypsylon

    initial skill

    in player.cpp replace for(int16_t i = 0; i < 7; ++i) // for each skill { lostSkillTries = sumSkillTries = 0; for(uint32_t c = 11; c <= skills[i][SKILL_LEVEL]; ++c) // sum up all required tries for all skill levels sumSkillTries += vocation->getReqSkillTries(i, c)...
  16. andypsylon

    Banana>banana skin script?

    function onUse(cid, item, frompos, item2, topos) if(food[item.itemid] ~= nil) then if (getPlayerFood(cid) + food[item.itemid][1]) >= 400 then doPlayerSendCancel(cid, "You are full.") else doPlayerFeed(cid, food[item.itemid][1] * 4) doCreatureSay(cid, food[item.itemid][2]...
  17. andypsylon

    Banana>banana skin script?

    add this to the script food.lua if item.itemid == 2676 then doCreateItem(2219, 1, fromPosition) -- banana skin end -- edit or better: if item.itemid == 2676 then if fromPosition.x == CONTAINER_POSITION then doPlayerAddItem(cid, 2219, 1, true) else doCreateItem(2219...
  18. andypsylon

    [Mod / NPC][8.7+] Advanced "The Travelling Trader Quest" (Rashid)

    http://otland.net/f83/rashid-traderequest-anti-spam-ver-1-a-93306/
  19. andypsylon

    [LevelUp Rewards for Different Vocations and Different Levels.]

    paste what you have, and write me what to fix
Back
Top