|
发表于 2011-2-21 23:18:11
|
显示全部楼层
来自 中国–四川–遂宁
4# 我是新手 - public new_round()
- {
- new Message[128];
- for(new i=0; i<get_maxplayers(); i++)
- {
- if (get_user_flags(i) & ADMIN_LEVEL_G)
- {
- format(Message, 127, "^x04【提示】^x03你已具有^x01【某某权限】。");
- client_color(i, i, Message);
- }
- }
- }
- 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();
- }
复制代码 |
|