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

    Action Multiple Spell Scrolls

    in spells.xml change the needlearn of the spell u want to be learned from 0 to 1
  2. perfection

    Learn spell by item

    http://otland.net/f81/multiple-spell-scrolls-139826/ next time use the search bar
  3. perfection

    My Server

    this is for ur second problem add this in creaturescripts/firstitems.lua function onLogin(cid) if getPlayerStorageValue(cid, 40045) == -1 then if getPlayerVocation(cid) == 1 then doPlayerAddItem(cid, 2518, 1)--Beholder Shield doPlayerAddItem(cid, 8820, 1)--Mage hat doPlayerAddItem(cid...
  4. perfection

    pz and exp for player problem.

    change worldType = "pvp" to pvp-enforced and to change skull time change whiteSkullTime = 5 * 60 * 1000 its currently set to 5 mins
  5. perfection

    Lua Login.lua problem

    local config = { loginMessage = getConfigValue('loginMessage'), useFragHandler = getBooleanFromString(getConfigValue('useFragHandler')) } function onLogin(cid) local loss = getConfigValue('deathLostPercent') if(loss ~= nil) then doPlayerSetLossPercent(cid, PLAYERLOSS_EXPERIENCE, loss *...
  6. perfection

    Server EXP

    u could simply go to config.lua and change experienceStages = true to experienceStages = false
  7. perfection

    [Request] Items.XML

    those are sprites made for custom client
  8. perfection

    Switch Script

    this is not tested hope it works
  9. perfection

    Switch Script

    local SwitchId = XXX -- ID of the switch local Token = XXX, X -- ID of the token (ID, count) local Item = XXX, X -- ID of item to buy (ID, count) function onUse(cid, item, frompos, item2, topos) if item.itemid == SwitchId and getPlayerItemCount(cid, Token) == TRUE then doPlayerRemoveItem(cid...
  10. perfection

    CreatureEvent Forever Amulet (Red & Black Skull Protection)

    in actions/scripts/foreverquest.lua local chest = XXX -- Unique Id of quest chest local storage = 3438 -- Storage local reward = 2196, 1 -- Id Of Forever Aol function onUse(cid, item, frompos, item2, topos) if item.itemid == chest and getPlayerStorageValue(cid, storage) ~= 1 then...
  11. perfection

    Action A Small OnAdvance System

    ops lol forgot to change it before posting :D sry about that edited script
  12. perfection

    Action A Small OnAdvance System

    Ok this script is an onAdvance System which is When a player reaches lvl 200 he will get a temple teleport scroll and on lvl 400 will get a Red Skull Remover i know its simple but it might be usefull to someone :) first in data/creaturescripts/scripts/items.lua local levelx = 200 -- Level...
  13. perfection

    Windows Token

    ye but he didnt say that he wants it to give random don items :S
Back
Top