Show Categories
92
0
jlskelin posted Mar 21 '17 at 4:54 pm

Hello i opened a new server called lula ots .This server has more then 40 custom items new spells all unique.Server has been online for a month we are improving evry day update evry week.We got a nee host sonthere should be no lags.All vocation are balanced.if you are interested please come and join lulaots.servegame.com

2.2k
0

Real Global Real Map 7.4

Features

-7.4 Features: No Protection zone on boats and rugs.
-Spells, vocations and spells formula based on Tibia 7.4. There are no Hotkeys!
-War System.
-Cast System.
-Anti Clone
-Task System (Over 50)
-Party Sharing Experience. You can share experience in-party with your friends, and receive 10% bonus experience when activated (! Share).
-No has runes in the Shop. Only cast.
-conjures 2x more than real warmth runes
-Fast Soul regeneration
-Conjure Runes in the backpack. !
-No Wands / Rods, Burst Arrowns based on magic level

-Paladins cast more ammunition
-Mages conjure up more runes
-Damage improved by
-Attack speed improved

-You can buy MF bp (you can remove it if you want): "buy bp mf"
-You can buy bp from LF (you can remove it if you want): "buy bp lf"
-Djinns in ankrahmun (Need Quest)
-Eremo sells amulet of loss

-Bank system.
-Auto-stack items
-Full HP and MP at level up.
-Stone Skin Amulet does not have NPCs, drops only from Warlock or Hydra.

-Real Tibia map: Full real Tibia map, including all NPCs, Port Hope, monsters and quests 100% RL.
-POI quest and all rooms (Custom made by min).
-Demon Oak Quest (Custom made by min).
-Uptime: Very stable. Or Hydra.

1k
0

How Looks commands in game:
!autoloot add, itemId or name
!autoloot remove, itemId or name
!autoloot show
!autoloot clear

Add code to data/global.lua

-- AutoLoot config
    AUTO_LOOT_MAX_ITEMS = 5

    -- Reserved storage
    AUTOLOOT_STORAGE_START = 10000
    AUTOLOOT_STORAGE_END = AUTOLOOT_STORAGE_START + AUTO_LOOT_MAX_ITEMS
-- AutoLoot config end

Add code to talkactions/talkactions.xml

<talkaction words="!autoloot" separator=" " script="autoloot.lua"/>

Make file in talkactions/scripts called autoloot.lua and paste

function onSay(player, words, param)
    local split = param:split(",")

    local action = split[1]
    if action == "add" then
        local item = split[2]:gsub("%s+", "", 1)
        local itemType = ItemType(item)
        if itemType:getId() == 0 then
            itemType = ItemType(tonumber(item))
            if itemType:getId() == 0 then
                player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "There is no item with that id or name.")
                return false
            end
        end

        local itemName = tonumber(split[2]) and itemType:getName() or item
        local size = 0
        for i = AUTOLOOT_STORAGE_START, AUTOLOOT_STORAGE_END do
            local storage = player:getStorageValue(i)
            if size == AUTO_LOOT_MAX_ITEMS then
                player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "The list is full, please remove from the list to make some room.")
                break
            end

            if storage == itemType:getId() then
                player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, itemName .." is already in the list.")
                break
            end

            if storage <= 0 then
                player:setStorageValue(i, itemType:getId())
                player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, itemName .." has been added to the list.")
                break
            end

            size = size + 1
        end
    elseif action == "remove" then
        local item = split[2]:gsub("%s+", "", 1)
        local itemType = ItemType(item)
        if itemType:getId() == 0 then
            itemType = ItemType(tonumber(item))
            if itemType:getId() == 0 then
                player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "There is no item with that id or name.")
                return false
            end
        end

        local itemName = tonumber(split[2]) and itemType:getName() or item
        for i = AUTOLOOT_STORAGE_START, AUTOLOOT_STORAGE_END do
            if player:getStorageValue(i) == itemType:getId() then
                player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, itemName .." has been removed from the list.")
                player:setStorageValue(i, 0)
                return false
            end
        end

        player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, itemName .." was not founded in the list.")
    elseif action == "show" then
        local text = "-- Auto Loot List --\n"
        local count = 1
        for i = AUTOLOOT_STORAGE_START, AUTOLOOT_STORAGE_END do
            local storage = player:getStorageValue(i)
            if storage > 0 then
                text = string.format("%s%d. %s\n", text, count, ItemType(storage):getName())
                count = count + 1
            end
        end

        if text == "" then
            text = "Empty"
        end

        player:showTextDialog(1950, text, false)
    elseif action == "clear" then
        for i = AUTOLOOT_STORAGE_START, AUTOLOOT_STORAGE_END do
            player:setStorageValue(i, 0)
        end

        player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "The autoloot list has been cleared.")
    else
        player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "Use the commands: !autoloot {add, remove, show, clear}")
    end

    return false
