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

    Linux Phpmyadmin Part

    Repped ++ ty
  2. C

    Linux Phpmyadmin Part

    Hello, What is the best way to protect my database password ? Im using linux - apache2 -Gesior 2012
  3. C

    Training Room makes the server crash?

    You need to make sure that if it caused by an action or a map thing..try to be afk out of training monk or something, if it not bugged then try to summon 2 training monks and train, eat food, use spells. What rev you use and is it 7.6?
  4. C

    Solved Died in Game ! Help

    check the account that you are trying to login with, then check the townid
  5. C

    Avesta is crashing.

    search on otland about how to create a crash report so you can know the reason
  6. C

    Lua Backpack what can contains only gold.

    well i can give you the idea maybe it helps because i dont have enough time to script it, you will make a bp with a special action id so there you need to set a script..
  7. C

    error rope

    its not often mate, just use the script above and u wont get that again.
  8. C

    error rope

    That happens when someone use the rope on himself local spotId = {384, 418, 8278, 8592} local holeId = { 294, 369, 370, 383, 392, 408, 409, 427, 428, 430, 462, 469, 470, 482, 484, 485, 489, 924, 3135, 3136, 7933, 7938, 8170, 8286, 8285, 8284, 8281, 8280, 8279, 8277, 8276...
  9. C

    [Avesta] Remove Redskull Script

    <action itemid="5541" event="script" value="xxxx.lua"/> and in actions/scripts local config = { item = 5541, level = 1, count = 0 } function onUse(cid, item, frompos, item2, topos) if getPlayerLevel(cid) >= config.level then doPlayerSendTextMessage(cid...
  10. C

    [Avesta] Help with script

    function onUse(cid, item, fromPosition, itemEx, toPosition) if item.itemid == 5545 then if not getPlayerVocation(cid) >= 1 then local playerpos = getCreaturePosition(cid) doRemoveItem(item.uid,1) doPlayerSetVocation(cid, getPlayerVocation(cid)+4) doSendMagicEffect(playerpos, 12)...
  11. C

    [Avesta] Help with script

    ok try this one... function onUse(cid, item, fromPosition, itemEx, toPosition) if item.itemid == 5545 then if getPlayerVocation(cid) >= 1 then local playerpos = getCreaturePosition(cid) doRemoveItem(item.uid,1) doPlayerSetVocation(cid, getPlayerVocation(cid)+4) doSendMagicEffect(playerpos, 12)...
  12. C

    Player Healt

    set healthmax = 2600 but make sure the character is offline first
  13. C

    [Avesta] Help with script

    Close your ot and open it again !
  14. C

    [Avesta] Help with script

    function onUse(cid, item, fromPosition, itemEx, toPosition) if item.itemid == 5545 then if getPlayerStorageValue(cid, 2222) == -1 then local playerpos = getCreaturePosition(cid) doRemoveItem(item.uid,1) doPlayerSetVocation(cid, getPlayerVocation(cid)+4) doSetPlayerStorageValue(cid, 2222, 1)...
  15. C

    [Avesta] Help with script

    xD the promotion for him is: Vocation id = more than 0 not a vocation promotion Promoted(cid) == 0
  16. C

    Player Healt

    Make sure that MaxHealth = Health
  17. C

    [Avesta] Help with script

    K but you said that dont check if already promoted !! ok this will work function onUse(cid, item, fromPosition, itemEx, toPosition) if item.itemid == 5545 and getPlayerStorageValue(cid, 2222) == 1 then doPlayerSendTextMessage(cid,22,"You already Promoted!.") return true end if...
  18. C

    [Avesta] Help with script

    k in actions.xml <action itemid="5545" event="script" value="promotion.lua"/> in actions/scrips/ add promotion.lua function onUse(cid, item, fromPosition, itemEx, toPosition) if item.itemid == 5545 then local playerpos = getCreaturePosition(cid) doRemoveItem(item.uid,1)...
  19. C

    [Avesta] Help with script

    Well lets try a global value function onUse(cid, item, frompos, item2, topos) local playerpos = getCreatureByName(cid) if getPlayerVocation(cid) == 0 or getPlayerStorageValue(cid, 3333) == 1 then doPlayerSendTextMessage(cid,22,"You have no...
  20. C

    [Avesta] Help with script

    oh aright sorry.. then mmm function onUse(cid, item, frompos, item2, topos) local playerpos = getCreatureByName(cid) if getPlayerVocation(cid) == 0 or getPlayerStorageValue (cid, 3333) == 1 then doPlayerSendTextMessage(cid,22,"You have no...
Back
Top