06-10-2006, 01:25 PM
Fix
Replace
With
Replace
With
Call PutVar(FileName, "CHAR" & i, "Score", INSERTTHESCORETYPE)
Also you need to make it so it sends packet to the server that tells the server to send a packet to the client so the list updates itself. ANd also, shouldn't score be a long and not a string?
There are more things that needs to be fixed.
Replace
Code:
Sub SendScoreList(ByVal Index As Long)
Code:
Sub SendScoreList()
Replace
Code:
Call PutVar(FileName, "CHAR" & i, "Score")
Call PutVar(FileName, "CHAR" & i, "Score", INSERTTHESCORETYPE)
Also you need to make it so it sends packet to the server that tells the server to send a packet to the client so the list updates itself. ANd also, shouldn't score be a long and not a string?
There are more things that needs to be fixed.