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

    TFS 0.X Auction system (Website Tradeoff) + Upgrade system (Refin Items)

    -- | set atk,def,armor | print("buyed_item: " .. buyed_item) local buyed_item_uid = buyed_item.uid buyed_item: 70002
  2. samandriel

    TFS 0.X Auction system (Website Tradeoff) + Upgrade system (Refin Items)

    I don't know --- Like this: -- | set atk,def,armor | local buyed_item_uid = buyed_item.uid local buyitem_atk = getItemAttack(buyed_item_uid) if buyitem_atk > 0 then setItemAttack(buyed_item_uid, buyitem_atk +...
  3. samandriel

    TFS 0.X Auction system (Website Tradeoff) + Upgrade system (Refin Items)

    I've tried this: local buyitem_atk = getItemAttack(buyed_item) if buyitem_atk > 0 then setItemAttack(buyed_item, buyitem_atk + (upgraded_level * 3)) end local buyitem_def = getItemDefense(buyed_item)...
  4. samandriel

    TFS 0.X How to remove the item from arrow slot

    test with a demon helmet on arrow slot and other on head 1617330231 i've found the solution here: https://otland.net/threads/how-to-make-a-npc-remove-all-items-from-the-player.264787/#post-2559419
  5. samandriel

    TFS 0.X How to remove the item from arrow slot

    0.4: Fir3element/3777 (https://github.com/Fir3element/3777)
  6. samandriel

    TFS 0.X How to remove the item from arrow slot

    Still removing from head instead of arrow
  7. samandriel

    TFS 0.X How to remove the item from arrow slot

    that's how it was
  8. samandriel

    TFS 0.X How to remove the item from arrow slot

    The item is there, i just have it in head and on arrow slot whole script: --[[ Offline player to player item trader (Auction System) by vDk Script version: 1.2a [ -- FIXED CLONE ITEMS BUG -- ] ]]-- local config = { levelRequiredToAdd = 5, SendOffersOnlyInPZ = true, blocked_items...
  9. samandriel

    TFS 0.X How to remove the item from arrow slot

    [22:14:25.375] [Error - TalkAction Interface] [22:14:25.375] data/talkactions/scripts/auctionsystem.lua:onSay [22:14:25.375] Description: [22:14:25.375] data/talkactions/scripts/auctionsystem.lua:147: attempt to index local 'item' (a number value) [22:14:25.375] stack traceback: [22:14:25.375]...
  10. samandriel

    TFS 0.X Auction system (Website Tradeoff) + Upgrade system (Refin Items)

    By looking a script from @Mummrik I could manage to make the item name works Now its setting the rigth name when item is upgraded, but i still need to set the atk,def,armor atributes and i don't know how to do :( Full talkaction: --[[ Offline player to player item trader (Auction System) by...
  11. samandriel

    TFS 0.X How to remove the item from arrow slot

    I tried: local item = getPlayerSlotItem(cid, CONST_SLOT_AMMO).itemid local Item_Count = getPlayerSlotItem(cid, CONST_SLOT_AMMO).type if(tonumber(Item_Count) < 1) then Item_Count = 1 end doPlayerRemoveItem(cid, item, itemcount) But it is removing a random...
  12. samandriel

    TFS 0.X Auction system (Website Tradeoff) + Upgrade system (Refin Items)

    Somehow i have to bring the upgrade part from upgrade system: if chance * 100 > math.random(1, 10000) then doPlayerSendTextMessage(uid, MESSAGE_STATUS_CONSOLE_ORANGE, self.message.success:format(self.item.name, (self.completeNameLv[self.item.level + 1]))) if (self.item.level...
  13. samandriel

    TFS 0.X Auction system (Website Tradeoff) + Upgrade system (Refin Items)

    Auction house? Idk what is it... What i want to do is to make possible in auction talkaction... There is no market in my server, i'm using 8.60 version
  14. samandriel

    TFS 0.X Auction system (Website Tradeoff) + Upgrade system (Refin Items)

    Both systems are working... Upgrade and Auction What i'm asking for help to someone more experient is: Make possible to buy/sell upgraded items in auction system...
  15. samandriel

    TFS 0.X Auction system (Website Tradeoff) + Upgrade system (Refin Items)

    I have this upgrade system: /lib/upgradesystem.lua --PERFECT UPGRADE SYSTEM UpgradeHandler = { nameLv = { [1] = "[R]", [2] = "[G]", [3] = "[B]", [4] = "[W]", [5] = "[D]", }, completeNameLv = { [1] = "red", [2] =...
  16. samandriel

    Open server from my computer

    It always says closed port I tried to use meu global IP and my no-ip Ports says 'Inacessível' - The only way it shows 'Aberta' Is putting 192.168.15.2 in my config.lua ip = "192.168.15.2" My friends can now login on their accounts, but when they try to select the char and login it not work...
  17. samandriel

    Open server from my computer

    why? should i open 7171 and 7172? by using testeportas.com.br it shows: 'Inacessível' to 7171 and 'Aberta' to 8080 but i made exacly the same config on moldem to open both :(
Back
Top