Jump to content
UBot Underground

iDollarsteam

Fellow UBotter
  • Content Count

    141
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by iDollarsteam

  1. I just bought it waiting for the download link
  2. I'm new to http requests but I have read a lot about http headers and requests today and I want to use this plugin for youtube ... I used fidler2 to see the http requests between the browser and youtube server and I want to ask the guys that know how this things works: have you tried this plugin to send http requests and answers for youtube?? (to confirm views, video ratings, subscribers on channels and so on)... it is working for the kind of http requests youtube and google use?
  3. Youtube Commenter & Comment Rater I'm selling my Youtube Commenter & Comment Rater. It is working fine and I have tested it almost every day for 2 month now. It only require good proxies and youtube accounts. At first I have done only the comment rating module but I have update the bot with a commenting module and now it will comment on the videos that you choose then it will rate the comments and put them on top (IF your accounts and proxies are good and not overused, else you will only get comments with thumbs up but they will not get on top) The demo movie is made for version 1
  4. yes I included the entire jquery code in a "run javascript" command in ubot... it is not working... may be I did not write the "set" command ok... can you test it for me and see if you can make it work?
  5. I have found this to but I don't know how to implement them in ubot ... I have the "ID" tag of an object from the page... I replace the #container with it? For example, I have a div: <div class="container_24"> and I want to find the x and y on the page. I load jquery in a run javascript command then I set up a variable like this: set(#test, $eval("$(function() \{ var posObject = $(\'<div class=\"container_24\">\'), posX = posObject.position().left, posY = posObject.position().top; \}); posX; posY;"), "Global") What is wrong with this code? how can I make it return the x and y ?
  6. I posted this in to another topic that I opened about this kind of functionality but here is the right thread I think: I installed it... well it is not working ... on the download page it say: "Use the mouse over function to move your mouse over an area, then use the plugin to capture the X, Y position to variables and use as needed" ... mouse over do not move the mouse so the plugin will get the cursor position (over the run button or where you last moved the mouse with your hand) ... navigate("http://www.ubotstudio.com/", "Wait") mouse over(<innertext="Verify Emails">, "No")
  7. I installed it... well it is not working ... on the download page it say: "Use the mouse over function to move your mouse over an area, then use the plugin to capture the X, Y position to variables and use as needed" ... mouse over do not move the mouse so the plugin will get the cursor position (over the run button or where you last moved the mouse with your hand) ... navigate("http://www.ubotstudio.com/", "Wait") mouse over(<innertext="Verify Emails">, "No") wait(1) plugin command("GetMousePosition.dll", "Get Mouse X,Y", #x, #y) ui stat monitor("x=", #x) ui stat monitor("y=", #y)
  8. TJ you are great! He did it in few minutes after I asked him to help me... he's a genius!!! Edit: The plugin is working fine it can find the mouse coordinates but it is not useful as a solution for the topic of this thread
  9. I need to find the coordinates (position) of an object on a webpage (with one of the corners of the browser window as the point of origin) and be able to save those coordinates in two variables (x,y)... I think that there is a way using jquery and the eval function in a variable but I'm not a javascript coder and I can't get that code to work using that object id or any other tag to select it... Can anyone give me a hand with this? PLS!!!
  10. this will not be possible if they don't change the entire UI concept... they have to get rid of the html UI system and use a real UI system that can interact with the data not just display the data... this will make Ubot be a real great tool and the bots we make can compete with the bots made in VStudio or other programming environments ... till then...
  11. How can we implement the DataGrid library in Ubot if we can't use it as a UI???? I was looking for this kind of functionality ... All great bots out there use this kind of data display and manipulation ... Ubot Team please implement this as a pro/dev feature!!!
  12. when you use shell to launch the bot directly, the bot will open in the task bar at the bottom of the screen! That was the problem I needed to be solved in this thread! and as far as I know there is no solution to this problem, even with the new "windows" commands
  13. I have used winautomation and made a little exe that opens the new bot: I call the winauto exe with shell command from the main bot and the winauto exe opens the new bot... in this way the new bot opens on the screen not on the windows bar the downside is that I can't change the extension of the new bot (it has to be exe to be opened by winauto... so I can't hide important files) and I have double the numbers of files in my software
  14. I have tried... the only option that works..in a way... is the option that will open the bot maximized, but this will make the bot to open full screen and I don't want a bot that is 300px x 400px to be all over my screen
  15. Hi! I have a bot that is just a html UI and from it I open other bots ... but the problem is that when I click the UI the new bot opens minimized. How can I open the new bot as a normal window and not minimized in the windows bar??
  16. TJ... you are waaay ahead as always... This is a great idea! Thanks ...
  17. yes, and I also use for the connection a user that has only select and display privileges on the database
  18. ok, I solved it ... the variable in the query should be inserted in a different way: ui text box("id", #hdid) clear table(&keyword) plugin command("DatabaseCommands.dll", "connect to database", "server=******;uid=*******; pwd=*******; database=*******; port=3306; pooling=false") { plugin command("DatabaseCommands.dll", "query with results", "SELECT * FROM user_data WHERE user_HDID=\"{#hdid}\"", &keyword) if($comparison($table total rows(&keyword), ">", 0)) { then { alert("License valid") } else { alert("License invalid") } } }
  19. Hi! I want to store my users and their license codes in a database and then make the bot check the database to see if that user exists and save the result in a variable (or a table). I have made the bot that will let me input data in the database but I have problems making the client bot read the database to see if that record exists. If I use MySQL Workbench to send that query it works as it should so the sintax is correct , the problem is when I run it in ubot, I get an error: "Fatal error encountered during command execution" and of course the command does not return any value. here is the
  20. you will find the database tutorials here: http://ubottraining.com/mysql/ ... so I presume this is the main site ... great stuff... I have learned A LOT here
×
×
  • Create New...