Jump to content

Нужна помощь, очень срочно, связано с lua файлами


Recommended Posts

Ребят, привет, возник такой вопрос и я не знаю как его реализовать, смотрите, я пользователь который находится на сервере и как можно сделать так, что бы на стороне клиента прочитать какой то луа файл и вывести его текст на экран или через текстовый документ куда то, возможно ли такое?

Link to comment

Или как вот тут указать правильный путь до любого файла в кэше? 
 

local hFile = fileOpen("test.txt", true)       -- attempt to open the file (read only)
if hFile then                                  -- check if it was successfully opened
    local buffer
    while not fileIsEOF(hFile) do              -- as long as we're not at the end of the file...
        buffer = fileRead(hFile, 500)          -- ... read the next 500 bytes...
        outputConsole(buffer)                  -- ... and output them to the console
    end
    fileClose(hFile)                           -- close the file once we're done with it
else
    outputConsole("Unable to open test.txt")
end
Link to comment
8 hours ago, mrevens said:

Или как вот тут указать правильный путь до любого файла в кэше? 
 

local hFile = fileOpen("test.txt", true)       -- attempt to open the file (read only)
if hFile then                                  -- check if it was successfully opened
    local buffer
    while not fileIsEOF(hFile) do              -- as long as we're not at the end of the file...
        buffer = fileRead(hFile, 500)          -- ... read the next 500 bytes...
        outputConsole(buffer)                  -- ... and output them to the console
    end
    fileClose(hFile)                           -- close the file once we're done with it
else
    outputConsole("Unable to open test.txt")
end

Читать файл можешь там где вызывается (если на стороне клиента то клиентские файлы), но там есть ограничения на пути (либо текущий ресурс/либо из другого через : (например так fileOpen(":objectSearch/coolObjects.txt"))), вне папки resources читать нельзя.

Edited by Kenix
Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...