Signup Now
Page 20 of 65 FirstFirst ... 10181920212230 ... LastLast
Results 191 to 200 of 647
  1. #191
    Free User
    Join Date
    Jan 2014
    Posts
    77
    Reputation
    11
    Rep Power
    24
    Quote Originally Posted by Raphael View Post
    No I'm not, your previous description is vague. This one works, though.

    init start
    local minLevel = 8
    init end

    auto(100)
    foreach newmessage m do
    if m.type == MSG_PVT and m.level >= minLevel then
    beep()
    end
    end
    Thx thx

  2. #192
    Free User jokke's Avatar
    Join Date
    Jan 2014
    Posts
    2
    Reputation
    10
    Rep Power
    0
    Hello!

    I would like a script that does an area spell whenerver a creature (enlightened of the cult as an example) goes invisible.
    I've been trying to figure the script out myself but haven't been able to come up with anything that actually works well.
    I think it should be something that waits a while if the monster goes invisible and if it still doesn't see it, will cast an area spell.
    And yes, I've tried the anti-stalker script but it doesn't actually work for this scenario whilst cavebotting,
    because the character will just quickly change the floor when the creature goes invisible.

    Many thanks in advance!

  3. #193
    Free User
    Join Date
    Jan 2014
    Posts
    77
    Reputation
    11
    Rep Power
    24
    hey just a simple one. Alarms when Ping getting over X, would be good if I could decide which soundfile it will play.

  4. #194
    Free User
    Join Date
    Jan 2014
    Posts
    77
    Reputation
    11
    Rep Power
    24
    Hello, im looking for a script that somehow getting warlocks back out from stealth. By using maybe, stoneshower on the last known sqm there was a warlock?

  5. #195
    Moderator Raphael's Avatar
    Join Date
    Dec 2013
    Location
    raphseller.com
    Posts
    2,437
    Reputation
    309
    Rep Power
    31
    Quote Originally Posted by brallan View Post
    hey just a simple one. Alarms when Ping getting over X, would be good if I could decide which soundfile it will play.
    init start
    local pingThreshold = 300
    local alarmFile = 'disconnected.wav'
    init end

    auto(100)
    if $ping > pingThreshold then
    playsound(alarmFile)
    end

  6. #196
    Moderator Raphael's Avatar
    Join Date
    Dec 2013
    Location
    raphseller.com
    Posts
    2,437
    Reputation
    309
    Rep Power
    31
    Quote Originally Posted by jokke View Post
    Hello!

    I would like a script that does an area spell whenerver a creature (enlightened of the cult as an example) goes invisible.
    I've been trying to figure the script out myself but haven't been able to come up with anything that actually works well.
    I think it should be something that waits a while if the monster goes invisible and if it still doesn't see it, will cast an area spell.
    And yes, I've tried the anti-stalker script but it doesn't actually work for this scenario whilst cavebotting,
    because the character will just quickly change the floor when the creature goes invisible.

    Many thanks in advance!
    Quote Originally Posted by brallan View Post
    Hello, im looking for a script that somehow getting warlocks back out from stealth. By using maybe, stoneshower on the last known sqm there was a warlock?
    Trying to figure out a way to work on both of your requests, but I don't think there'll be anything good coming out of it...

  7. #197
    Free User
    Join Date
    Jan 2014
    Posts
    77
    Reputation
    11
    Rep Power
    24
    Quote Originally Posted by Raphael View Post
    init start
    local pingThreshold = 300
    local alarmFile = 'disconnected.wav'
    init end

    auto(100)
    if $ping > pingThreshold then
    playsound(alarmFile)
    end
    Cheers thx

  8. #198
    Free User
    Join Date
    Jan 2014
    Posts
    77
    Reputation
    11
    Rep Power
    24
    When all my bps is getting full im putting all my loot on market for a price noone buy for. And when I want to sell all loot, I simply cancel all the offers on market and all the loot gets into Inbox where I mostly have like 40 pages of loot.

    What im looking for is a script that sorts all the loot (rashid, blue, green etc)from Inbox into Backpacks which I have inside depot.

    Thx in advance

  9. #199
    Free User
    Join Date
    Jan 2014
    Posts
    136
    Reputation
    11
    Rep Power
    24
    Hello man, jakub made this one for me, but what he didnt know about is that the bot spams exura gran mas res if both me and the ek are under certain health.
    He didn't think of the mass res cooldown, that between them u can fit a normal heal on yourself if your health demands it.

    So my question is:
    Could u edit this and add a checker, if mass ress on CD and my health% below sio, and EK low health (below the health so i should sio him) health self. cuz it keeps spamming mass res and im death if i cant fit a heal inbetween.
    would mean the world !

    This is the thread.
    http://forums.tibiawindbot.com/showt...s-Spell-Healer

    quote from his thread:
    Post feedback please also feel free to improve! It lacks checking if enough mana to cast spells. Also could be improved to sio player with least hp.
    Found out LucasLib has massheal and sio functions, but anyway this might be usefull.



    PHP Code:
    init start
    local friends 
    = { 
                    {
    name 'Friend1'hppc 90},
                    {
    name 'Friend2'hppc 30},
    -- 
    you can delete or add friends by copying lines
                    
    }
    local selfhppc 90  -- % of your HP to mas res self (if enough people are in range), if your HPis below will not sio friends.
    local mininrange -- Atleast how many peope has to be in range of mas res to use it (including you only if your HPis below selfhppc)
    -- If 
    theres no action to take it will run SPELL HEALER.
    init end




    auto
    (20,50)


    local inrange 0
    local tosioname 
    nil


    if $hppc <= selfhppc then
        inrange 
    inrange 1
    end


    foreach creature m 'pt' do
        for 
    kv in ipairs(friends) do
            if 
    m.name == v.name and m.hppc <= v.hppc then
                
    if tosioname == nil then
                    tosioname 
    m.name
                end
                
    if m.dist <=3 then
                    inrange 
    inrange 1
                end
            end
        end
    end


    if inrange >= mininrange then
        
    if getsetting('SpellHealer/Enabled') == 'yes' then
            setsetting
    ('SpellHealer/Enabled''no')
        
    end
        
    if cancastspell('Mass Healing'then
            cast
    ('exura gran mas res')
        
    end
        
    return
    end


    if tosioname ~= nil and $hppc >= selfhppc then
        
    if getsetting('SpellHealer/Enabled') == 'yes' then
            setsetting
    ('SpellHealer/Enabled''no')
        
    end
        
    if cancastspell('Heal Friend'then
            cast
    ('exura sio "' .. tosioname)
        
    end
        
    return
    end


    if getsetting('SpellHealer/Enabled') == 'no' then
        setsetting
    ('SpellHealer/Enabled''yes')
    end 

  10. #200
    Free User
    Join Date
    Dec 2013
    Posts
    39
    Reputation
    10
    Rep Power
    0
    A proper fish water elemental hotkey, the ones I've tried stops and wait for it to be possible to fish

 

 

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •