我正在尝试为Garry的Mod创建一个Lua插件但我在代码中遇到错误。 这是我的代码:
function say (Player, text, ent)
s = "/misc/custom/"..text
s2 = s..".mp3"
sound.PlayFile(s2)
end
hook.Add("PlayerSay", "Say", say)
这是由此产生的错误。
[saysoundtest25] lua/autorun/chatsounds.lua:4: attempt to call field 'PlayFile' (a nil value)
1. v - lua/autorun/chatsounds.lua:4
2. unknown - lua/includes/modules/hook.lua:84
有什么想法吗?
答案 0 :(得分:0)
/lua/autorun
文件是服务器端,并且存在变量sound
服务器端Lua,但仅在客户端存在sound.PlayFile
。
if SERVER then
AddCSLuaFile() -- We're the server running this code! Let's send it to the client
else -- We're a client!
-- Your code here, only ran by the client!
end
有关详细信息,请参阅the Garry's Mod wiki,并注意页面上的橙色框,这意味着它是客户端。
请记住检查该功能的用途:
sound.PlayFile( string path, string flags, function callback )
示例(取自维基)
sound.PlayFile( "sound/music/vlvx_song22.mp3", "", function( station )
if ( IsValid( station ) ) then station:Play() end
end )
搜索文档也更简单:
http://glua.me/docs/#?q=sound.PlayFile
DarkRP如何处理这个问题:
https://github.com/FPtje/DarkRP/blob/master/gamemode/modules/chatsounds.lua#L275
答案 1 :(得分:0)
Facepunch上的用户Robotboy655帮我解决了这个问题!最终代码:
hook.Add( "PlayerSay", "Say", function( ply, text, team )
BroadcastLua( 'surface.PlaySound("misc/custom/' .. text .. '.mp3")' )
end )
感谢大家的帮助!