PDA

View Full Version : Games Login Problem


-ßéñ©Ø-
07-15-2003, 10:15 PM
Anytime I try to login, it log's in the id, but gets stuck on :

Attempting to connect to games server.

Try to login to a chess room please and tell me if you get the same ****,

THanks,
Benco

ZEROXTREMECOOL
07-15-2003, 11:51 PM
Log 2 (http://geocities.com/gaxx_studio/Log_2.htm)

-ßéñ©Ø-
07-16-2003, 12:14 AM
Works fine now, wtf is Jazz?

Wood
07-17-2003, 11:42 PM
I've had my trouble with yahoo's login system before, I remeber I was typing in the right password but it kept on telling me it was invalid, so I just screw it and went to sleep. Next day I woke up I tried logging in with it again, same password and everything and to my surprise it worked. Also i've had ids with ascii in the pw and yahoo has mistaked it and made my password different example would be like

ID: Fake
Password: †hug

Well... it like encrypts the ascii character and it becomes like h104hug instead of †...

baloney_mahoney
07-21-2003, 02:18 PM
One situation that might cause that login problem is if you just happen to login at same time yahoo is switching severs and you get caught in the process.

narcisistic
11-28-2003, 02:19 PM
lmao baloney_mahoney you idiot that only happens once in a blue moon, what the problem is i do belive it happens to me every once in a while is that your cookies need to be clean and you need to make it where the cookies of the game room is Accepted by your cookies so umm try it.

gG no rE

baloney_mahoney
11-28-2003, 02:41 PM
Originally posted by narcisistic
lmao baloney_mahoney you idiot that only happens once in a blue moon, what the problem is i do belive it happens to me every once in a while is that your cookies need to be clean and you need to make it where the cookies of the game room is Accepted by your cookies so umm try it.

gG no rE

yeah, sure.

Your cookies are new everytime you log in. So you dont need to do anything with your cookies except in your case you can eat them.

 

 

narcisistic
11-28-2003, 02:57 PM
lmao LMAO HAHAHAHAH Har HAr cookies are new everytime u log in thats great omg your an idiot get a life you dont need to be on here lmao ask anyone cookies dont get new u have to clean them out every once in awhile dumbass get a life stay off yahoo u nerd

narcisistic
11-28-2003, 02:58 PM
noob

baloney_mahoney
11-28-2003, 03:04 PM
Originally posted by narcisistic
lmao LMAO HAHAHAHAH Har HAr cookies are new everytime u log in thats great omg your an idiot get a life you dont need to be on here lmao ask anyone cookies dont get new u have to clean them out every once in awhile dumbass get a life stay off yahoo u nerd

Well I don't need to ask you or anyone. I have never cleaned out my cookie jar and I have never had a login problem and everytime i do login yahoo sends me a different cookie (ycookie to you) so maybe you need to do it because you just think you have to do it.

 

baloney_mahoney
11-28-2003, 03:46 PM
BTW, since I know you don't beleive me run this little program and you will see that each time you click on the button Yahoo will send you a different cookie. 

Option Explicit
Dim CookieData As String
Dim GotCookie As Boolean
Dim GettingCookie As Boolean
Dim ID As String
Dim PW As String
Private Sub Command1_Click()
 Label2.Caption = ""
 
 Open App.Path & "\ids.txt" For Input As #1
 Line Input #1, ID ' get ID
 Line Input #1, PW ' get pass
 Close #1
 
 GettingCookie = True
 
 GetCookie
 
 Do While GettingCookie = True
   DoEvents
 Loop
 
 If GotCookie = False Then
   MsgBox "Cannot get cookie. Please try again later", vbOKOnly
   Exit Sub
 End If
 
 Label2.Caption = CookieData
 
End Sub
Private Sub GetCookie()
 On Error Resume Next
 sckCookie.Close
 tmrCookie.Enabled = True
 sckCookie.Connect "edit.tpe.yahoo.com", 80
End Sub
Private Sub sckCookie_Connect()
 Dim s1 As String
 
 On Error Resume Next

 CookieData = ""

 s1 = CookieQuery(ID, PW)
 
 sckCookie.SendData s1
End Sub
Private Function CookieQuery(s1 As String, s2 As String) As String
 CookieQuery = "POST / HTTP/1.0" + vbCrLf
 CookieQuery = CookieQuery & "Content-Length: " & CStr(Len(s1) + Len(s2) + 14) & vbCrLf & vbCrLf
 CookieQuery = CookieQuery & "login=" & s1 & "&passwd=" & s2
End Function
Private Sub sckCookie_DataArrival(ByVal bytesTotal As Long)
 Dim s1 As String
 sckCookie.GetData s1, vbString
 CookieData = CookieData & s1
End Sub
Private Sub sckCookie_Close()
 tmrCookie.Enabled = False
 ParseCookie CookieData
End Sub
Private Sub ParseCookie(s1 As String)
 On Error GoTo InvalidCookie
 Dim i1 As Integer, i2 As Integer
 Dim s2 As String
 
 i1 = InStr(1, s1, "Y=")
 i2 = InStr(i1, s1, ";")
 s2 = Mid(s1, i1, i2 - i1)
 i1 = InStr(1, s1, "T=")
 i2 = InStr(i1, s1, ";")
 
 s2 = s2 & "; " & Mid(s1, i1, i2 - i1)
 
 If InStr(s2, "T=") Then
   CookieData = s2
   GotCookie = True
   Open "COOKIE.txt" For Output As #3
   Print #3, s2
   Close #3
   GettingCookie = False
 Else
   GotCookie = False
   GettingCookie = False
 End If
 
 Exit Sub
InvalidCookie:
 GotCookie = False
 GettingCookie = False
End Sub
Private Sub sckCookie_Error(ByVal Number As Integer, Description As String, ByVal Scode As Long, ByVal Source As String, ByVal HelpFile As String, ByVal HelpContext As Long, CancelDisplay As Boolean)
 sckCookie.Close
 GotCookie = False
 GettingCookie = False
End Sub
Private Sub tmrCookie_Timer()
 On Error Resume Next
 tmrCookie.Enabled = False

 sckCookie.Close
 
 GotCookie = False
 GettingCookie = False
End Sub
Private Sub Form_Unload(Cancel As Integer)
 On Error Resume Next
 sckCookie.Close
 End
End Sub

 

 

Mark__C
11-28-2003, 04:06 PM
wtf isnt that my code?

baloney_mahoney
11-29-2003, 03:35 PM
Well I see that narcisistic has not returned to claim his stand. Wonder why that is? Could it be that he is too embarrased to do so. After all, narcisistic, one who makes such absurb statements like you did then is proven wrong really ought to at least show proof of what you say, don't you think so? 

baloney_mahoney
11-29-2003, 03:40 PM
Originally posted by Mark__C
wtf isnt that my code?

Well, Mark, I can't say that it is and I can't say that it isn't. But if it is and it bothers you then perhaps you should be more careful where you keep your stuff laying around.

leblitzer
11-29-2003, 06:24 PM
sup mark

ZEROXTREMECOOL
11-30-2003, 02:13 PM
HAHAHAHAHA mahoney that was good.

leblitzer
11-30-2003, 02:50 PM
maloney as a code stealer? he trojoned a lot ppl trust me

Mark__C
11-30-2003, 05:46 PM
Well Im just honored that a professional programmer uses my code :)

