我的任务是为Crysis Wars创建一个新的服务器修改。我遇到了一个特殊的问题,它无法读取旧的禁止文件(这是为了保持服务器一致所必需的)。 Lua代码本身似乎没有任何错误,但它只是没有得到任何数据。 看下面我正在使用的代码,你能发现它有什么问题吗?
这是我正在使用的代码:
function rX.CheckBanlist(player)
local Root = System.GetCVar("sys_root");
local File = ""..Root.."System/Bansystem/Raptor.xml";
local FileHnd = io.open(File, "r");
for line in FileHnd:lines() do
if (not string.find(line, "User:Read")) then
System.Log("[rX] File Read Error: System/Raptor/Banfile.xml, The contents are unexpected.");
return false;
end
local Msg, Date, Reason, Type, Domain = string.match(line, "User:Read( '(.*)', { Date='(.*)'; Reason='(.*)'; Typ='(.*)'; Info='(.*)'; } );");
local rldomain = g_gameRules.game:GetDomain(player.id);
if (Domain == rldomain) then
return true;
else
return false;
end
end
end
此外,实际文件读取为此,但我无法正确使用“在Lua中正常工作。这可能是问题吗?
User:Read( "Banned", { Date="31.03.2011"; Reason="WEBSTREAM"; Typ="Inetnum"; Info="COMPUTER.SED.gg"; } );
答案 0 :(得分:1)
当您想在引号内包含引号等时,您可能更喜欢将Lua的[[
用于多行字符串。
此外,您必须在匹配时逃离(
和)
:
local Msg, Date, Reason, Type, Domain = line:match([[User:Read%( "(.-)", { Date="(.+)"; Reason="(.+)"; Typ="(.+)"; Info="(.+)"; } %);]])
结果将符合预期:http://codepad.org/gN8kSL6H