level 2
xxiong_666
楼主
#include <sourcemod>
public Plugin:myinfo =
{
name = "joinserver",
author = "z",
description = "<- ->",
version = "1.0",
url = "<- URL ->"
}
public OnPluginStart()
{
}
public OnClientPutInServer(client)
{
if(!IsFakeClient(client))
{
PrintToChatAll("\x04 Welcome to XXX!",client)
}
}
输出欢迎语,并播放某个声音。欢迎语已经输出了。
求教播放声音的语句怎么写
2015年05月26日 03点05分
1
public Plugin:myinfo =
{
name = "joinserver",
author = "z",
description = "<- ->",
version = "1.0",
url = "<- URL ->"
}
public OnPluginStart()
{
}
public OnClientPutInServer(client)
{
if(!IsFakeClient(client))
{
PrintToChatAll("\x04 Welcome to XXX!",client)
}
}
输出欢迎语,并播放某个声音。欢迎语已经输出了。
求教播放声音的语句怎么写