You are viewing our Forum Archives. To view or take place in current topics click here.
Would this Work for a Program To Find Available Gamertags
Posted:

Would this Work for a Program To Find Available GamertagsPosted:

Caucasian
  • TTG Natural
Status: Offline
Joined: Sep 01, 200915Year Member
Posts: 921
Reputation Power: 51
Status: Offline
Joined: Sep 01, 200915Year Member
Posts: 921
Reputation Power: 51
Would it be possible to code a Program to do the same thing as GamertagChecker.Com does but in the Program and then you type in a bunch of Gamertags that you want Like 50 of them and you click Check and it checks all the Gamertags that you entered and divides them into 2 sections one for the Unavailable one an one for the GTs that are available. So you could easily find oG Gamertags For you or a Friend. Please post if you think it would work.
#2. Posted:
Caucasian
  • TTG Natural
Status: Offline
Joined: Sep 01, 200915Year Member
Posts: 921
Reputation Power: 51
Status: Offline
Joined: Sep 01, 200915Year Member
Posts: 921
Reputation Power: 51
Does anyone Have Any thoughts on this?
#3. Posted:
NlNJA_Defuse
  • TTG Natural
Status: Offline
Joined: May 14, 201113Year Member
Posts: 901
Reputation Power: 46
Status: Offline
Joined: May 14, 201113Year Member
Posts: 901
Reputation Power: 46
i think that it could be done if your a big computer geek.
#4. Posted:
ImGiraffe
  • TTG Undisputed
Status: Offline
Joined: Feb 28, 201014Year Member
Posts: 5,229
Reputation Power: 224
Status: Offline
Joined: Feb 28, 201014Year Member
Posts: 5,229
Reputation Power: 224
I'm guessing it is. It may not be easy but it's possible. You don't have to if you have that site.
#5. Posted:
Boolean
  • V5 Launch
Status: Offline
Joined: Jan 04, 201113Year Member
Posts: 1,732
Reputation Power: 72
Status: Offline
Joined: Jan 04, 201113Year Member
Posts: 1,732
Reputation Power: 72
it sounds possible
#6. Posted:
Caucasian
  • TTG Natural
Status: Offline
Joined: Sep 01, 200915Year Member
Posts: 921
Reputation Power: 51
Status: Offline
Joined: Sep 01, 200915Year Member
Posts: 921
Reputation Power: 51
TTGvSNiiPER wrote i think that it could be done if your a big computer geek.

I'll just look up some tutorials and try to find out how Gamertag Checker checks if the GTs are avilable and tryy to put something together. idk i'll work on it after school. Cya
#7. Posted:
Bitlord
  • TTG Natural
Status: Offline
Joined: Mar 16, 201113Year Member
Posts: 903
Reputation Power: 45
Status: Offline
Joined: Mar 16, 201113Year Member
Posts: 903
Reputation Power: 45
Very great idea, good luck making it
#8. Posted:
Experiment5X
  • TTG Senior
Status: Offline
Joined: Aug 14, 200915Year Member
Posts: 1,291
Reputation Power: 65
Status: Offline
Joined: Aug 14, 200915Year Member
Posts: 1,291
Reputation Power: 65
C#

string GTtoCheck = String.Empty;
bool available; /*Idk how you plan on checking if it's used or not, but if it's available make it true, otherwise make it false */
List<string> Available = new List<string>();
List<string> NotAvailable = new List<string>();

if (available)
    Available.Add(GTtocheck);
else
    NotAvailable.Add(GTtoCheck);

//To view the lists do...
Console.WriteLine("GTs Available:");
foreach (string gt in Available)
    Console.WriteLine(gt);
Console.WriteLine("GTs Not Available:");
foreach (string gt in NotAvailable)
    Console.WriteLine(gt);


VB

Dim GTtoCheck__1 As String = [String].Empty
Dim available__2 As Boolean
'Idk how you plan on checking if it's used or not, but if it's available make it true, otherwise make it false
Dim Available__3 As New List(Of String)()
Dim NotAvailable As New List(Of String)()

If available__2 Then
   Available__3.Add(GTtocheck)
Else
   NotAvailable.Add(GTtoCheck__1)
End If

'To view the lists do...
Console.WriteLine("GTs Available:")
For Each gt As String In Available__3
   Console.WriteLine(gt)
Next
Console.WriteLine("GTs Not Available:")
For Each gt As String In NotAvailable
   Console.WriteLine(gt)
Next
#9. Posted:
99rock99
  • Resident Elite
Status: Offline
Joined: May 22, 201113Year Member
Posts: 235
Reputation Power: 9
Status: Offline
Joined: May 22, 201113Year Member
Posts: 235
Reputation Power: 9
it is possible my only problem would be the updating of the database.
#10. Posted:
CLK
  • Wise One
Status: Offline
Joined: Jun 12, 201014Year Member
Posts: 531
Reputation Power: 33
Status: Offline
Joined: Jun 12, 201014Year Member
Posts: 531
Reputation Power: 33
99rock99 wrote it is possible my only problem would be the updating of the database.


Try not to bump older threads... And if the OP still needs help with this, PM me and I'll unlock it again. Personally though, I'd just make an HTTP web request to the gamertag page and then put a try/catch around the code because if it results in a 404, then the gamertag is available.
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.