|
发表于 2010-4-12 23:58:23
|
显示全部楼层
来自 中国–广东–佛山
本帖最后由 dadibao 于 2010-4-13 00:58 编辑
#define PLUGIN "haha_player_color"
#define VERSION "0.1"
#define AUTHOR "All the people"
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
// Add your code here...
}
public client_color(playerid, colorid, msg[])
{
message_begin(playerid?MSG_ONE:MSG_ALL,get_user_msgid("SayText"),_,playerid)
write_byte(colorid)
write_string(msg)
message_end()
}
public client_connect(id)
{
new msg[512], username[32]
get_user_name(id, username, 31)
format(msg, 511, "^x01欢迎^x04%s^x01进入本服务器", username)
client_color(0, id, msg)
}
我来是顶帖的,嘻嘻。
我就喜欢站在巨人的肩膀上。谢谢。
MSG_ONE:MSG_ALL 是什么值?
get_user_msgid("SayText") 作用是什么? |
|