引用:
原帖由 digimon814 於 2009-12-28 13:59 發表 
我想問點樣可以係個SER到整歡迎字句
複製內容到剪貼板
代碼:
#include <sourcemod>
#include <topmenus>
#include <menus>
#include <timers>
public Plugin:myinfo =
{
name = "玩家進入公告",
author = "YSH=]",
description = "於玩家進入時公告",
version = "1.0.0.0",
url = " . com"
};
public OnClientConnected(client)
{
new String:name[64]
GetClientName(client, name, sizeof(name))
PrintToChatAll("\x04[SM] \x01 %s 進入遊戲,好好地歡迎他吧!", name)
}
呢個?