08-10-2008, 07:31 PM
Code:
TempPlayer(Index).Target = i
Call SendJoinParty(GetPlayerName(i))
End Sub
Well the problem may be more deep seated but for one you have the assignment operator backwards.
Code:
i = TempPlayer(Index).Target
The way you were doing it was telling target to be set to i, when you want it vice versa.