Добавил еще ведущие нули к миллисекундам, если кому-то еще когда-то этот код понадобится
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); }Вход в аккаунт с помощью куков.
-
Добрый день уважаемые, подскажите пожалуйста. есть вот куки
[{"domain":".yandex.ru","expirationDate":9999999999,"hostOnly":false,"httpOnly":true,"name":"Session_id","path":"/","sameSite":"unspecified","secure":true,"storeId":"0","value":"3:1738577733.5.0.1738577733312:f-OrUw:12bf.1.2:1|2099441556.0.2.3:1738577733|3:10302311.416123.3nI9MdGeUkJFrwhiDYB1susiArU"}]
как мне войти в аккаунт используя эту куку?)) не получается почему то)
-
@swasmml Попробуйте добавить к ним в начале {"cookies":
И в конце }А лучше использовать Конвертер, тип этого:
https://community.bablosoft.com/topic/18824/cookiestoolsИли вот этот как раз таки подставляет про то что я писал :)
https://community.bablosoft.com/topic/22288/rawcookieformatterСкрины: