Jump to content
UBot Underground

Complete Newbie Needs Help With Youtube Bot


Recommended Posts

So I'm trying to make a youtube bot. So far I'm just trying to figure out how to log into my youtube account using the bot.

 

So I've navigated to the "sign in" page and dragged and dropped the "email slot" over to the "drag commands here" section on ubot.

 

Now the bot is ready to type text into the email field but it needs to know what "text to type".

 

How can I make the bot find my account details?

 

A text file could work but how do I point the bot to the file?

 

Or if there is a better way to login I'm open to suggestions.

 

Thanks...

Link to post
Share on other sites

You can go to UI commands and use a ui text box to enter them manually, or use a set command to set the account details permanently.

 

You can also use an external text file or list and read the variables from there.

 

Go through some of the excellent video tutorials available and you'll get the hang of it in no time.

 

:rolleyes:

  • Like 1
Link to post
Share on other sites

If you are simply trying to log in to one account, the below script would work. Fairly basic but it seems that is what you wanted.

 

I would highly recommend that you go through the basic tutorial videos as well at http://ubotstudio.com/tutorials

It helps out a lot. The one on lists would be particularly useful to you.

 

 

clear list(%login)

clear list(%password)

add list to list(%login, $list from text(#login, ""), "Delete", "Global")

add list to list(%password, $list from text(#password, ""), "Delete", "Global")

ui text box("Youtube login", #login)

ui text box("Youtube password", #password)

navigate("Fill in login page here", "Wait")

type text(<email field>, $list item(%login, 0), "Standard")

type text(<password field>, $list item(%password, 0), "Standard")

click(<login button>, "Left Click", "No")

  • Like 1
Link to post
Share on other sites
  • 2 weeks later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...