Донат умноженный на 4

Как сделать x4 донат? нужно чтобы когда человек пополняет 1 рубль, он получал 4 рубля

local note = "x4 к пополнению"
hook.Add( "IGS.IncomingMessage", "IGS x4", function( d, method )
    if method ~= "payment.UpdateStatus" or d.method ~= "pay" then return end
    local targ = player.GetBySteamID64( d.SteamID64 )
    local amount = IGS.RealPrice( d.orderSum )

    if targ then
        targ:AddIGSFunds( amount*3, note, function( )
            if !IsValid( targ ) then return end
            IGS.Notify( targ, "Задействован бонус '" .. note .. "'!" )
        end )
    else
        IGS.Transaction( d.SteamID64, amount*3, note )
    end
end )

а куда это кидать? в autorun/server?

В серверную часть