Giter Site home page Giter Site logo

payyasakin's Introduction

payyAsakin

payyAsakin is a lua executor module for multibot-asakin applications, where this module is free open source and you can experiment making a new feature with it.

Feature:


  • Drop-item
  • Trash-item
  • Warp
  • Auto place 5 tile
  • Retrieve gaia
  • Auto break 5 tile
  • Put and Break 5 tile
  • Add stock to vending
  • Auto spam rejoin world and coordinate
  • Auto farm flour
  • Auto cook berry maybe have some bug

Example Usage

Config bot

function main()
    Bot = bot()
    bot1()  --> login into bot1
    bot2()  --> login into bot2
end

function bot1()
    Bot:setUsername('username_bot')
    Bot:setPassword('password_bot')
    Bot:setWorld('payyAsakin|idDoor')
    Bot:login(10) --> 10 is mean warp into world every 10 second
end

function bot2()
    Bot:setUsername('username_bot')
    Bot:setPassword('password_bot')
    Bot:setWorld('payyAsakin|idDoor')
    Bot:login(10)
end
-- more command:
-- Bot.reconnecting()
-- Bot.remove()
-- Getting information of object Bot
-- Bot.getUsername() 
-- Bot.getPassword()
-- Bot.getWorld()

Droping item

function main()
    payy.dropItem{ 
        itemID = 340   --> type(number)
    }
end

Trashing item

function main()
    payy.trashItem{
        itemID = 3    --> type(number)
    }
end

Warp

If you want enter world with id door, you can set world = payyasakin|idDoor

function main()
    payy.warp{
        world = "payyasakin" --> type(string)
    }
end

Auto Place 5 tile

You can set x and y depend ur needs

function main()
    payy.autoPlace{
        itemID = 5666,              --> type(number)
        x = -2,                     --> type(number)
        y = -2,                     --> type(number)
    }
end

Auto Break 5 tile

function main()
    payy.autoBreak{
        hit = 5,   --> type(number)
        x = -2,    --> type(number)
        y = -2     --> type(number)
    }
end

Put and Break 5 tile

function main()
    payy.placeBreakItem{
        itemID = 340,                 --> type(number)
        hit = 6,                      --> type(number)
        x = -2,                       --> type(number)
        y = -2,                       --> type(number)
        bool_fullautofarm = false
    }
end

Auto spam

function main()
    payy.autoSpam{
        text_1 = "`2Donate some wl at payyAsakin",      --> type(string)
        text_2 = "`2Donate some wl at payyAsakin",      --> type(string)
        text_3 = "/love",                               --> type(string)
        text_4 = "/love",                               --> type(string)
        delay = 4000                                    --> type(number)
    }
end

Add stock into vending machine

function main()
    payy.addStockToVendingMachine()
end

Retrieve-gaia

function main()
    payy.retrieveGaia{
        itemID = 5667,
        x = 0,
        y = -1,
        minute = 15,
        count = 100
    }
    -- 5667 = lgrid seed
    -- 15 = take seed every 15 minute
    -- 100 = total seed taking from gaia
end

Auto-farm-flour

You need place food grinder ,40 platform , vending machine and bot on right

function main()
    payy.fullAutoFarmFlour()
end

Teleport to tile

function main()
    payy.goToTile{
        x = 0,      --> type(number)
        y = 0       --> type(number)
    }
end

Auto cook berry crepes

YOU CAN IMPROVE THIS FUNCTION
How it works? you need to drop all ingredient and then set takeItemX and takeItemY to it. On variable stackBuffer it means how many times cook for use gemonade. And on variable stackStop it means how many times cook and then stop.

function main()
    payy.autoCookBerry{
        bool_gemonade = true,   --> type(boolean)
        stackBuffer = 16,       --> type(number)
        stackStop = 41,         --> type(number)
        takeItemX = 38,         --> type(number)
        takeItemY = 18          --> type(number)
    }
end

Support

If you find this module helpful and would like to support its development.
You can donate me some wl at world: payyAsakin
join discord: [https://discord.gg/WT4cBNNJKW]

payyasakin's People

Contributors

p4yy avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.