1

我的任务是为 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"; } );
4

1 回答 1

1

[[当您想在引号等中包含引号时,您可能更喜欢使用 Lua 的多行字符串。

此外,您必须在匹配时转义(和:)

local Msg, Date, Reason, Type, Domain = line:match([[User:Read%( "(.-)", { Date="(.+)"; Reason="(.+)"; Typ="(.+)"; Info="(.+)"; } %);]])

结果将如预期:http ://codepad.org/gN8kSL6H

于 2013-05-26T11:41:30.657 回答