• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

script that player can give feedback of otserver

1268995

Member
Joined
Sep 9, 2010
Messages
422
Reaction score
13
Hello guys. My otserver are nice in my opinion but people are entering in it and leaving very fast.
I do not have lag problems, so its something about the server.

Well, said that, i think about a script of, maybe a book, that when i click on this book, appear that box (like when openning a normal book) and in that box i can write whatever i want about the server.

After writing my opinion, the things i wrote must be saved in some .txt (do u guys have other opinion?).

This way i can know why people are not enjoyng that much my server.

That's it, thanks!
 
Hello guys. My otserver are nice in my opinion but people are entering in it and leaving very fast.
I do not have lag problems, so its something about the server.

Well, said that, i think about a script of, maybe a book, that when i click on this book, appear that box (like when openning a normal book) and in that box i can write whatever i want about the server.

After writing my opinion, the things i wrote must be saved in some .txt (do u guys have other opinion?).

This way i can know why people are not enjoyng that much my server.

That's it, thanks!
They are probably leaving because they don't understand gnomish.
@topic. You should edit !report. It's pretty easy.
 
I tested and worked, but reports are not comming every time, some times i make a report and it do not appear on website...
How can i make it to appear on a .txt file ?

There is an exhaust in those scripts, 30 seconds I believe. It should work everytime unless you are trying to type it while you are exhausted. In which case it will tell you that you are exhausted and must wait 30 seconds.

You could just remove the exhaust but if you still want to log it to a file then adapt this to your code:

Just an example:
Code:
infoFile = 'word.txt'   
local newFile = io.open(infoFile, "w")
for i=1,4 do
    newFile:write(i .. '\n')
end
newFile:close()
 
There is an exhaust in those scripts, 30 seconds I believe. It should work everytime unless you are trying to type it while you are exhausted. In which case it will tell you that you are exhausted and must wait 30 seconds.

You could just remove the exhaust but if you still want to log it to a file then adapt this to your code:

Just an example:
Code:
infoFile = 'word.txt'  
local newFile = io.open(infoFile, "w")
for i=1,4 do
    newFile:write(i .. '\n')
end
newFile:close()

Thanks! i found a script thar worked: https://otland.net/threads/a-better-way-to-report-bugs.147048/

SOLVED!
 
Back
Top