Signup Now
Page 1 of 3 123 LastLast
Results 1 to 10 of 22
  1. #1
    Moderator Dehan's Avatar
    Join Date
    Dec 2013
    Posts
    1,404
    Reputation
    315
    Rep Power
    26

    Receptacle Filler (The Repenters - Cultivated Magic Task)

    Receptacle Filler
    (The Repenters - Cultivated Magic Task)


    Description:
    It will fill the receptacle on the right order. This script is used to complete the Cultivated Magic Task - The Repenters Quest

    Configuration:
    Make sure you have all the actions enabled as a persistent hotkey.

    Code:

    1# Setting the Receptacle Collecting Order
    init start 
    EmptyReceptacle = 19108
    FilledReceptacle = 19109
    FURY = true
    NATURE = false
    FIRE = false
    WATER = false
    init end
    auto(100)
    foreach newmessage n do
    if n.type == MSG_RAID then
    if n.content == 'You catch a sparkle of wild fury magic and capture it inside the receptacle.' then
    FURY = false
    NATURE = true
    FIRE = false
    WATER = false
    elseif n.content == 'You cut off a chunk of wild nature magic and capture it inside the receptacle.' then
    FURY = false
    NATURE = false
    FIRE = true
    WATER = false
    elseif n.content == 'You grab a piece of wild fire magic and capture it inside the receptacle.' then
    FURY = false
    NATURE = false
    FIRE = false
    WATER = true
    elseif n.content == 'You soak up a bit of wild water magic and capture it inside the receptacle.' then
    FURY = false
    NATURE = false
    FIRE = false
    WATER = false
    elseif n.content == 'The wild fire magic neutralises the cultivated magic in the receptacle. It is imperative follow the right order.' or n.content == 'The wild fury magic neutralises the cultivated magic in the receptacle. It is imperative follow the right order.' or n.content == 'The wild nature magic neutralises the cultivated magic in the receptacle. It is imperative follow the right order.' or n.content == 'The wild water magic neutralises the cultivated magic in the receptacle. It is imperative follow the right order.' then
    FURY = true
    NATURE = false
    FIRE = false
    WATER = false
    end
    end
    end
    if itemcount(FilledReceptacle) > 0 then
    FURY = false
    NATURE = false
    FIRE = false
    WATER = false
    end

    if $posz ~= 13 then
    FURY = true
    NATURE = false
    FIRE = false
    WATER = false
    end


    2# Checking for Magics around you
    auto(1000)
    FURYcount = 0
    NATUREcount = 0
    FIREcount = 0
    WATERcount = 0
    foreach creature m 'ms' do
    if m.isreachable then
    if m.name == 'Wild Fury Magic' then
    FURYcount = FURYcount + 1
    elseif m.name == 'Wild Nature Magic' then
    NATUREcount = NATUREcount + 1
    elseif m.name == 'Wild Fire Magic' then
    FIREcount = FIREcount + 1
    elseif m.name == 'Wild Water Magic' then
    WATERcount = WATERcount + 1
    end
    end
    end
    if $posz == 13 and $posy < 31583 then
    if (FURY and FURYcount > 0) or (NATURE and NATUREcount > 0) or (FIRE and FIREcount > 0) or (WATER and WATERcount > 0) then
    setcavebot('no')
    wait(5000)
    setcavebot('yes')
    wait(5000)
    else
    setcavebot('yes')
    end
    end


    3# Catching Them
    auto(100)
    foreach creature m 'ms' do
    if m.isreachable then
    if FURY and m.name == 'Wild Fury Magic' then
    pausewalking(5000)
    reachlocation(m.posx,m.posy,m.posz,1)
    useitemon(EmptyReceptacle,0,ground(m.posx,m.posy,m.posz))
    waitping(2,3)
    pausewalking(0)
    elseif NATURE and m.name == 'Wild Nature Magic' then
    pausewalking(5000)
    reachlocation(m.posx,m.posy,m.posz,1)
    useitemon(EmptyReceptacle,0,ground(m.posx,m.posy,m.posz))
    waitping(2,3)
    pausewalking(0)
    elseif FIRE and m.name == 'Wild Fire Magic' then
    pausewalking(5000)
    reachlocation(m.posx,m.posy,m.posz,1)
    useitemon(EmptyReceptacle,0,ground(m.posx,m.posy,m.posz))
    waitping(2,3)
    pausewalking(0)
    elseif WATER and m.name == 'Wild Water Magic' then
    pausewalking(5000)
    reachlocation(m.posx,m.posy,m.posz,1)
    useitemon(EmptyReceptacle,0,ground(m.posx,m.posy,m.posz))
    waitping(2,3)
    pausewalking(0)
    end
    end
    end
    Last edited by Dehan; 11-07-2014 at 11:24 PM.

    Level Latest Scripts by Dehan
    250+
    [EK & ED & MS & RP] [Navigation] Prison -1
    200+
    [EK & ED & MS] [Navigation] Asura Palace
    200+
    [EK & ED] [Navigation] Lower Roshamuul Softcore

  2. #2
    Moderator Dehan's Avatar
    Join Date
    Dec 2013
    Posts
    1,404
    Reputation
    315
    Rep Power
    26
    @zbajgi This is not a request thread.

    Level Latest Scripts by Dehan
    250+
    [EK & ED & MS & RP] [Navigation] Prison -1
    200+
    [EK & ED & MS] [Navigation] Asura Palace
    200+
    [EK & ED] [Navigation] Lower Roshamuul Softcore

  3. #3
    Free User
    Join Date
    May 2014
    Posts
    60
    Reputation
    10
    Rep Power
    20
    Just tried your script and I LOVE IT. I used self made script before but your is much faster, thank you!

  4. #4
    Free User Kostek's Avatar
    Join Date
    Dec 2013
    Posts
    706
    Reputation
    77
    Rep Power
    22
    I just made a script for the task, it makes 6k on each char with a char relogger and your action works perfect. If I released the script on the forums, you wouldn't mind your action being there?

  5. #5
    Moderator Dehan's Avatar
    Join Date
    Dec 2013
    Posts
    1,404
    Reputation
    315
    Rep Power
    26
    @Kostek Feel free to use it! Just leave me credits
    @Paskudek you're welcome!

    Level Latest Scripts by Dehan
    250+
    [EK & ED & MS & RP] [Navigation] Prison -1
    200+
    [EK & ED & MS] [Navigation] Asura Palace
    200+
    [EK & ED] [Navigation] Lower Roshamuul Softcore

  6. #6
    Free User KrusT's Avatar
    Join Date
    Jul 2014
    Posts
    332
    Reputation
    15
    Rep Power
    20
    Quote Originally Posted by Kostek View Post
    I just made a script for the task, it makes 6k on each char with a char relogger and your action works perfect. If I released the script on the forums, you wouldn't mind your action being there?
    Kostek, releases for all, you gonna help alot people with this.
    @topic, i gonna try today

  7. #7
    Free User mandark's Avatar
    Join Date
    Mar 2014
    Posts
    78
    Reputation
    17
    Rep Power
    21
    @Kostek if u release i'd try instantly! hahaa =DD

  8. #8
    Free User Kostek's Avatar
    Join Date
    Dec 2013
    Posts
    706
    Reputation
    77
    Rep Power
    22
    I just need to test the relogger with more chars I only tried with 3, so I need to create an account with 20 chars and see if it works properly before I share it. I also wouldn't want people using it on my server.

  9. #9
    Moderator Raphael's Avatar
    Join Date
    Dec 2013
    Location
    raphseller.com
    Posts
    2,441
    Reputation
    309
    Rep Power
    28
    Quote Originally Posted by Kostek View Post
    I just need to test the relogger with more chars I only tried with 3, so I need to create an account with 20 chars and see if it works properly before I share it. I also wouldn't want people using it on my server.
    If you don't want people using it on your server, don't release it.

  10. #10
    Free User Kostek's Avatar
    Join Date
    Dec 2013
    Posts
    706
    Reputation
    77
    Rep Power
    22
    Quote Originally Posted by Raphael View Post
    If you don't want people using it on your server, don't release it.
    Yeh, I haven't made a proper decision yet. I'll just see how it goes.
    @mandark @KrusT
    https://forums.tibiawindbot.com/show...l=1#post119589
    test it out
    Last edited by Kostek; 11-07-2014 at 08:03 PM.

 

 

Tags for this Thread

Posting Permissions

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