30-06-2006, 10:39 PM
Major flaw on my server which was just worked out. It wasn't checking if the file existed right on the joingame sub. I've changed it to look as such:
Replace:
[code]
If Not FileExist(filename1) Then
BeenFlagged = False
End If
If BeenFlagged = False Then
Num = 1
'Change the 3 to number of flags you want per player
Do While Num
Replace:
[code]
If Not FileExist(filename1) Then
BeenFlagged = False
End If
If BeenFlagged = False Then
Num = 1
'Change the 3 to number of flags you want per player
Do While Num