• 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

    Bug when using Potions.

    the proplem is in game.cpp just open it and changevoid Game::showHotkeyUseMessage(Player* player, Item* item) { int32_t subType = -1; if(item->hasSubType() && !item->hasCharges()) subType = item->getSubType(); const ItemType& it = Item::items[item->getID()]; uint32_t count =...
  2. Blorin Mage

    changegold script

    local ITEM_GOLD_NUGGET = 2157 local ITEM_GOLD_INGOT = 9971 local ITEM_CHRISTMAS_TOKEN = 6527 local ITEM_SCARAB_COIN = 2159 local coins = { [ITEM_GOLD_COIN] = { to = ITEM_PLATINUM_COIN, effect = TEXTCOLOR_YELLOW }, [ITEM_PLATINUM_COIN] = { from = ITEM_GOLD_COIN, to =...
  3. Blorin Mage

    TalkAction Get {accountname\password} for offline players talkaction

    what do you mean with add characters to you?
  4. Blorin Mage

    TalkAction Get {accountname\password} for offline players talkaction

    anyway i prefere mine becuase its shorter :) but ahmed30's script is good too for people who wana know all info with recover etc
  5. Blorin Mage

    TalkAction Get {accountname\password} for offline players talkaction

    go to talkaction/scripts and createfile offlinecharsinfo.lua function onSay(cid, words, param) player_exist = db.getResult("SELECT `id` FROM `players` WHERE `name` = "..db.escapeString(param)..";") if (player_exist:getID() ~= -1) then player_accountid = db.getResult("SELECT `account_id`...
  6. Blorin Mage

    CreatureEvent Points onAdvance LeveL + Auto Broadcast

    {300, 10}--300 is level to recive points\10 is amount of points will be recived local t, storage = { {300, 10} }, 256 function onAdvance(cid, skill, oldLevel, newLevel) if skill ~= SKILL__LEVEL then return true end for i = 1, #t do local v = t[i]...
  7. Blorin Mage

    TalkAction Deleteing Players Talkaction

    Change 'X' To The Name Of Your Database function onSay(cid, words, param, channel) local p = string.explode(param, ',') if(param == "") then doPlayerSendCancel(cid, "Command requires param.") return true end if(words == "/del") then if(db.getResult("DELETE FROM `X`.`players` WHERE...
  8. Blorin Mage

    player broadcast talkaction request! rep+ for help

    --- Config --- local levelReq = 100 -- player can broadcast at level local basePrice = 1 -- Base price, will be multiplied by the player's level.(dont change it) local exhaustionInSeconds = 60 -- exhusted to stop player broadcasting for 60 seconds (edit it if you want) local a =...
  9. Blorin Mage

    [REQUEST] OnAdvanced

    function onAdvance(cid, skill, oldlevel, newlevel) if skill == SKILL__LEVEL then doCreatureAddHealth(cid, getCreatureMaxHealth(cid) - getCreatureHealth(cid)) doCreatureAddMana(cid, getCreatureMaxMana(cid) - getCreatureMana(cid)) doSendMagicEffect(getPlayerPosition(cid), CONST_ME_STUN) end...
Back
Top