|
发表于 2008-8-11 18:55:48
|
显示全部楼层
来自 中国–广东–深圳
回复: 请教一个函数获取使用方法
Post by wwww23
这个是头文件,可使用
new Signs[82]
cs_get_user_rank( id, Signs[82])
去无法获取,试了N种获取名字方法和定义 Signs都无法通过,请问是什么原因?谢谢
试试
new Signs[82]
cs_get_user_rank( id, Signs)
看看[php]
get_user_name - Finds the name of a player.
Syntaxget_user_name ( index, name[], len )
TypeNative
Notesindex is a player index from 1 to 32.
Stores the name for a maximum of len characters.
User Contributed Notesweecka at stablebeast dot comAug-28-05 19:54:11example of using it:
new name[18]
get_user_name(id, name, 17)
client_print(id, print_chat, "Your name is: %s", name)
[/php] |
|