A few questions about organisate workflow and others

Support
  • @icemails if [[TIME2]] < 0

  • @fox said in A few questions about organisate workflow and others:

    < 0

    Thanks, i try it bevor with if [[TIME2]] =< 0 in case that it work on the match line i use with ==.

    So many thanks, now only a few things are open to solve and the bot can goes public.

    Anyone has a recaptcha2 plugin for xevil?
    Can`t use the 2captcha remote function in xevil.

    Kind regards from Berlin

  • So another questions for the weekend from me. xD

    I want to make a GUI for my Bot and need a bit knowledgebase on that.

    Is it possible to make the gui like this:

    http://prntscr.com/msg6gb

    I hope the picture is understandable.

    Green area is to choose activated sites.
    Yellow area is a statistic from actual run since programmstart.
    Red area are Scrollbars to go down.

    On the line below which has "SiteName.tld - 409" in it the user can put in his login credentials and see all succesfully workarounds from the bot since they use it.

    So my questions are:

    Actual i have all the data in a database like site active, password, username and others.
    Did i need to make ressources from them or did the gui works with the database to modify the credentials?

    Is a scrollbar possible in the gui?

    Can the fields username and password be variable from site to site.

    Kind regards from berlin.

  • @icemails said in A few questions about organisate workflow and others:

    So another questions for the weekend from me. xD
    I want to make a GUI for my Bot and need a bit knowledgebase on that.
    Is it possible to make the gui like this:
    http://prntscr.com/msg6gb

    Web interface allows you to create any interfaces. If you have enough knowledge and experience of layout.

    @icemails said in A few questions about organisate workflow and others:

    Actual i have all the data in a database like site active, password, username and others.
    Did i need to make ressources from them or did the gui works with the database to modify the credentials?

    The web interface has access to the database directly.

    Here is the code from the documentation, it should work:

    Api.DatabaseCount([], TableId).then(function(RecordCount){
       alert(RecordCount)
    })
    
    

    To get the table id, you need this code:

    Api.GetDatabaseStructure()
       .find(function(table){return table.name == "table1"})
       .id
    

    It is also in the documentation, a little higher.

  • Wow thanks so much.

    But looks like i need to search a person which make that for me.
    Did you think 20 Dollar are a good value for that work to search?

    Away a bit Playing with the GUI.

    Kind regards from Berlin.

  • So the bot grows and grows.
    But now i have another problem on it.

    I will make a pause which is on every day at a certain time with an offset and upset from x minutes.
    As example i will configure that it makes every day from 4 am to 10 am a pause which can start until an hour for 4 am and last until an half hour after 10 am.

    That it looks like more Human.

    And if i use a function called "OnApplicationStart" it will run before the main function begins the work to use it to become variables content and other stuff like that?

    Kind regards from Berlin

  • @icemails said in A few questions about organisate workflow and others:

    And if i use a function called "OnApplicationStart" it will run before the main function begins the work to use it to become variables content and other stuff like that?

    The "OnApplicationStart" function is executed once at the beginning of the script execution before all threads start. Data from this function can be passed through global variables or resources.

  • @fox good to know, that makes my script a bit more compact.

    Can you help me on the scheduled pause problem?

    Scheduled Pause should be changeable via GUI, but first i need to figure out how i set them.

    As example i want that the bot not work from 4-8 am with an up and offset from 30 minutes to let it look more human.

    Kind regards from Berlin.