Signup Now
Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 29
  1. #11
    Free User Sajean's Avatar
    Join Date
    Feb 2014
    Posts
    386
    Reputation
    26
    Rep Power
    21
    Quote Originally Posted by KrusT View Post
    @borges

    Hi, bro your action working awesome, but i'm gonna ask you another thing.

    the business are getting bigger, and i already put 3 acc throwing money at the same time.

    The safelist you did work great, but have possibility to do something like that:

    on some folder of windbot we make one notepad named : FriendList.txt like:

    Code:
     Friend List Names:
    
    Char 1
    Char 2
    Char 3
    Char 4
    Char 5
    Char 6
    Char 7
    ...
    something like that, because is alot chars and some way like that it's be perfect. Because in every script for each account i have to do one different list for the another 40 chars( for now i gonna increase alot more accs )

    and in script something like that on checker :

    if not Players.Consider or paroundfloorignore(Players.Distance, Players.FloorDifference, unpack(FriendList.txt)) == 0 then


    of course is not that, its just for understanding. XD

    THX AGAIN, if its possible will gonna help alot alot


    @Sajean you are a smart guy about this things, you think this thing with notepad for friendlist is possible? TY Mate
    Yes is possible,to load from xml file.
    Last edited by Sajean; 11-14-2014 at 12:57 AM.

  2. #12
    Free User KrusT's Avatar
    Join Date
    Jul 2014
    Posts
    332
    Reputation
    15
    Rep Power
    20
    Quote Originally Posted by Sajean View Post
    Yes is possible,to load from xmls file.
    TY for the answer bro, you can explain a little more? I not caught your idea.

  3. #13
    Free User Sajean's Avatar
    Join Date
    Feb 2014
    Posts
    386
    Reputation
    26
    Rep Power
    21
    Quote Originally Posted by KrusT View Post
    TY for the answer bro, you can explain a little more? I not caught your idea.
    Checking how can do, give me a minutes.

  4. #14
    Free User KrusT's Avatar
    Join Date
    Jul 2014
    Posts
    332
    Reputation
    15
    Rep Power
    20
    Quote Originally Posted by Sajean View Post
    Checking how can do, give me a minutes.
    take all time you need bro, dont worry

    TY for the help again

  5. #15
    Free User Sajean's Avatar
    Join Date
    Feb 2014
    Posts
    386
    Reputation
    26
    Rep Power
    21
    Quote Originally Posted by KrusT View Post
    take all time you need bro, dont worry

    TY for the help again
    Isn't good way to do, but i need to sleep.

    Code:
    <?xml version="1.0" encoding="UTF-8"?>
    <WindbotSettings>
        <Scripter>
            <HotkeyScripts/>
            <PersistentScripts>
     <PersistentScript name="Settings" script="init start
        Destination = {x = 11111, y = 22222, z = $posz}
        Items = {&quot;gold coin&quot;,'platinum coin','crystal coin'}
    local Players = {
    		Consider = true,
    		Distance = 10,
    		SafeList = {
    &quot;Bubble&quot;, 
    &quot;Eternal Oblivion&quot;,
    &quot;Google&quot;
    },
    		FloorDifference = 1
    	}
    init end
    auto(10)
    if not Players.Consider or paroundfloorignore(Players.Distance, Players.FloorDifference, unpack(Players.SafeList)) == 0 then
    	setsetting('Settings/MouseMoveSpeed', 'Instantaneous')
    	setsetting('Settings/ClickWaitTime', '10 to 10 ms')
    	for _, v in ipairs(Items) do
        	moveitems(v, ground(Destination.x, Destination.y, $posz))
    	end
    end" enabled="yes"/>
            </PersistentScripts>
        </Scripter>
    </WindbotSettings>
    Go to windbotfolder/cavebotsettings
    Create an file, named FriendList.xml

    This file need to be .xml.

    Then paste this code and save.

    Now go to your bot, persistent.

    Create new persistent and put this.
    loadsettings('FriendList.xml')

    For you Add the names open the file with notepad and put this.
    &quot;NAME&quot;,
    Before Google Name.

  6. #16
    Free User KrusT's Avatar
    Join Date
    Jul 2014
    Posts
    332
    Reputation
    15
    Rep Power
    20
    @Sajean ty for the help,

    I forgot to explain how i'm using this action take a look :



    if have someway to he check one notepad on line of checker its really easy, the bot doesn't have this function @Raphael?

    Like That with the "edits" on Safelist line and check line ( lines 7 and 12 with FriendList.txt ) :


    Quote Originally Posted by borges View Post
    try this
    init start
    Destination = {x = 11111, y = 22222, z = $posz}
    Items = {"gold coin",'platinum coin','crystal coin'}
    local Players = {
    Consider = true,
    Distance = 10,
    SafeList = {FriendList.txt},
    FloorDifference = 1
    }
    init end
    auto(10)
    if not Players.Consider or paroundfloorignore(Players.Distance, Players.FloorDifference, unpack(FriendList.txt)) == 0 then
    setsetting('Settings/MouseMoveSpeed', 'Instantaneous')
    setsetting('Settings/ClickWaitTime', '10 to 10 ms')
    for _, v in ipairs(Items) do
    moveitems(v, ground(Destination.x, Destination.y, $posz))
    end
    end
    TY
    Last edited by KrusT; 11-14-2014 at 08:43 PM.

  7. #17
    Free User KrusT's Avatar
    Join Date
    Jul 2014
    Posts
    332
    Reputation
    15
    Rep Power
    20
    @Sajean @borges
    Hi, Lucas Terra send to me one string about ".txt " things.

    If possible take a look. XD

    local str = file.content('file.txt') -- arquivo localizado na pasta '/WindBot/files/'



    i already try like this:

    init start
    Destination = {x = 11111, y = 22222, z = $posz}
    Items = {"gold coin",'platinum coin','crystal coin'}
    local Lista = file.content('FriendList.txt')
    local Players = {
    Consider = true,
    Distance = 10,
    SafeList = {Lista},
    FloorDifference = 1
    }
    init end
    auto(10)
    if not Players.Consider or paroundfloorignore(Players.Distance, Players.FloorDifference, unpack(Players.SafeList)) == 0 then
    setsetting('Settings/MouseMoveSpeed', 'Instantaneous')
    setsetting('Settings/ClickWaitTime', '10 to 10 ms')
    for _, v in ipairs(Items) do
    moveitems(v, ground(Destination.x, Destination.y, $posz))
    end
    end


    but he said, this "Lista" it's just a string, i have to read and initialize my safelist.


    TY Again, and ty Lucas Terra for the help !

  8. #18
    Moderator mistgun's Avatar
    Join Date
    Dec 2013
    Location
    Lodz, Poland
    Posts
    1,821
    Reputation
    220
    Rep Power
    26
    Quote Originally Posted by KrusT View Post
    @Sajean @borges
    Hi, Lucas Terra send to me one string about ".txt " things.

    If possible take a look. XD

    local str = file.content('file.txt') -- arquivo localizado na pasta '/WindBot/files/'



    i already try like this:

    init start
    Destination = {x = 11111, y = 22222, z = $posz}
    Items = {"gold coin",'platinum coin','crystal coin'}
    local Lista = file.content('FriendList.txt')
    local Players = {
    Consider = true,
    Distance = 10,
    SafeList = {Lista},
    FloorDifference = 1
    }
    init end
    auto(10)
    if not Players.Consider or paroundfloorignore(Players.Distance, Players.FloorDifference, unpack(Players.SafeList)) == 0 then
    setsetting('Settings/MouseMoveSpeed', 'Instantaneous')
    setsetting('Settings/ClickWaitTime', '10 to 10 ms')
    for _, v in ipairs(Items) do
    moveitems(v, ground(Destination.x, Destination.y, $posz))
    end
    end


    but he said, this "Lista" it's just a string, i have to read and initialize my safelist.


    TY Again, and ty Lucas Terra for the help !

    Try this. (every char must be in separated line)

    init start
    local Destination = {x = 11111, y = 22222, z = $posz}
    local Items = {"gold coin",'platinum coin','crystal coin'}

    local Players = {
    Consider = true,
    Distance = 10,
    SafeList = {},
    FloorDifference = 1
    }

    local doc = "lista.txt" -- this is where Your chars are located

    for line in io.lines(doc) do
    table.insert(Players.SafeList, line)
    end
    init end

    auto(10)
    if not file.exists(doc) then
    return
    end

    if not Players.Consider or paroundfloorignore(Players.Distance, Players.FloorDifference, unpack(Players.SafeList)) == 0 then
    setsetting('Settings/MouseMoveSpeed', 'Instantaneous')
    setsetting('Settings/ClickWaitTime', '10 to 10 ms')
    for _, v in ipairs(Items) do
    moveitems(v, ground(Destination.x, Destination.y, $posz))
    end
    end

  9. #19
    Free User KrusT's Avatar
    Join Date
    Jul 2014
    Posts
    332
    Reputation
    15
    Rep Power
    20
    Quote Originally Posted by mistgun View Post
    Try this. (every char must be in separated line)

    init start
    local Destination = {x = 11111, y = 22222, z = $posz}
    local Items = {"gold coin",'platinum coin','crystal coin'}

    local Players = {
    Consider = true,
    Distance = 10,
    SafeList = {},
    FloorDifference = 1
    }

    local doc = "lista.txt" -- this is where Your chars are located

    for line in io.lines(doc) do
    table.insert(Players.SafeList, line)
    end
    init end

    auto(10)
    if not file.exists(doc) then
    return
    end

    if not Players.Consider or paroundfloorignore(Players.Distance, Players.FloorDifference, unpack(Players.SafeList)) == 0 then
    setsetting('Settings/MouseMoveSpeed', 'Instantaneous')
    setsetting('Settings/ClickWaitTime', '10 to 10 ms')
    for _, v in ipairs(Items) do
    moveitems(v, ground(Destination.x, Destination.y, $posz))
    end
    end
    i gonna try now and i give a feedback in 1 minute

    the names on txt have to be like this? :

    Code:
    Char 1
    Char 2
    Char 3
    ...

  10. #20
    Moderator mistgun's Avatar
    Join Date
    Dec 2013
    Location
    Lodz, Poland
    Posts
    1,821
    Reputation
    220
    Rep Power
    26
    Yes, like this

 

 

Posting Permissions

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