Jump to content
UBot Underground

I'm Selling UBot Code for $5


Recommended Posts

I know I'm nuts at times but here I go again! :D

 

I have a SERIOUS drive full of UBot code that I have tested and played with to get myself over that proverbial hump in Learning.

 

In fact, I think I do this better than anything.

 

IF you are wanting to learn UBot and you are willing to commit time to the process then i am willing to sell you my UBot code on the cheap.

 

And I mean cheap $5

 

So while I am cranking more bots out I invite you to go here http://fiverr.com/ubotbuddy and checkout my growing list.

 

I will also put this out there. If there is some technique that you want created for you see see in a working bot then PM your request. If it is reasonable then I will charge you $5 and you can give me a positive thumbs up over at Fiverr.

 

Thanks your consideration and if you tell me you're new to UBot Studio I will throw in a surprise pack of learning bots.

 

Remember, my stuff is right here: http://fiverr.com/ubotbuddy

 

UBotBuddy

  • Like 2
Link to post
Share on other sites

I need example codes which will register Pligg-PHPDug-Scuttle-Drupal systems and then post our article.Also i need a software which register 100 different blog sites and then send my blogpost.it is enough for me if you write 4-5 example sites about that. i can create others with them. And i want to buy some codes from http://fiverr.com/ubotbuddy. waiting for your reply.and please send pm

Edited by sutanlee
Link to post
Share on other sites

Sorry, but I am not following you well. :(

 

It appears to be a bit involved. I have a couple of bots that I am working on right now so if you could explain again then maybe I can assess your request again.

 

Thank!

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

Hey Mat,

 

Can you PM again in here? I dont see anything in Fiverr.

 

Sorry

 

I tried to PM you but system says that I cannot do it (I don't have permission....), is there any other way to contact you? :)

 

Thanks

Mat

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

Hi, do you still have some accounts in stock and are these UBot studio 4? If so, please contact me (not sure if there's a PM system on this forum but if there is, drop me one. If not, I'll post my skype here when you reply.

Thanks.

Link to post
Share on other sites

Whoops!

 

I was not alerted to these posts so I apologize for the tardiness.

 

I do not do custom bots from a Fiverr point of view. I do watch the forum here and when I see a topic that is getting a fair amount of questions I will then throw a Bot together.

 

But certainly throw your suggestions in here. If it is a worthy enough topic I will do it. Just know that I am in this for the bucks so I will charge.

 

Having said that!

 

I just did a complete makeover of my store. I have added a few new bots and I have a few in the works.

 

THE BIGGEST CHANGE is that my store will now deliver. So as soon as you buy you will be given a download link.

 

This will save me a considerable amount of time and it has also allowed me to break the bonds with the Fiverr people. While they have an interesting model they do not Live by the same rules they impose on the users. Shame on them.

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

@Herman Chiu

 

I wont say here BUT if you register over at my site http://ubot-tutorials.com you will receive a special coupon code that will give you a PRETTY good discount. So far so good.

 

Also, that coupon may get altered soon (reduced) which means the final price will grow back to its listed amount in my store.

 

Thanks again for everyone's interest!

 

Buddy

Link to post
Share on other sites
  • 1 month later...

yes curl (php)

 

here ya go. hope you dont mind buddy..

 

<?php
function fiverr_login($username, $password, $url='http://fiverr.com/login')
{
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, 'user_session[username]='.$username.'&user_session[password]='.$password);
curl_setopt($ch, CURLOPT_COOKIEJAR, 'cookie.txt');
$store = curl_exec($ch);
curl_close($ch); 
}
function loadUrl($user, $url='http://fiverr.com/conversations'){
   $cr = curl_init($url);
   curl_setopt($cr, CURLOPT_SSL_VERIFYPEER, true);
   curl_setopt($cr, CURLOPT_SSL_VERIFYHOST, 2);
   curl_setopt($cr, CURLOPT_RETURNTRANSFER, true);   
   curl_setopt($cr, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
   curl_setopt($cr, CURLOPT_COOKIEFILE, 'cookie.txt');
   $output = curl_exec($cr);
   curl_close($cr);
   echo $output;       
}
// First you run the function 'videobox_login' and pass username, password
fiverr_login("USERNAME HERE", "PASSWORD HERE");
// then load a page you want to be loaded once logged in
loadUrl("URL TO LOAD HERE");
?>

Link to post
Share on other sites

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...