end

Add to creaturescripts/creaturescripts.xml

<event type="kill" name="AutoLoot" script="autoloot.lua" />

Create new file in creaturescripts/scripts called autoloot.lua and paste

local function scanContainer(cid, position)
    local player = Player(cid)
    if not player then
        return
    end

    local corpse = Tile(position):getTopDownItem()
    if not corpse then
        return
    end

    if corpse:getType():isCorpse() and corpse:getAttribute(ITEM_ATTRIBUTE_CORPSEOWNER) == cid then
        for a = corpse:getSize() - 1, 0, -1 do
            local containerItem = corpse:getItem(a)
            if containerItem then
                for b = AUTOLOOT_STORAGE_START, AUTOLOOT_STORAGE_END do
                    if player:getStorageValue(b) == containerItem:getId() then
                        containerItem:moveTo(player)
                    end
                end
            end
        end
    end
end

function onKill(player, target)
    if not target:isMonster() then
        return true
    end

    addEvent(scanContainer, 100, player:getId(), target:getPosition())
    return true
end

Go to creaturescripts/scripts/login.lua and save

player:registerEvent("AutoLoot")

138
0

VPN, is a private network that extends across a public network or internet. It enables users to send and receive data across shared or public networks as if their computing devices were directly connected to the private network.

VPNs can provide functionality, security and/or network management benefits to the user. But they can also lead to new issues, and some VPN services, especially "free" ones, can actually violate their users' privacy by logging their usage and making it available without their consent, or make money by selling the user's bandwidth to other users.

1 - Download From Here: https://file1.steganos.com/software/wrappers/cbe/sosintwr.exe

2 - Use One Key

BAC1-C9EB-7C1A-F873-C13B-93D4-310B-F5D4

AFCB-956A-C8C7-1290-4F0D-87F8-71C4-A4EB

F5A7-BAFA-EAA7-4DC5-863F-EB00-DCDE-12B1


101
0

Malware Fighter

is advanced malware removal and browser secure utility that detects and removes infections and users' most concerned online threats, and protects browser from potential malicious behavior in real time. It is combined with the world leading Bitdefender anti-virus engine to deliver a more comprehensive anti-malware and anti-spyware security solution to users.

With the latest engines, IObit Malware Fighter 4 supports the removal of various potential spyware, adware, trojans, keyloggers, bots, worms, and hijackers more deeply and efficiently and it works well in Windows 10.

Download:

Key:

25E94-805CC-F4520-4A684

1k
0

Lofty-tibiabot bot for tibia medivia ots server

First and only bot for tibia medivia server.
Lofty bot is fully undetectable. Bot is written in a completely innovative way provide simulates mouse movements and keyboard press.

Actually there is no other bots for this server becouse they got really high level of security so do not trust other websites and people.

It will never be good as elfbot or other great bots due to the way of working and functioning. Despite this Lofty bot works, maybe not perfect but very good and will work all the time.

Features:
-Healer
-Spell caster
-Alerts
-Monster attacker
-Auto walker
-Full Rune maker
-Auto eater
-Anty idle
-Auto equiper

Updates daily!

3.4k
0

8.6 Full RL Map Server data pack with additions

  • VIPs Islands
  • cast System
  • War System
  • woe
  • Vips items (with Self Id) (Configured and Balanced)
  • NPCs changed
  • Trainer Offline
  • Treiners VIP
  • new Hunts
  • automatic invasions
  • 2 new addons (Soil Guardian and Entrepreneur)
  • And much more!
  • Client 8.60 compatible with addons and edited items


Download Website
Client Sources
Items.xml for new items
outfits.xml for new outfits


Categories
Actions
Hide topic messages
Enable infinite scrolling
All posts under this topic will be deleted ?
Previous
1 ... 567891011 ... 15
Next
Pending draft ... Click to resume editing
Discard draft