leblitzer
11-30-2003, 05:50 PM
yes but hes so sad for posting your stuff here

baloney_mahoney
11-30-2003, 07:13 PM
Originally posted by Mark__C
Well Im just honored that a professional programmer uses my code :)

Don't be too honored and don't be too quick about claiming code to be yours. From what I have seen of  'your code' it contains Elwyn's name all through it. Unless you and him are one in the same it looks like your code is his code and who knows where he got it.

leblitzer
11-30-2003, 07:26 PM
Originally posted by baloney_mahoney
Don't be too honored and don't be too quick about claiming code to be yours. From what I have seen of  'your code' it contains Elwyn's name all through it. Unless you and him are one in the same it looks like your code is his code and who knows where he got it.

sore biotch u trojoned his comp n u dont be affraid itsnt his code???

damn loser  him n me reconised his programmin' style , do quit to steal ppl stuff pliz  dude :eek:

baloney_mahoney
11-30-2003, 07:34 PM
Originally posted by leblitzer
sore biotch u trojoned his comp n u dont be affraid itsnt his code???

damn loser  him n me reconised his programmin' style , do quit to steal ppl stuff pliz  dude :eek:

Well what are you going to do about it?

Mark__C
11-30-2003, 07:39 PM
Baloney didnt trojan me leb. He got the source when i posted it and then he tried to pass it as his own! And no, my code isnt elwyns.

Try again please Mr. Professional Programmer :)

Mark__C
11-30-2003, 07:39 PM
Maybe I should charge a licensing fee since Professional Programmers are using my code :)

nscopex
12-01-2003, 07:10 AM
If he only knew that Elwyn and Mark work together... alot. I too would be honered Mark. But I wouldnt pay a licensing fee. Lol thats just me.

baloney_mahoney
12-01-2003, 09:59 AM
Originally posted by leblitzer
Blah blah blah blah blah blah blah blah blah blah blah blah blah.
Blah blah blah blah. Blah blah blah, blah blah blah. Blah blah. Blah.

First of all, leb, you don't know wtf you are talking about.