Login Register






Thread Rating:
  • 0 Vote(s) - 0 Average


[C#] FB Friend Adder! filter_list
Author
Message
[C#] FB Friend Adder! #1
http://www.mediafire.com/?ivqgti8wlrb1b9e
This little application will allow you to add friends without doing any work. It'll add friends that should pertain to your interests/friends. You WILL be banned from adding friends if you add too many a day(50-70).
[Image: c612db3558b8808f2ff8507e5407369f.png]

Reply

RE: [C#] FB Friend Adder! #2
Haha, this is cool. But I think this is kinda odd. So I'm just adding random people? Or will it have mutual friends?
[Image: 8536321abf.jpg]Me and Lux are the realest users here.
[STAFF DETERMINED SIGNATURE AS LEWD]
JDM>USDM

Reply

RE: [C#] FB Friend Adder! #3
(02-28-2013, 03:37 AM)Johnny Wrote: Haha, this is cool. But I think this is kinda odd. So I'm just adding random people? Or will it have mutual friends?

Adding random people and selling the account later.

Reply

RE: [C#] FB Friend Adder! #4
(02-28-2013, 03:38 AM)The High Roller Wrote:
(02-28-2013, 03:37 AM)Johnny Wrote: Haha, this is cool. But I think this is kinda odd. So I'm just adding random people? Or will it have mutual friends?

Adding random people and selling the account later.

Ohhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh. This would have been good for this thread.
[Image: 8536321abf.jpg]Me and Lux are the realest users here.
[STAFF DETERMINED SIGNATURE AS LEWD]
JDM>USDM

Reply

RE: [C#] FB Friend Adder! #5
(02-28-2013, 03:41 AM)Johnny Wrote:
(02-28-2013, 03:38 AM)The High Roller Wrote:
(02-28-2013, 03:37 AM)Johnny Wrote: Haha, this is cool. But I think this is kinda odd. So I'm just adding random people? Or will it have mutual friends?

Adding random people and selling the account later.

Ohhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh. This would have been good for this thread.
You still have to register an account and your maxed to only 50 friends added per day.

Reply

RE: [C#] FB Friend Adder! #6
Did you make this? Because I don't see any credits.
Wavy baby

Reply

RE: [C#] FB Friend Adder! #7
(02-28-2013, 03:46 AM)Cyber-Savage Wrote: Did you make this? Because I don't see any credits.

It's only 2 methods of code, how hard could it have been? :huh:

...

Code:
private void button_Click_1(object sender, EventArgs e)
{
    webBrowser1.ScriptErrorsSuppressed = true;
    webBrowser1.Navigate("https://www.facebook.com/find-friends/browser/");
    webBrowser1.DocumentCompleted += webBrowser1_DocumentCompleted;
}

void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
{
    for (int i = 0; i < 700; i++)
    {
        if (webBrowser1.Document.All[i].Id != null)
            if (webBrowser1.Document.All[i].Id.StartsWith("u_"))
                webBrowser1.Document.All[i].InvokeMember("click");
    }
    System.Threading.Thread.Sleep(10000);
    webBrowser1.Navigate("https://www.facebook.com/find-friends/browser/");
}

On every button click you are adding the handler to the DocumentCompleted event method? Why...

Your loop:
Code:
for (int i = 0; i < 700; i++)
{
    if (webBrowser1.Document.All[i].Id != null)
        if (webBrowser1.Document.All[i].Id.StartsWith("u_"))
            webBrowser1.Document.All[i].InvokeMember("click");
}

I think it's safe to say that as soon as we find an ID that doesn't exist we won't find another after that, so why not place a break; in here at that time to avoid unnecessary checks to all the rest of the iterations? The issue here is that you're using 700 as a constant value as well hardcoded into the program. Why not make it dynamic? Check the number of values you can find?

I don't use fb though so I can't say. I'm assuming it's in sequential ascending order though for each of the results on that search page.

Code:
System.Threading.Thread.Sleep(10000);
webBrowser1.Navigate("https://www.facebook.com/find-friends/browser/");

Absolute worst thing you can do... Very abusive way of using Thread.Sleep().
-- cxS

[ Haskell/.NET/C/C++ - Software Engineer ]

Reply

RE: [C#] FB Friend Adder! #8
wrong section should be in the .net section C++ and C# are completely different

Reply

RE: [C#] FB Friend Adder! #9
(02-28-2013, 03:59 PM)Prestige Wrote: wrong section should be in the .net section C++ and C# are completely different

Unless you mean VisualC++.
-- cxS

[ Haskell/.NET/C/C++ - Software Engineer ]

Reply

RE: [C#] FB Friend Adder! #10
(02-28-2013, 08:05 AM)cxS Wrote:
(02-28-2013, 03:46 AM)Cyber-Savage Wrote: Did you make this? Because I don't see any credits.

It's only 2 methods of code, how hard could it have been? :huh:

...

Code:
private void button_Click_1(object sender, EventArgs e)
{
    webBrowser1.ScriptErrorsSuppressed = true;
    webBrowser1.Navigate("https://www.facebook.com/find-friends/browser/");
    webBrowser1.DocumentCompleted += webBrowser1_DocumentCompleted;
}

void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
{
    for (int i = 0; i < 700; i++)
    {
        if (webBrowser1.Document.All[i].Id != null)
            if (webBrowser1.Document.All[i].Id.StartsWith("u_"))
                webBrowser1.Document.All[i].InvokeMember("click");
    }
    System.Threading.Thread.Sleep(10000);
    webBrowser1.Navigate("https://www.facebook.com/find-friends/browser/");
}

On every button click you are adding the handler to the DocumentCompleted event method? Why...

Your loop:
Code:
for (int i = 0; i < 700; i++)
{
    if (webBrowser1.Document.All[i].Id != null)
        if (webBrowser1.Document.All[i].Id.StartsWith("u_"))
            webBrowser1.Document.All[i].InvokeMember("click");
}

I think it's safe to say that as soon as we find an ID that doesn't exist we won't find another after that, so why not place a break; in here at that time to avoid unnecessary checks to all the rest of the iterations? The issue here is that you're using 700 as a constant value as well hardcoded into the program. Why not make it dynamic? Check the number of values you can find?

I don't use fb though so I can't say. I'm assuming it's in sequential ascending order though for each of the results on that search page.

Code:
System.Threading.Thread.Sleep(10000);
webBrowser1.Navigate("https://www.facebook.com/find-friends/browser/");

Absolute worst thing you can do... Very abusive way of using Thread.Sleep().

True, but he still had to give credits. Oh well, he's banned now.
Wavy baby

Reply







Users browsing this thread: 1 Guest(s)