• 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!

RevScripts Change the Gold Rate for Monsters in TFS 1.5 Without Modifying XML Files

Darkenes

Member
Joined
Jan 5, 2014
Messages
21
Solutions
1
Reaction score
5
any idea to make a script or where to start editing in c++ that will allow me to change the gold rate of all monsters on my TFS 1.5 server globally, without having to modify any XML file. The goal is to apply a new gold rate value centrally and dynamically so that it affects all monsters without editing the XML configuration.
 
all monster should drop the same gold rate? well...
so every monster will drop same amount?
no, I don’t want all monsters to drop the same amount of gold. I want the gold rate to be a global multiplier that affects all monsters proportionally based on their original loot. For example, if a monster usually drops 100 gold and I set the gold rate to 2, it should drop 200 gold instead.
 
no, I don’t want all monsters to drop the same amount of gold. I want the gold rate to be a global multiplier that affects all monsters proportionally based on their original loot. For example, if a monster usually drops 100 gold and I set the gold rate to 2, it should drop 200 gold instead.
oh now i get it. well i dont know if already have some for do it on tfs...
but seems easily to modify it on srcs

edit: after read some about tfs 1.6, i can say that can be done in LUA
your server have this?
LUA:
1.4/data/scripts/eventcallbacks/monster/default_onDropLoot.lua
 
Last edited:
In data/lib/core/container.lua you can change

LUA:
function Container.createLootItem(self, item)

for

LUA:
local currencyModifier = 1.0 -- 100% normal drop rate
function Container.createLootItem(self, item)
    if self:getEmptySlots() == 0 then
        return true
    end

    local itemCount = 0
    local lootRand = getLootRandom()
    local itemType = ItemType(item.itemId)
    
    if lootRand < item.chance then
        if itemType:isStackable() then
            itemCount = lootRand % item.maxCount + 1
        else
            itemCount = 1
        end
    end
    
    if table.contains({2148, 2152, 2160}, itemType:getId()) then
        itemCount = math.floor(itemCount * currencyModifier)
    end

    while itemCount > 0 do
        local count = math.min(ITEM_STACK_SIZE, itemCount)
        
        local subType = count
        if itemType:isFluidContainer() then
            subType = math.max(0, item.subType)
        end
        
        local tmpItem = Game.createItem(item.itemId, subType)
        if not tmpItem then
            return false
        end

        if tmpItem:isContainer() then
            for i = 1, #item.childLoot do
                if not tmpItem:createLootItem(item.childLoot[i]) then
                    tmpItem:remove()
                    return false
                end
            end

            if #item.childLoot > 0 and tmpItem:getSize() == 0 then
                tmpItem:remove()
                return true
            end
        end

        if item.subType ~= -1 then
            tmpItem:setAttribute(ITEM_ATTRIBUTE_CHARGES, item.subType)
        end

        if item.actionId ~= -1 then
            tmpItem:setActionId(item.actionId)
        end

        if item.text and item.text ~= "" then
            tmpItem:setText(item.text)
        end

        local ret = self:addItemEx(tmpItem)
        if ret ~= RETURNVALUE_NOERROR then
            tmpItem:remove()
        end

        itemCount = itemCount - count
        return tmpItem
    end
    return true
end
 
Back
Top