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

    Block players thrown items on ground

    any other tiles you can walk on but not throw items on:p?
  2. Cykotitan

    Windows Crash [Picture]

    get linux or gdb, we're not wizards
  3. Cykotitan

    People cant make characters. MODERN ACC

    i think you need them
  4. Cykotitan

    Teleport won't work!

    start by adding debug code to teleport.cpp:p
  5. Cykotitan

    Lua How to make npc check if item has an action ID

    local key = getPlayerItemById(cid, true, first.item) if key.actionid == 2504 and doRemoveItem(key.uid) then won't work if player has 2 keys of same id and the first one found has wrong actionid :p
  6. Cykotitan

    Solved "Use hammer" on object to "set storage"

    local key = 123 function onUse(cid, item, fromPosition, itemEx, toPosition) if itemEx.itemid == 1429 then if getCreatureStorage(cid, key) == -1 then doCreatureSetStorage(cid, key, 1) doCreatureSay(cid, 'Success', TALKTYPE_ORANGE_1) else doCreatureSay(cid, 'Failure'...
  7. Cykotitan

    People cant make characters. MODERN ACC

    check character samples
  8. Cykotitan

    Lua Item Required to Cast Spell

    local id = getPlayerSlotItem(cid, CONST_SLOT_LEFT).itemid as well
  9. Cykotitan

    Talkaction to send a item to someone's depot or backpack?

    getPlayerByNameWildcard
  10. Cykotitan

    helping editing my web making links

    depends on aac, for gesior it's layout.php and for modern it's index.tpl
  11. Cykotitan

    Spells

    post your spellbook or !spell talkaction script
  12. Cykotitan

    How to "getpos"

    use frompos or topos:p:p instead of getTileItemById(posa, bigrock).uid you can use item.uid
  13. Cykotitan

    Isp blocked ports 7171

    if you can't forward it in the router, you'll have to use a different port? :p it's an unusual port to block
  14. Cykotitan

    Lua Website Modern Acc!

    see for yourself:p:p:p
  15. Cykotitan

    Lua simple "and" problem

    remove all and, and close the if/function with ends
  16. Cykotitan

    Lua Website Modern Acc!

    home_model.php public function getComments($id) { require("config.php"); $this->load->database(); $this->load->helper("url"); $page = $this->uri->segment(4); $page = (empty($page)) ? 0 : $page; return $this->db->query("SELECT `comments`.`id`, `body`, `time`, `author`...
  17. Cykotitan

    Lua Website Modern Acc!

    it's not related to the other problem, it simply shows that notice when you're not logged in
  18. Cykotitan

    Close Theard!

    bool ChatChannel::addUser(Player* player) { if(m_users.find(player->getID()) != m_users.end()) return false; ChatChannel* channel = g_chat.getChannel(player, m_id); if(!channel) { #ifdef __DEBUG_CHAT__ std::cout << "ChatChannel::addUser - failed retrieving channel." << std::endl...
  19. Cykotitan

    What are you doing right now?

    failing miserably to remove GPU bottleneck also http://3.imgland.net/AkJO-Rn.png
Back
Top