Signup Now
Page 1 of 4 123 ... LastLast
Results 1 to 10 of 39
  1. #1
    Wind Powered
    Join Date
    Jan 2015
    Posts
    19
    Reputation
    10
    Rep Power
    0

    Wink Conjure New Summons

    Could someone create a persistent that conjure the new summons for each 30 min?
    It would be great!
    Last edited by Bobycool; 07-25-2017 at 04:19 PM.

  2. #2
    Free User
    Join Date
    Oct 2016
    Posts
    47
    Reputation
    10
    Rep Power
    0
    yep need this also :P

  3. #3
    Free User
    Join Date
    Mar 2016
    Posts
    183
    Reputation
    10
    Rep Power
    17
    me to for ek

  4. #4
    Wind Powered
    Join Date
    Jan 2015
    Posts
    19
    Reputation
    10
    Rep Power
    0
    I get it, but I´m not sure about the time

    auto(18000000)
    cast('utevo gran res eq')
    Last edited by Bobycool; 07-25-2017 at 06:20 PM.

  5. #5
    Free User
    Join Date
    Apr 2017
    Posts
    2
    Reputation
    10
    Rep Power
    0
    anybody can confirm this is correct time?

  6. #6
    Free User
    Join Date
    Oct 2016
    Posts
    47
    Reputation
    10
    Rep Power
    0
    Quote Originally Posted by Bobycool View Post
    I get it, but I´m not sure about the time
    1 second = 100 right? if yes then 180000 but im not sure

  7. #7
    Free User Cisco's Avatar
    Join Date
    Aug 2014
    Location
    Brazil
    Posts
    1,424
    Reputation
    119
    Rep Power
    23
    Quote Originally Posted by Bobycool View Post
    Could someone create a persistent that conjure the new summons for each 30 min?
    It would be great!
    Quote Originally Posted by olejek View Post
    yep need this also :P
    Quote Originally Posted by saska View Post
    me to for ek
    Quote Originally Posted by Bobycool View Post
    I get it, but I´m not sure about the time
    Quote Originally Posted by Bruhitzcrusty View Post
    anybody can confirm this is correct time?
    Quote Originally Posted by olejek View Post
    1 second = 100 right? if yes then 180000 but im not sure
    test...

    Before Lucas put the new spells...

    Check every 15 minutes

    auto(900*1000) --every 15 minutes

    local UseSummon = true

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

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

    if $connected then
    if UseSummon and $level >= 200 then
    cast(SUMMON())
    wait(300,500)
    end
    end


    After Lucas put the new spells...

    auto(3000)

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

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

    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

  8. #8
    Free User downloadkct's Avatar
    Join Date
    Dec 2013
    Location
    Rio de Janeiro
    Posts
    1,166
    Reputation
    25
    Rep Power
    23
    Quote Originally Posted by Cisco View Post
    test...

    Before Lucas put the new spells...

    Check every 15 minutes

    auto(900*1000) --every 15 minutes

    local UseSummon = true

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

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

    if $connected then
    if UseSummon and $level >= 200 then
    cast(SUMMON())
    wait(300,500)
    end
    end
    Working great as usual, i just added a randomizer to the timer because no human can keep summoning at the exact 900000ms hehe
    Old 'n Proud Neobot-Elfbot and blackd user

  9. #9
    Free User Cisco's Avatar
    Join Date
    Aug 2014
    Location
    Brazil
    Posts
    1,424
    Reputation
    119
    Rep Power
    23
    Quote Originally Posted by downloadkct View Post
    @Cisco i made a simpler version of your first script, if you dont mind. This way it will summon only if ur inside the resp and not as soon as you load your script plus a randomizer on timer

    Spawn: change it to your hunting section
    Yes, I put this option in the final version when Lucas refreshes the spells. Second persistent.

    I'd rather put it a little differently, because if in the script you have more than hunt section...

    auto(5000)

    local UseSummon = true
    local Sections = {'Hunt'} --{'Hunt'} or {'Floor 1', 'Floor 2'}

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

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

    if $connected then
    if UseSummon then
    if table.find(Sections, $wptsection) then
    if $level >= 200 then
    cast(SUMMON())
    wait(300,500)
    end
    end
    end
    end

  10. #10
    Free User
    Join Date
    Jun 2015
    Posts
    14
    Reputation
    10
    Rep Power
    0
    I configured the scripts, set to "P" and the script did not work. Why?

 

 

Posting Permissions

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