Jump to content
UBot Underground

rapt0r

Fellow UBotter
  • Content Count

    50
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by rapt0r

  1. Is it possible to load the cookies via javascript? has anyone tried that with ubot yet?
  2. Thanks I was thinking that what it was for. Just wanted to make sure I had to increase that value to 5000 because ubot takes to long to open up and then it gets stuck because its trying to do stuff before its fully loaded. Now it works fine.
  3. window.setTimeout(function() \{ ubot.runScript(\'onload()\') \}, 500) What is the "500" value for?
  4. I am interested in purchasing this plugin. I have some questions. 1. Is there a way to save cookies and then use those cookies with the browser? 2. Is it possible to use the browser to login to a site then have the rest of the stuff done via requests? 3. Anyone made any youtube bots that log into accounts using this plugin? or it's not possible because of their high security?
  5. did you try with different accounts? same result? get recaptcha everytime or it happens after sending x messages? is there a option to phone verify the account to get rid of the captchas?
  6. is there a place where it lists all the sendkeys that can be used with ubot 4.0? didnt know about the {BS} thanks
  7. use the if and search page command to see if the captcha is on the page. If it is then solve it. Just have that in the begining of your loop. i dont think you can make it click dialoge box's Do you have flash installed already? What does the allow or deny do?
  8. yeah i tried changing useragent, proxies, computers. i think fb did a new update which stops the bot from clicking the sign up button to submit the form. you have any working useragents that work for the sign up page?
  9. cant even click sign up button from fb main sign up page manually in ubot. it works fine manually in firefox/chrome though. this is crazy.
  10. try this: Make a Accounts.txt on your desktop also change the "C:\\Users\\Admin\\Desktop\\Accounts.txt" to your own directory that has the accounts.txt. You will need to replace that in two places when loading the list and saving the list. This will grab an item from accounts.txt and remove it from the list and save it and then fill the form. Let me know if you wanted it differently but this is how i do it, i remove the item so i dont grab it again later. navigate("http://ubotstudio.com/playground/simpleform.aspx", "Wait") clear list(%Accounts) clear list(%AccountsSplit) set(#Account
  11. you can use something like this to split the email:pw Example: Copy and paste this in the code view navigate("http://ubotstudio.com/playground/simpleform.aspx", "Wait") clear list(%Accounts) clear list(%AccountsSplit) set(#Account, $nothing, "Global") set(#Account, "MyEmail@Email.com:EmailPassword", "Global") set(#AccountReplace, $nothing, "Global") add item to list(%Accounts, #Account, "Don\'t Delete", "Global") add list to list(%AccountsSplit, $list from text(%Accounts, ":"), "Don\'t Delete", "Global") type text(<username field>, $list item(%AccountsSplit, 0), "Standard") type te
  12. rapt0r

    RegEx Help

    that would be a lot of replace commands , i can probably just make it grab each letter 1 by one from the text and replace it and have it in a loop but i wish i could get regex to do this because it would be better and would not need to loop. i guess i have no choice now lol thanks
  13. rapt0r

    RegEx Help

    Thanks for the links looks like gotta pay for that software. I really dont need to use regex that much. Only this one time. When i'll really start needing it i'll probably get the software since it would make the process much easier.. still looking for a solution. i wonder if its even possible to do what i want in regex, hoping someone who has good knowledge with regex can help me out please.
  14. i just had this problem. it was because i had a proxy set in chrome browser. removed the proxy and all is working.
  15. rapt0r

    RegEx Help

    Can someone please help me out with regex. I been going crazy trying to figure this out. This is the text "ABCD" (This text will change but it will always be uppercase letters only) I just want it to find all letters A-Z and add "{" to the left and "}" to the right of each letter. And the the result would like like this: {A}{B}{C}{D} I need this to use regex and not padding or any other way. I actually need this help for a different program, not sure if im allowed to ask here. If its a problem im sorry and you can delete the thread. The program gives me this: Find: Replace:
  16. Are you using type text command? contact support about the posting limit. They will remove it for you.
  17. Is it possible you can post the site? i tried using {SPACE} with the text type command it does not work for me. But there is also {TAB} {ENTER} {DOWN} {UP} etc you can use it with the text type command Example using the {DOWN} CODE: navigate("http://www.google.com", "Wait") wait for browser event("Everything Loaded", "") wait(3) type text(<name="q">, "h", "Standard") wait(2) type text(<name="q">, "\{DOWN\}", "Standard") type text(<name="q">, "\{DOWN\}", "Standard")
  18. sorry im a bit confused. To avoid it generating the same number, i would have to add what to the list? is it possible to give an example for that. thanks
  19. I tried looking in: C:\Users\*\AppData\Roaming\UBot Studio C:\Program Files (x86)\UBot Studio C:\Users\*\Documents\UBot Studio (This one does have Bot Bank.xml but it does not have the custom commands) Bot Bank.xml shows: <privateBotBank> <categories> <category id="0" name="Utilities" /> </categories> <categoryWebsites /> <websites /> </privateBotBank> But when i load my project i see the custom commands in there but where are they stored? I cant find it. Anyone know where i can find it? Thanks
  20. one thing i noticed is if i create a macro %RandomNumber% and a text file RandomNumber.txt with the values from 0-9 and in the message i put My phone number is %RandomNumber%%RandomNumber%%RandomNumber%-%RandomNumber%%RandomNumber%%RandomNumber%-%RandomNumber%%RandomNumber%%RandomNumber%%RandomNumber% Then all of the %RandomNumber% have the same value like the result would be 111-111-1111 or 666-666-666 etc So i am thinking i might need to make some hard coded macros like %RandomNumbers/4% then this would give me random 4 numbers or like %RandomString/6% which would give me random 6 alpha
  21. I actually figured it out. here is the code in case anyone needs it. im still new to ubot, is there anyway to optimize this code? Just copy and paste this into the code view then save and then create a folder called "Data" and inside that make a folder called "Macros" and create text files called "City.txt" "Female.txt" "State.txt" and "Zipcodes.txt" and put some data in there. Then just take a look at the debugger and you can see the values keep changing for the macros everytime you run this. set(#AppFolder, $special folder("Application"), "Global") clear list(%MacroFileNames) c
  22. I have a folder called Macros. Inside the macro folders are text files like "Greetings.txt", "FirstName.txt" "ZipCodes.txt" "Colors.txt"...etc Now i also have a text file called Messages.txt Inside Messages.txt There are items like: %Greetings% My name is %FirstName% My Favorite color is %Colors% My ZipCode is %ZipCodes.txt ETC What i want to do is grab the first Message from Messages.txt And have it replace the macro with a random item from the text file. Like for example if the message contains %Greetings% it should pick a random item from Greetings.txt. I am trying to figure out t
  23. I actually got it to working without the need for csv/tables. I was using the $list from text function incorrectly. It looks like the same functions that were in ubot 3.0 work differently in ubot 4.0. here is the working example in case someone needs it. navigate("http://ubotstudio.com/playground/simpleform.aspx", "Wait") clear list(%Accounts) clear list(%AccountsSplit) set(#Account, $nothing, "Global") set(#Account, "Email:EmailPassword/UserName:Password", "Global") set(#AccountReplace, $nothing, "Global") set(#AccountReplace, $replace(#Account, "/", ":"), "Global") add item to list(%Ac
  24. I am creating accounts in this format with a different program. Email:EmailPassword/UserName:Password i have a text file with accounts in that format. I am trying to make another program that will log into the accounts but i cant figure out how to split the user name and password from it. If i do use .csv then first i should replace all the ":" and "/" with "," right? I never used the csv or tables functions in ubot before. Would you please be able to tell me what i would have to learn in order to achieve what im trying to do? like which main functions would i have to use to load up my a
×
×
  • Create New...