function Win_BGM(fd,packet,player)
local floortype = Char.GetData(player,3)
local mapid = Char.GetData(player,4)
local BGM_2 = Stringsplitplus(packet," ")
--[[参考
if(BGM_2[2] == "0")then
Protocol.Send(fd,"SendBgm ./mp3/1.mp3")
return 1;
end
--]]
Protocol.Send(fd,"WinmlSendBgm "..BGM_2[2]);
--NLG.SystemMessage(player,"BGM_2[2]是:"..BGM_2[2].."BGM_2[3]是"..BGM_2[3])
return 1
end
|
|