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

    Lua Private Messages Spy for GM

    Hello guys. Is possible made a way to spy what players are talking in private channel? Like a function that copy private messages and send to gm private messages chat? Thanks.
  2. Engradiel

    C++ TFS 1.5 7.72 Downgrade Nekiro - sendChannelMessage Not Working

    It's possible send message with yourself not in channel?
  3. Engradiel

    C++ sendPrivateMessage help

    Yes but the player needs to be in char to send message. I wan't that send message with not in channel
  4. Engradiel

    C++ How I close chat message?

    to open I use: player->sendChannelMessage(player->getName(), "Test msg", TALKTYPE_CHANNEL_R1, 26); But how to close channel id 26 board? g_game.playerCloseChannel(player->getID(), 26); Not working
  5. Engradiel

    Lua How I do that?

    I did this: in modules.lua: function ShopModule:callbackOnSell(cid, itemid, subType, amount, ignoreEquipped, _) sendChannelMessage(41, TALKTYPE_CHANNEL_O, ""..player:getName().." ["..player:getLevel().."] selled "..amount.."x "..ItemType(itemid):getName().." for "..amount *...
  6. Engradiel

    Lua How I do that?

    Haha. Sorry I am doing it of a wrong way. I am creating a log in GM chat that say all information of things in server. So when player buy something and npc, or sell or say with npc some msg is sended, like this: Bot Quatro [279] selled 14x blue crystal splinter for 5600 gold on Loot Seller II...
  7. Engradiel

    Lua How I do that?

    -- Custom message matching callback function for requesting trade messages. function ShopModule.messageMatcher(keywords, message) for i, word in pairs(keywords) do if type(word) == "string" then if string.find(message, word) and not string.find(message...
  8. Engradiel

    Outfit images 12.90 for website

    Where are the lastes outfits and items 13.3?
  9. Engradiel

    PHP Filter a caracter in string in Gesior

    Hello guys. I am editing a guilds.php page that I can filter the guilds by name... But I don't know how command use to filter guilds by name. $guilds_list = new DatabaseList('Guild'); $guilds_list->addOrder(new SQL_Order(new SQL_Field('name'), SQL_Order::ASC)); How command I use to filter a...
  10. Engradiel

    C++ sendPrivateMessage help

    Yes but for this needed the player has to be in char to msg goes I guess
  11. Engradiel

    C++ sendPrivateMessage help

    I use this in lua and works. But in c++ I don't know how to usi this code: sendChannelMessage(2, TALKTYPE_CHANNEL_O, param) Can some one help me? I want to send message to all players in specific channel
  12. Engradiel

    Lua setmonster immunities in game

    Can you help me to do that fellow. I can you help in something you can't. https://github.com/AlissonRenna/order-global This is my old source version
  13. Engradiel

    Lua setmonster immunities in game

    I need to create a function for this, because don't have
  14. Engradiel

    Lua setmonster immunities in game

    Hello friends, I wanted to know if it is possible to change the invisible immunity or walk on fields with the creature already in the game (not in the monsters folder). Example: monster:setImmunity(invisible, 1) monster:setImmunity(walkonfire, 1) Similar to these: monster:setMaxHealth()...
  15. Engradiel

    Solved Free sloot in depot not counting items

    Solved bro. Thanks for any help. depotlocker.cpp DepotLocker::DepotLocker(uint16_t type) : Container(type, 2), depotId(0) {}
  16. Engradiel

    Solved Free sloot in depot not counting items

    How I remove this free slots and let just 2 slots?
  17. Engradiel

    Lua Moveto: free sloot inventory

    Very nice, work perfectly. I not knew how to use cloneitem and additemex with slot position
  18. Engradiel

    C++ SetCapacity directly in source tfs 1.3

    Thank bro. Works fine!
  19. Engradiel

    Lua Moveto: free sloot inventory

    Hello guys. I want to know if is possible use this function item:moveTo({x=0, y=0, z=0}) to move a item to a free slot in inventory. I tried some things but now work. I use items habilities so to change this item hability I need to remove it from inventory changed the habilities and back to...
  20. Engradiel

    C++ SetCapacity directly in source tfs 1.3

    I have items hability in source So need to add attribute that set capacity.
Back
Top