Signup Now
Page 1 of 3 123 LastLast
Results 1 to 10 of 29
  1. #1
    Free User KrusT's Avatar
    Join Date
    Jul 2014
    Posts
    332
    Reputation
    15
    Rep Power
    20

    My maker move gold on foot of my another character.

    @Dehan, Hello, i need one action to my maker.

    I need this action do this, Move all gold in your backpack on the foot of my main char, and check if have another player on screen.

    He gonna move the gold from your backpack to foot of my main and "not" move if have another players, and wait until this player leave the screen for move.


    My main gonna stay stopped with action for collect this gold.


    TY ALL
    Last edited by KrusT; 11-09-2014 at 12:55 PM.

  2. #2
    Free User KrusT's Avatar
    Join Date
    Jul 2014
    Posts
    332
    Reputation
    15
    Rep Power
    20
    Bump !

  3. #3
    Free User Borges's Avatar
    Join Date
    Feb 2014
    Location
    Brazil
    Posts
    1,469
    Reputation
    205
    Rep Power
    25
    Quote Originally Posted by KrusT View Post
    @Dehan, Hello, i need one action to my maker.

    I need this action do this, Move all gold in your backpack on the foot of my main char, and check if have another player on screen.

    He gonna move the gold from your backpack to foot of my main and "not" move if have another players, and wait until this player leave the screen for move.


    My main gonna stay stopped with action for collect this gold.


    TY ALL
    looking for the repenters quest? hahaha

    try this!

    to move gold, platinum, crystal coins in someone SQM.
    init start
    Destination = {x = 11111, y = 22222, z = $posz}
    Items = {"gold coin",'platinum coin','crystal coin'}
    init end
    auto(10)
    if paround(7) == 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


    to pickup items
    local itemsCollect = {'gold coin', 'platinum coin','crystal coin'}           -- add items here
    local moveOnBp = ('brown backpack') -- backpack for items
    local capMin = 50 -- min. cap to stop collecting

    auto(200, 500)

    while $cap > capMin do
    collectitems(moveOnBp, table.unpack(itemsCollect)) waitping()
    end
    Last edited by Borges; 11-09-2014 at 11:52 PM.
    Helped you? REP+

  4. #4
    Free User KrusT's Avatar
    Join Date
    Jul 2014
    Posts
    332
    Reputation
    15
    Rep Power
    20
    Quote Originally Posted by borges View Post
    looking for the repenters quest? hahaha

    try this!

    to move gold, platinum, crystal coins in someone SQM.
    init start
    Destination = {x = 11111, y = 22222, z = $posz}
    Items = {"gold coin",'platinum coin','crystal coin'}
    init end
    auto(10)
    if paround(7) == 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


    to pickup items
    local itemsCollect = {'gold coin', 'platinum coin','crystal coin'}           -- add items here
    local moveOnBp = ('brown backpack') -- backpack for items
    local capMin = 50 -- min. cap to stop collecting

    auto(200, 500)

    while $cap > capMin do
    collectitems(moveOnBp, table.unpack(itemsCollect)) waitping()
    end
    kkkk you are on fire, it is for repenters

    but bro i need the maker throw the money on footof my main, have possibility to put like an safe list for my char.


    THX

  5. #5
    Free User Borges's Avatar
    Join Date
    Feb 2014
    Location
    Brazil
    Posts
    1,469
    Reputation
    205
    Rep Power
    25
    Quote Originally Posted by KrusT View Post
    kkkk you are on fire, it is for repenters

    but bro i need the maker throw the money on footof my main, have possibility to put like an safe list for my char.


    THX
    paround(7) > 1
    lol
    Helped you? REP+

  6. #6
    Free User KrusT's Avatar
    Join Date
    Jul 2014
    Posts
    332
    Reputation
    15
    Rep Power
    20
    Quote Originally Posted by borges View Post
    paround(7) > 1
    lol
    ye that gonna work ty, scaray of players steal my money kkk

    dont have any possibility on bot to put a safelist, with safelist are no risk to someone steal XD

    TY again

  7. #7
    Free User Borges's Avatar
    Join Date
    Feb 2014
    Location
    Brazil
    Posts
    1,469
    Reputation
    205
    Rep Power
    25
    Quote Originally Posted by KrusT View Post
    ye that gonna work ty, scaray of players steal my money kkk

    dont have any possibility on bot to put a safelist, with safelist are no risk to someone steal XD

    TY again
    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 = {"Bubble", "Eternal Oblivion"},
    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
    Last edited by Borges; 11-10-2014 at 12:54 AM.
    Helped you? REP+

  8. #8
    Free User KrusT's Avatar
    Join Date
    Jul 2014
    Posts
    332
    Reputation
    15
    Rep Power
    20
    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 = {"Bubble", "Eternal Oblivion"},
    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
    i gonna try and post a feedback

    EDIT: @borges bro worked great, u are the best XD
    Last edited by KrusT; 11-10-2014 at 01:40 AM.

  9. #9
    Free User Borges's Avatar
    Join Date
    Feb 2014
    Location
    Brazil
    Posts
    1,469
    Reputation
    205
    Rep Power
    25
    Quote Originally Posted by KrusT View Post
    i gonna try and post a feedback

    EDIT: @borges bro worked great, u are the best XD
    thanks guy
    Helped you? REP+

  10. #10
    Free User KrusT's Avatar
    Join Date
    Jul 2014
    Posts
    332
    Reputation
    15
    Rep Power
    20
    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 = {"Bubble", "Eternal Oblivion"},
    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
    @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
    Last edited by KrusT; 11-14-2014 at 12:20 AM.

 

 

Posting Permissions

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