Signup Now
Results 1 to 2 of 2
  1. #1
    Free User
    Join Date
    May 2016
    Posts
    43
    Reputation
    10
    Rep Power
    0

    Healing friends whit ihs or uhs

    Whit the next persistent you will heal you friend when you are on team hunt if you are ms or rp, just go to persistent add new script and copy and paste and change the settings.

     init start
    -- VERSION 1.0.0 --

    local Players = {"Bubble", "Mirade"} -- Here add the name of your friends :)
    local Rune = "Intense Healing Rune" -- Change the rune for heal you friend.
    local MoveSpeed = 9
    local healHPPC = 10 --- Change the % for heal you friend

    -- DO NOT EDIT BELOW --

    if not ($fasthotkeys or isbinded({Rune, 'crosshair'})) then
    printerrorf('Rune "%s" is not set on Tibia hotkeys, please change settings and restart script', Rune)
    end
    setsetting('Settings/ClickWaitTime', '10 to 20 ms')
    setsetting('Settings/MouseMoveSpeed', tostring(MoveSpeed))
    init end
    table.lower(Players)

    auto(100)
    foreach creature m 'ps' do
    if table.find(Players,m.name:lower()) and m.hppc < healHPPC then
    useoncreature(Rune, m.name:lower())
    wait(300,600)
    end
    end

  2. #2
    Wind Powered
    Join Date
    Jan 2015
    Posts
    19
    Reputation
    10
    Rep Power
    0
    Amazing

 

 

Posting Permissions

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