Quote:
Originally Posted by Stinged
The problem is you're creating the variable 'para1', getting the name that para1 has, and then using sscanf.
So 'para1' will always be 0 before you use sscanf, so GetPlayerName(para1, ..) means GetPlayerName(0, ..)
What?
|
I see. Thank you. I got the name of para1 after using sscanf, thanks for the useful tip.