Signup Now
Page 12 of 12 FirstFirst ... 2101112
Results 111 to 118 of 118
  1. #111
    Free User Garkstal's Avatar
    Join Date
    Dec 2013
    Location
    www.garkstalscripts.com
    Posts
    795
    Reputation
    124
    Rep Power
    23
    Quote Originally Posted by Patatje View Post
    still waiting bro :P
    Quote Originally Posted by selassie View Post
    Ye waiting to so many ppl on my server want this persistent @Garkstal.
    Omg. Ive forgot to upload it will do it now
    Quote Originally Posted by dutch View Post
    @Garkstal
    Could you edit this script for me?

    All I kinda need is, 20 chars to relog, every 20 or 30 minuts, and that it keeps repeating the cycle, without the character's opening any backpacks at every log in, and it stays online for 15 seconds.
    it is simply to check for a raid.

    I hope it is not to much to ask.

    Regards,
    Dutch
    It is doing it atm.
    http://i.imgur.com/lkWkIMg.png
    ........................Script Name......................
    Profession
    Asura Palace ED + EK
    Characters for sale! | Like Our Facebook! | Sell Tibia Gold

  2. #112
    Free User
    Join Date
    Mar 2016
    Posts
    3
    Reputation
    10
    Rep Power
    0
    It's still working ??

  3. #113
    Free User Garkstal's Avatar
    Join Date
    Dec 2013
    Location
    www.garkstalscripts.com
    Posts
    795
    Reputation
    124
    Rep Power
    23
    Quote Originally Posted by Torimex View Post
    It's still working ??
    It should.
    http://i.imgur.com/lkWkIMg.png
    ........................Script Name......................
    Profession
    Asura Palace ED + EK
    Characters for sale! | Like Our Facebook! | Sell Tibia Gold

  4. #114
    Free User
    Join Date
    Jul 2015
    Posts
    15
    Reputation
    10
    Rep Power
    0
    i'm having problem, he is logging into the account
    but does not log in chars, there appears msg that the account is invalid !!!
    please, help :S

  5. #115
    Free User
    Join Date
    Feb 2014
    Posts
    2
    Reputation
    10
    Rep Power
    0
    where i can download??

  6. #116
    Free User
    Join Date
    Apr 2014
    Location
    Szczecin, Poland
    Posts
    24
    Reputation
    10
    Rep Power
    0
    @Garkstal
    How i add 2+ accounts?

  7. #117
    Free User Whoppa's Avatar
    Join Date
    Feb 2017
    Location
    Jarosław | POLAND
    Posts
    10
    Reputation
    10
    Rep Power
    0
    Quote Originally Posted by Garkstal View Post
    Roshamuul Mouthpiece for a horn taker

    Description
    Taking mouthpieces from a box each 30 minutes - multi account support.

    Configuration
    Logout character next to the quest box. On character you need to have: main backpack and some backpacks inside main backpack. Colour of bps doesnt matter. Example below

    Code

    init start
    -- SCRIPT_VERSION 1.0.1
    local accounts = {
    {accNr = "xxx", pw = "xxxx", charList = {"Aarviane Shintimth", "Amakana Zuan", "Brama Deviellius", "Brauan Slonadeon", "Elva Leata", "Fafas Ceck", "Galivandro Sham", "Gewlyna Nebsoucia", "Hart Andriloor", "Leon Raforyna", "Malafti Quida", "Merion Emon", "Minord Zendan", "Nagol Ytart", "Nathas Agrant", "Niver Thonix", "Paured Miliaron", "Sharami Lavona", "Shathod Kadiriko", "Zafan Javen"}},
    }

    -- DO NOT EDIT ANYTHING BELOW
    local TIME = 0
    local firstRun = false
    local randTime = math.random(1, 20)*1000
    init end


    auto(5000, 20000)
    if ((not firstRun) or ($timems > TIME + randtime + 1000*60*31)) and sstime() > 60*10 then
    local firstChar = true
    for _, ACC in ipairs(accounts) do
    for index, accChar in ipairs(ACC.charList) do

    -- Connect char
    while not $connected do
    connect(ACC.accNr, ACC.pw, accChar)
    wait(1000)
    end

    local bpFound, bpNotFull = false, false
    while windowcount() < 2 do
    if windowcount() > 0 then
    closewindows()
    wait(1000, 1200)
    end

    -- Opening main bp
    local mainbp = itemname($back.id)
    while windowcount() == 0 do
    openitem(0, 'back')
    wait(500, 700)
    end

    -- Opening 2nd container
    for i=1, getcontainer(0).itemcount do
    if itemproperty(getcontainer(0).item[i].id, ITEM_CONTAINER) then
    bpFound = true
    while windowcount() < 2 and windowcount(mainbp) > 0 do
    openitem(getcontainer(0).item[i].id, 0, true)
    wait(1000)
    end
    end
    end
    if not bpFound then
    break
    end
    end

    if bpFound then
    if getcontainer(1).emptycount > 0 then
    bpNotFull = true
    else
    while (true) do
    local isContainerInside = false
    for i=1, getcontainer(1).itemcount do
    if not bpNotFull then
    if itemproperty(getcontainer(1).item[i].id, ITEM_CONTAINER) then
    isContainerInside = true
    openitem(getcontainer(1).item[i].id, 1, false)
    wait(200, 300)
    if getcontainer(1).emptycount > 0 then
    bpNotFull = true
    break
    else
    i = 0
    end
    end
    end
    end
    if bpNotFull or not isContainerInside then
    break
    end
    end
    end
    end

    if not bpFound or not bpNotFull then
    if not bpFound then
    printerror("Character " .. accChar .. " dont have any container inside main bp, removed from the character list.")
    table.remove(ACC.charList, index)
    elseif not bpNotFull then
    printerror("Character " .. accChar .. " used all slots in second container, removed from the character list.")
    table.remove(ACC.charList, index)
    end

    while $connected do
    logout()
    wait(1000)
    end
    press('[ESC]')
    wait(1000, 1500)
    else
    if (math.abs($posx - 33502) + math.abs($posy - 32545)) > 1 then
    reachlocation(33502, 32545, 7)
    wait(500)
    end

    local tempCap, tries = $cap, 0
    while $cap == tempCap and $cap > 1 and tries < 3 do
    useitem(15055, 33502, 32545, 7)
    wait(200, 300)
    tries = tries + 1
    end

    if tempCap ~= $cap then
    increaseamountlooted(20057, 1)
    end

    while itemcount(20057, 0) > 0 and getcontainer(1).emptycount > 0 do
    moveitems(20057, 1, 0, 1)
    wait(500)
    end

    while $connected do
    logout()
    wait(1000)
    end

    press('[ESC]')
    wait(1000, 1500)
    end
    end
    if firstChar then
    TIME, randtime, firstRun = $timems, math.random(1, 20)*1000, true
    firstChar = false
    end
    end
    end
    I can add more than one account to this script?
    I mean :

      local accounts = {
    {accNr = "xxx", pw = "xxxx", charList = {"Aarviane Shintimth", "Amakana Zuan", "Brama Deviellius", "Brauan Slonadeon", "Elva Leata", "Fafas Ceck", "Galivandro Sham", "Gewlyna Nebsoucia", "Hart Andriloor", "Leon Raforyna", "Malafti Quida", "Merion Emon", "Minord Zendan", "Nagol Ytart", "Nathas Agrant", "Niver Thonix", "Paured Miliaron", "Sharami Lavona", "Shathod Kadiriko", "Zafan Javen"}},
    },
    {accNr = "xxx2", pw = "xxxx2", charList = {"Aarviane Shintimth", "Amakana Zuan", "Brama Deviellius", "Brauan Slonadeon", "Elva Leata", "Fafas Ceck", "Galivandro Sham", "Gewlyna Nebsoucia", "Hart Andriloor", "Leon Raforyna", "Malafti Quida", "Merion Emon", "Minord Zendan", "Nagol Ytart", "Nathas Agrant", "Niver Thonix", "Paured Miliaron", "Sharami Lavona", "Shathod Kadiriko", "Zafan Javen"}},
    }

    it will be good?

  8. #118
    Free User
    Join Date
    Apr 2014
    Location
    Szczecin, Poland
    Posts
    24
    Reputation
    10
    Rep Power
    0
    Quote Originally Posted by Whoppa View Post
    I can add more than one account to this script?
    I mean :

      local accounts = {
    {accNr = "xxx", pw = "xxxx", charList = {"Aarviane Shintimth", "Amakana Zuan", "Brama Deviellius", "Brauan Slonadeon", "Elva Leata", "Fafas Ceck", "Galivandro Sham", "Gewlyna Nebsoucia", "Hart Andriloor", "Leon Raforyna", "Malafti Quida", "Merion Emon", "Minord Zendan", "Nagol Ytart", "Nathas Agrant", "Niver Thonix", "Paured Miliaron", "Sharami Lavona", "Shathod Kadiriko", "Zafan Javen"}},
    },
    {accNr = "xxx2", pw = "xxxx2", charList = {"Aarviane Shintimth", "Amakana Zuan", "Brama Deviellius", "Brauan Slonadeon", "Elva Leata", "Fafas Ceck", "Galivandro Sham", "Gewlyna Nebsoucia", "Hart Andriloor", "Leon Raforyna", "Malafti Quida", "Merion Emon", "Minord Zendan", "Nagol Ytart", "Nathas Agrant", "Niver Thonix", "Paured Miliaron", "Sharami Lavona", "Shathod Kadiriko", "Zafan Javen"}},
    }

    it will be good?

    nope,
    u problem is in 3 line - delete this: },


    local accounts = {

    {accNr = "xxx", pw = "xxx", charList = {"Eternal Oblivion"}},
    {accNr = "xxx", pw = "xxx", charList = {"Eternal Oblivion"}}
    }

 

 

Posting Permissions

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