Добавил еще ведущие нули к миллисекундам, если кому-то еще когда-то этот код понадобится
log = function (text, color, define){ var id, time, thread, logHtml, textLog; define = (typeof define == 'string') ? define.split(/[\s,.|:;]+/g) : define; if(typeof define === 'object' && define !== null){ if(Array.isArray(define)){ id = define.indexOf('id') > -1; time = define.indexOf('time') > -1; thread = define.indexOf('thread') > -1; } else{ id = define.id == true; time = define.time == true; thread = define.thread == true; } } else id = time = thread = true; id = id ? '<a href="action://action' + ScriptWorker.GetCurrentAction() + '" style="color:gray;">[' + ScriptWorker.GetCurrentAction() + ']</a>' : ''; time = time ? ' ' + getTime() : ''; thread = thread ? ' Поток №' + thread_number() : ''; logHtml = (id || time || thread) ? id + '<span style="color: white">' + time + thread + ' : </span>' : ''; logHtml += '<span style="color:' + (color ? color : 'white') + '">' + text + '</span>'; textLog = '[' + ScriptWorker.GetCurrentAction() + ']' + time + thread + ' : ' + text function getTime(){ var checkTime = function(i){ return (i < 10) ? "0" + i : i; }; var checkMilliSeconds = function(ms){ if (ms < 10) { return "00" + ms; } else if (ms < 100) { return "0" + ms; } else { return ms; } }; var d = new Date(); var hh = checkTime(d.getHours()); var mm = checkTime(d.getMinutes()); var ss = checkTime(d.getSeconds()); var ms = checkMilliSeconds(d.getMilliseconds()); return '[' + hh + ':' + mm + ':' + ss + '.' + ms + ']'; }; Logger.WriteHtml(logHtml, textLog); }Как сделать так, чтобы если в файле находило одно и тоже слово, строка не использовалась?
-
Пример:
Line 3220: 2021-02-24 21:39:09 | Login: Pavel_Poka | Server: 51.38.143.197:7777 [RADMIR RolePlay | ] | Info[id: 2] 354272szx | User-IP: 176.122.114.140
Line 3232: 2021-02-24 21:37:54 | Login: Pavel_Poka | Server: 51.38.143.197:7777 [RADMIR RolePlay | ] | Info[id: 2] 354272szx | User-IP: 176.122.114.140
вот у меня есть 2 строки, и как видно в них одинаковый пароль (354272szx) как сделать так, чтобы 1 строку в которой обнаружен данный пароль бас использовал, а остальные с тем же паролем нет? -


{{file}} - ресурс-файл с которого берутся строки. каждая строка используется один раз.
JS-код который парсит строку - [[LINEFROMFILE]].split('|')[4].trim().split(' ')[2]
(может не самый лучший вариант зато быстрый в плане реализации).up: блок "Добавить Элемент" стоит переместить под if там где Лог выводится