Signup Now
Page 1 of 2 12 LastLast
Results 1 to 10 of 13
  1. #1
    Free User
    Join Date
    Oct 2016
    Posts
    47
    Reputation
    10
    Rep Power
    0

    Summon changing style need help

    Hey i need do sth like that

    If emberwing on screen then change my settings/style to hardcore if not changing back to softcore.
    Can anyuone help me?;p

  2. #2
    Free User Bot life's Avatar
    Join Date
    Apr 2017
    Location
    Sweden
    Posts
    150
    Reputation
    11
    Rep Power
    15
    woow that would be nice
    Master Of Disaster

  3. #3
    Free User Cisco's Avatar
    Join Date
    Aug 2014
    Location
    Brazil
    Posts
    1,424
    Reputation
    119
    Rep Power
    23
    Quote Originally Posted by olejek View Post
    Hey i need do sth like that

    If emberwing on screen then change my settings/style to hardcore if not changing back to softcore.
    Can anyuone help me?;p
    Quote Originally Posted by Bot life View Post
    woow that would be nice
    test...

    auto(1000)

    local CheckSummon = true

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

    local function SUMMON()
    if $vocshort == 'K' then
    summon = 'Skullfrost'
    elseif $vocshort == 'P' then
    summon = 'Emberwing'
    elseif $vocshort == 'S' then
    summon = 'Thundergiant'
    elseif $vocshort == 'D' then
    summon = 'Grovebeast'
    end
    return summon
    end

    if $connected then
    if CheckSummon then
    foreach creature u 'us' do
    while u.name == SUMMON() and u.isownsummon do
    --setuseroption('hunt', 'Hardcore')
    wait(1000)
    end
    --setuseroption('hunt', 'Softcore')
    wait(1000)
    end
    end
    end


    line 24 --> Hardcore, change based your useroption
    line 27 -->> Softcore, change based your useroption

    I just got the bot to locate the summon and check if it's the char. I just could not make the bot check if the char does not have summon, it can be easy to set up more sleepy and tired I'm slow for some things.

    line 22 - 26 -->> Hardcore, Check Summon screen and if your char summon
    line 27 -->> Softcore, Will return if he has no more summon

  4. #4
    Free User
    Join Date
    Oct 2016
    Posts
    47
    Reputation
    10
    Rep Power
    0
    Quote Originally Posted by Cisco View Post
    test...

    auto(1000)

    local CheckSummon = true

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

    local function SUMMON()
    if $vocshort == 'K' then
    summon = 'Skullfrost'
    elseif $vocshort == 'P' then
    summon = 'Emberwing'
    elseif $vocshort == 'S' then
    summon = 'Thundergiant'
    elseif $vocshort == 'D' then
    summon = 'Grovebeast'
    end
    return summon
    end

    if $connected then
    if CheckSummon then
    foreach creature u 'us' do
    while u.name == SUMMON() and u.isownsummon do
    --setuseroption('hunt', 'Hardcore')
    wait(1000)
    end
    --setuseroption('hunt', 'Softcore')
    wait(1000)
    end
    end
    end


    line 24 --> Hardcore, change based your useroption
    line 27 -->> Softcore, change based your useroption

    I just got the bot to locate the summon and check if it's the char. I just could not make the bot check if the char does not have summon, it can be easy to set up more sleepy and tired I'm slow for some things.

    line 22 - 26 -->> Hardcore, Check Summon screen and if your char summon
    line 27 -->> Softcore, Will return if he has no more summon

    Will test it tomorrow and I will go back with feedback soon.
    Thank u

  5. #5
    Free User
    Join Date
    Oct 2016
    Posts
    47
    Reputation
    10
    Rep Power
    0
    Quote Originally Posted by Cisco View Post
    test...

    auto(1000)

    local CheckSummon = true

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

    local function SUMMON()
    if $vocshort == 'K' then
    summon = 'Skullfrost'
    elseif $vocshort == 'P' then
    summon = 'Emberwing'
    elseif $vocshort == 'S' then
    summon = 'Thundergiant'
    elseif $vocshort == 'D' then
    summon = 'Grovebeast'
    end
    return summon
    end

    if $connected then
    if CheckSummon then
    foreach creature u 'us' do
    while u.name == SUMMON() and u.isownsummon do
    --setuseroption('hunt', 'Hardcore')
    wait(1000)
    end
    --setuseroption('hunt', 'Softcore')
    wait(1000)
    end
    end
    end


    line 24 --> Hardcore, change based your useroption
    line 27 -->> Softcore, change based your useroption

    I just got the bot to locate the summon and check if it's the char. I just could not make the bot check if the char does not have summon, it can be easy to set up more sleepy and tired I'm slow for some things.

    line 22 - 26 -->> Hardcore, Check Summon screen and if your char summon
    line 27 -->> Softcore, Will return if he has no more summon
    Not working ;( it is not changing my cavebot/settings
    "type" : "combobox",
    "name" : "style",
    "text" : "Hunting Style: ",
    "items" : ["Softcore", "Hardcore"]
    Could u help ?:P

  6. #6

  7. #7
    Free User
    Join Date
    Oct 2016
    Posts
    47
    Reputation
    10
    Rep Power
    0
    Quote Originally Posted by Cisco View Post
    @olejek

    line 24 -->>
    setuseroption('style', 'Hardcore')


    line 27 -->>
    setuseroption('style', 'Softcore')
    Okey working, but its changing only to hardcore when summon is on the screen. When he disappears script is not going back to softcore
    Last edited by olejek; 08-22-2017 at 04:19 PM.

  8. #8
    Free User
    Join Date
    Oct 2016
    Posts
    47
    Reputation
    10
    Rep Power
    0
    Quote Originally Posted by Cisco View Post
    @olejek

    line 24 -->>
    setuseroption('style', 'Hardcore')


    line 27 -->>
    setuseroption('style', 'Softcore')
    Okey working, but its changing only to hardcore when summon is on the screen. When he disappears script is not going back to softcore

  9. #9
    Free User Cisco's Avatar
    Join Date
    Aug 2014
    Location
    Brazil
    Posts
    1,424
    Reputation
    119
    Rep Power
    23
    @olejek

    test...

    auto(1000)

    local CheckSummon = true

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

    local function SUMMON()
    if $vocshort == 'K' then
    summon = 'Skullfrost'
    elseif $vocshort == 'P' then
    summon = 'Emberwing'
    elseif $vocshort == 'S' then
    summon = 'Thundergiant'
    elseif $vocshort == 'D' then
    summon = 'Grovebeast'
    end
    return summon
    end

    if $connected then
    if CheckSummon then
    foreach creature u 'us' do
    while u.name == SUMMON() and u.isownsummon do
    setuseroption('style', 'Hardcore')
    wait(1000)
    end
    end
    setuseroption('style', 'Softcore')
    wait(1000)
    end
    end

  10. #10
    Free User
    Join Date
    Oct 2016
    Posts
    47
    Reputation
    10
    Rep Power
    0
    Quote Originally Posted by Cisco View Post
    @olejek

    test...

    auto(1000)

    local CheckSummon = true

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

    local function SUMMON()
    if $vocshort == 'K' then
    summon = 'Skullfrost'
    elseif $vocshort == 'P' then
    summon = 'Emberwing'
    elseif $vocshort == 'S' then
    summon = 'Thundergiant'
    elseif $vocshort == 'D' then
    summon = 'Grovebeast'
    end
    return summon
    end

    if $connected then
    if CheckSummon then
    foreach creature u 'us' do
    while u.name == SUMMON() and u.isownsummon do
    setuseroption('style', 'Hardcore')
    wait(1000)
    end
    end
    setuseroption('style', 'Softcore')
    wait(1000)
    end
    end
    working. rep for u++++++

 

 

Posting Permissions

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