• 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. Blorin Mage

    CreatureEvent Points onAdvance LeveL + Auto Broadcast

    local t, storage = { {100, 10}, {150, 20}, {200, 30} }, 256 function onAdvance(cid, skill, oldLevel, newLevel) if skill ~= SKILL__LEVEL then return true end for i = 1, #t do local v = t[i] if newLevel >= v[1] and getCreatureStorage(cid...
  2. Blorin Mage

    Help

    do you mean u want this helmet to reg mp/hp better than soft or u mean when somebody wear this helmet it add him 50% extra mana and when he remove it from the helmet slot the extra 50% remove?
  3. Blorin Mage

    CreatureEvent Points onAdvance LeveL + Auto Broadcast

    no i tested it on 0.3.6pl1 but u can try it
  4. Blorin Mage

    Fixable?

    open config.lua search for autoBanishUnknownBytes = true and set it to autoBanishUnknownBytes = false
  5. Blorin Mage

    Use item - get premium points, use item - get random item from sms shop. Rep+

    and you want each diffrent id of rubies give diffrent single donate item right?
  6. Blorin Mage

    Use item - get premium points, use item - get random item from sms shop. Rep+

    anyway ok im going to post the first script of life crystal which will give you 100 premium points when you click on it or use it 1) go to actions\actions.xml add <action itemid="7315" event="script" value="lifecrystalpoints.lua"/> 2)go to actions\scripts and create file...
  7. Blorin Mage

    Use item - get premium points, use item - get random item from sms shop. Rep+

    tell me what are the random items that you want the small ruby change into
  8. Blorin Mage

    Use item - get premium points, use item - get random item from sms shop. Rep+

    do you mean you want the players to loot itemid=x count=x if they got that they use on itemid that have count=x and they get 100 premium points?
  9. Blorin Mage

    requesting give premium talkaction ???

    do you mean you want to add for all online players premium days for 1 week?
  10. Blorin Mage

    requesting give premium talkaction ???

    Zyntax Thx For Your Comment But I Know That And I Tried Your Script Doesnt Work xD
  11. Blorin Mage

    requesting give premium talkaction ???

    1) /addprem Playername <talkaction log="yes" words="/addprem " access="5" event="script" value="addpremium.lua"/> function onSay(cid, words, param) doPlayerAddPremiumDays(cid, 10) doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "GOD Have Added To You 10 Premium Days.") return end...
  12. Blorin Mage

    [Request] Help with shop...

    first make sure u have put the items in add shop offer in count 1 and take this shop.lua use it -- ### CONFIG ### -- message send to player by script "type" (types you can check in "global.lua") SHOP_MSG_TYPE = 19 -- time (in seconds) between connections to SQL database by shop script...
  13. Blorin Mage

    Helper Gets GoD on my new rl map!

    i can tell you how to let his deadhuman appears but i dont know that war system xD 1)go to creaturescripts\scripts 2)delete playerdeath.lua 3)go to creaturescripts.xml 4)delete <event type="death" name="PlayerDeath" event="script" value="playerdeath.lua"/>
  14. Blorin Mage

    Bug when using Potions.

    i already posted it in my script but you should edit your sources lol
  15. Blorin Mage

    NPC - Exchange item for Premium Points

    local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local t = {} local item = 12406 -- item id local count = 1 -- count of itemID local points = 10 -- amount of premium points function onCreatureAppear(cid)...
  16. Blorin Mage

    NPC Change Items

    say the items which player must have to change to get a item from npc
  17. Blorin Mage

    player broadcast talkaction request! rep+ for help

    try this didnt test --- Config --- local levelReq = 100 -- minimum level requirement local basePrice = 1 -- Base price, will be multiplied by the player's level. local blocked = {'.net','.com','.org','www.','zapto','.zapto','no-','-ip'} local exhaustionInSeconds = 1 local a =...
  18. Blorin Mage

    NPC to check level and teleport

    travel.lualocal keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function onCreatureDisappear(cid)...
  19. Blorin Mage

    Searching for golden nugget npc, or lever system!

    say the items you wana sell for nuggets with it's id and for how many nuggets for each 1 item
Back
Top