You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 24, 2026. It is now read-only.
letdefaultText=`Main Process: \n Current IP/s: ${currData.total-currData.totalLast} IP/s \n Total Assigned: ${currData.assigned} \n Total TCP Restarts: ${currData.tcpRestarts} \n Total Finds & Total Try: ${currData.finds} & ${currData.total} \n Current Rate: ${((currData.finds/currData.total)*100).toFixed(2)}% \n Total Sub-Processes: ${currData.subprocesses} \n Current IP: ${currData.lastIp} \nSub-Processes: `
123
+
letdefaultText=`Main Process: \n Current IP/s: ${(currData.total-currData.totalLast)*2} IP/s \n Total Assigned: ${currData.assigned} \n Total TCP Restarts: ${currData.tcpRestarts} \n Total Finds & Total Try: ${currData.finds} & ${currData.total} \n Current Rate: ${((currData.finds/currData.total)*100).toFixed(2)}% \n Total Sub-Processes: ${currData.subprocesses} \n Current IP: ${currData.lastIp} \nSub-Processes: `
120
124
assignedList.forEach(async(data,n)=>{
121
125
defaultText+="\n Process processNumber: Current IP: currentIP Last Response: lastResponseText Status: statusText Total Assigned: assignedInt Total Finds: findInt Restarts: restartInt Responseless Pings: pingInt ".replace("processNumber",n.toString()).replace("findInt",data[1].finds).replace("assignedInt",data[1].assigned).replace("currentIP",data[1].currentIp).replace("lastResponseText",`${getColor(data[1].lastresponsetext,"ms")}${data[1].lastresponsetext}ms\x1b[0m`).replace("statusText",`${getColor({data: data[1].assigned,extra: data[1].currentPings},"status")}\x1b[0m`).replace("restartInt",data[1].restarts).replace("pingInt",data[1].currentPings)
0 commit comments