diff --git a/_worker.js b/_worker.js index d7e7a79c4..09890e1b3 100644 --- a/_worker.js +++ b/_worker.js @@ -3,9 +3,9 @@ import { connect } from 'cloudflare:sockets'; // How to generate your own UUID: // [Windows] Press "Win + R", input cmd and run: Powershell -NoExit -Command "[guid]::NewGuid()" -let userID = '0eed06f7-b281-4671-987a-9ffc1bd3bc78'; // Change this uuid before use this code!! +let userID = '0eed06f7-b281-4671-987a-9ffc1bd3bc78'; -const proxyIPs = ['202.93.229.2', 'cdn.xn--b6gac.eu.org', 'cdn-all.xn--b6gac.eu.org', 'workers.bestip.one']; // Change or add new proxyIP right here!! +const proxyIPs = ['202.93.229.2', 'cdn.xn--b6gac.eu.org', 'cdn-all.xn--b6gac.eu.org', 'workers.bestip.one']; // if you want to use ipv6 or single proxyIP, please add comment at this line and remove comment at the next line let proxyIP = proxyIPs[Math.floor(Math.random() * proxyIPs.length)];