Signup Now
Page 3 of 4 FirstFirst 1234 LastLast
Results 21 to 30 of 39
  1. #21
    Free User
    Join Date
    Feb 2016
    Posts
    6
    Reputation
    10
    Rep Power
    0
    Quote Originally Posted by downloadkct View Post
    Working great as usual, i just added a randomizer to the timer because no human can keep summoning at the exact 900000ms hehe


    I would like to know how I do Script pro just by the character to make the Summon inside the basement he will hunt, because he does when he is in the DP or buying potions

  2. #22
    Free User
    Join Date
    Jun 2016
    Posts
    9
    Reputation
    10
    Rep Power
    0
    How is it working location? What to write there? The name of tab? or the name on label? Cuz its not working.. would like to use it only on spawn.
    So we should use 2 persistents in same time?

    I would like to use randomiser? Can I add something like this into auto()?

    Code:
    local waitSpell = {90, 91} -- random wait 
    waitSpell = math.random(waitSpell[1], waitSpell[2])
    
    auto(waitSpell * 1000)
    Last edited by BrutalnyWiktor; 08-04-2017 at 06:13 PM.

  3. #23
    Free User Cisco's Avatar
    Join Date
    Aug 2014
    Location
    Brazil
    Posts
    1,424
    Reputation
    119
    Rep Power
    23
    Quote Originally Posted by BrutalnyWiktor View Post
    How is it working location? What to write there? The name of tab? or the name on label? Cuz its not working.. would like to use it only on spawn.
    So we should use 2 persistents?
    no no, only one persistent, the second...https://forums.tibiawindbot.com/show...l=1#post520680

    only edit:

    local Sections = {"Hunt"} -- {"Hunt"} or {"Floor 1", "Floor 2"} etc...


    example: 1



    auto(3000)

    local UseSummon = true
    local Sections = {"Hunt"}

    --=======================================

    local function SUMMON()
    if $vocshort == 'K' then
    summon = 'utevo gran res eq'
    elseif $vocshort == 'P' then
    summon = 'utevo gran res sac'
    elseif $vocshort == 'S' then
    summon = 'utevo gran res ven'
    elseif $vocshort == 'D' then
    summon = 'utevo gran res dru'
    end
    return summon
    end

    if $connected then
    if UseSummon then
    if table.find(Sections, $wptsection) then
    if cancastspell(SUMMON()) then
    cast(SUMMON())
    end
    end
    end
    end


    example: 2



    auto(3000)

    local UseSummon = true
    local Sections = {"Floor 1", "Floor 2"}

    --=======================================

    local function SUMMON()
    if $vocshort == 'K' then
    summon = 'utevo gran res eq'
    elseif $vocshort == 'P' then
    summon = 'utevo gran res sac'
    elseif $vocshort == 'S' then
    summon = 'utevo gran res ven'
    elseif $vocshort == 'D' then
    summon = 'utevo gran res dru'
    end
    return summon
    end

    if $connected then
    if UseSummon then
    if table.find(Sections, $wptsection) then
    if cancastspell(SUMMON()) then
    cast(SUMMON())
    end
    end
    end
    end

  4. #24
    Free User
    Join Date
    Jun 2016
    Posts
    9
    Reputation
    10
    Rep Power
    0
    Great and fast reply Thank you What do you think about time randomizer?
    Where the script knows to use again spell after 15 min?
    Right now I see casting spell every 3 seconds
    Last edited by BrutalnyWiktor; 08-04-2017 at 06:25 PM.

  5. #25
    Free User Cisco's Avatar
    Join Date
    Aug 2014
    Location
    Brazil
    Posts
    1,424
    Reputation
    119
    Rep Power
    23
    Quote Originally Posted by BrutalnyWiktor View Post
    Great and fast reply Thank you What do you think about time randomizer?
    Where the script knows to use again spell after 15 min?
    Right now I see casting spell every 3 seconds
    You do not need to randomize. If you are in the chosen section and can cast the spell it will use the spell.

  6. #26
    Free User
    Join Date
    Jun 2016
    Posts
    9
    Reputation
    10
    Rep Power
    0
    I set correct name of location in my script, but it don't summon anything. Maybe because to many spells at the same time or walking.. I don't know.

  7. #27
    Free User Cisco's Avatar
    Join Date
    Aug 2014
    Location
    Brazil
    Posts
    1,424
    Reputation
    119
    Rep Power
    23
    Quote Originally Posted by BrutalnyWiktor View Post
    I set correct name of location in my script, but it don't summon anything. Maybe because to many spells at the same time or walking.. I don't know.
    I used it for several hours and it worked normally. You put the correct name of the section as I showed in the image and you have the amount of mana needed?

  8. #28
    Free User
    Join Date
    Jun 2016
    Posts
    9
    Reputation
    10
    Rep Power
    0
    Yeah, doesnt work for location.. I am using the script without location.. but its kinda sux because he is running with summoner in city..

  9. #29
    Free User Cisco's Avatar
    Join Date
    Aug 2014
    Location
    Brazil
    Posts
    1,424
    Reputation
    119
    Rep Power
    23
    Quote Originally Posted by BrutalnyWiktor View Post
    Yeah, doesnt work for location.. I am using the script without location.. but its kinda sux because he is running with summoner in city..
    That's why I put it to him to use the magic only section that the person chooses. Take photo of your sections and how you put your persistent and paste here for me to see.

  10. #30
    Free User
    Join Date
    Jun 2016
    Posts
    9
    Reputation
    10
    Rep Power
    0
    settings.png
    Check

 

 

Posting Permissions

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