wwww23 发表于 2008-8-11 10:41:49

请教一个函数获取使用方法


#if defined _Signs_included
#endinput
#endif
#define _Signs_included
native cs_get_user_rank( id, Signs)
这个是头文件,可使用
newSigns
cs_get_user_rank( id, Signs)
去无法获取,试了N种获取名字方法和定义 Signs都无法通过,请问是什么原因?谢谢

Cr@zyTreE 发表于 2008-8-11 18:55:48

回复: 请教一个函数获取使用方法

Post by wwww23
这个是头文件,可使用
new Signs
cs_get_user_rank( id, Signs)
去无法获取,试了N种获取名字方法和定义 Signs都无法通过,请问是什么原因?谢谢

试试
new Signs
cs_get_user_rank( id, Signs)


看看
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
get_user_name(id, name, 17)
client_print(id, print_chat, "Your name is: %s", name)

wwww23 发表于 2008-8-11 18:59:51

回复: 请教一个函数获取使用方法

谢谢,好像行了。:sweet_kis
页: [1]
查看完整版本: 请教一个函数获取使用方法