Jump to content
UBot Underground

ATuringtest

Members
  • Content Count

    99
  • Joined

  • Last visited

  • Days Won

    7

Posts posted by ATuringtest

  1. how did you get to copy them to python ??? is there a software that does that? can you explain a lil bit more in detail? thanks!!

     

    I use the code - method etc I made with uBot then just google how to do it in Python/selenium.

    Also I don't sell bots so licensing not a problem, and I'm sure there's plenty of ways to secure a program out there.

    As for windows defender seeing it as a virus, not had that problem so far.

     

    There's just small things that annoy me a lot, like uBot auto save doesn't work

    When you compile it , it sends the code off to god knows where and to god knows who?

     

    Don't get me wrong it was awesome 6-7 years ago. Really worked in its little niche. But now sooo many things are aged or you have to pay for this and that to make this and that work.

    • Like 2
  2. Got so pissed off with the program crashing losing stuff , things not working, not finding plugins and the exe being seen as a virus. I decided to go with Python Selenium,

     

    I'm just copying my uBot algorithms and converting them to Python. works a treat.

    Plus its completely free.. don't cost a penny for anything lol

     

    will be selling everything ubot related off soon.

     

    Dev Licence

    Premium plugins

    access to other things related

     

     

    Good luck guys

    • Like 2
  3.  

    set(#test,$plugin function("HeopasCustom.dll", "$Heopas HTTP Post", "https://doc-partner-services.gingersoftware.com/correction/v1/document?apiKey=56465a24-4a77-4954-8933-bb6156af1316","\{\"text\": \"{#text}\"\}", "", "", "", "Content-Type: text/plain", ""),"Global")
     
    You can use heopas plugin as http post is getting old and aymen has not updated the plugin from a couple of years.It have not option to pass header,you can pass the key words in parameters and headers as your need .You can correlate it with the code i have attached.
    Thanks&Regards
    Tinku Singh 

     

     

    Wow Tinku thank you very much it worked a treat :)

     

    Now I have a at least something that works I have a base to work with.

     

    The heaopas plugin does have a section for headers, need to mess around and see what works :)

    • Like 1
  4. I have some text in variable that I want to be grammar checked by this API. The API is a trial so I've included the API key.

     

    I have Heopas's HTTP Get and Post

     

    this is my example https://doc-partner-services.gingersoftware.com/correction/v1/document?apiKey=56465a24-4a77-4954-8933-bb6156af1316

     

    I'm just not getting what I need to fill out and where.. and how do you parse the variable with the text, dose it have to be a document work with the  API ?

     

    All documentations is here https://www.gingersoftware.com/ginger-api/documentations?utm_medium=email&utm_source=link&utm_campaign=api_documentation

     

    Its very frustrating , I'm getting nowhere with it :(

     

    If I could just get a simple working example I can then mess with it and relate to it and hopefully work out other from it.

     

    Thanks

     

     

     

    • Like 1
  5. if i get it right, you are looking for

     

    increment(#charCountPos1)

     

    if not, and if you want to just add some text to a text, you could do it like

     

    set(#new,$nothing,"Global")

    set(#one,0,"Global")

    set(#rand,$rand(3,9),"Global")

    loop(#rand) {

        increment(#one)

        set(#addd,$text length(#new),"Global")

        set(#new,$insert text(#new,"{#one}|",#addd),"Global")

    }

    alert(#new)

     

    Thanks man I'll give it a go :)

  6. This must be simple but I just cant get the syntax

     

    I want to add +1 to a position, the variable holds the amount of characters so I can insert or add the next list item to #charCountPos1 but I need to add a space so the two list items are separated.

     

    set(#listItem2,$insert text(#listItem2,$next list item(%listList),#charCountPos1),"Global")

     

    I could pad the list item but that seems a bit of a waste of code.

     

     

    Stay Safe

  7.  

    You probably want this then:

    set(#article,$replace regular expression("Title:
    Bald Heads
    
    Word Count:
    253
    
    Summary:
    Over the ages, baldness has been considered a disease. Lately, it has also been followed as a fashion. However, greater numbers of people still feel that a head covered by hair is always more attractive than a bald one.
    
    
    Keywords:
    Bald, Bald Heads, Bald Women, Bald Men
    
    
    Article Body:
    Here is the article...","(?si)^title.+?body:\\n",""),"Global")

     

     

    Yep that worked a treat mate thanks again :)

  8. So I created a text file and put this in it

     

    start

    Everything in between

    status

     

     

    Then used your regular expression replace

     

    (?i)^start.+?status

     

    set(#texttest,$read file("C:\\Users\\Golden\\Desktop\\test_replace.txt"),"Global")
    set(#replaceTitle,$replace regular expression(#texttest,"(?i)^start.+?status"," "),"Global")

     

    You would think if your expression is correct it would work ? But it doesn't, I cant explain it?

  9. Hi Nick , that didn't work for some reason :(

     

    Heres my code

     

    set(#replaceTitle,$replace regular expression(#texttest,"(?i)^Title:.+?Body:",""),"Global")

     

    Here's an example of the text I want to delete Title to Body:

     

    Title:
    Bald Heads

    Word Count:
    253

    Summary:
    Over the ages, baldness has been considered a disease. Lately, it has also been followed as a fashion. However, greater numbers of people still feel that a head covered by hair is always more attractive than a bald one.


    Keywords:
    Bald, Bald Heads, Bald Women, Bald Men


    Article Body:

  10. Dan I dont know if this is the right place for a problem but let me know if its not mate.

     

    I have a Exbroswer Click that finds x://button[contains(@aria-label,"More actions")][1]

    I get the message Multiple xpath expressions and then asks if I want to turn it off until after uBot reboot.

    If I say no it opens the correct button if I say yes it opens the correct button - but then the damn thing comes back the next time I load the script !

    What should I do ? :)

×
×
  • Create New...