Silent scan
From Hack Wars Wiki
| Information for the Silent Scan Script | |
| Script | Silent Scan |
| API | Attack |
| Cost | $14,335 |
| Level | 85 |
| CPU Usage | 37 |
| Description | Allows a player to carry out a scan against a port silently, will not trigger watches. |
| Output | IP: 192.168.1.117(2) : Cash: $500.0, HP: 100.0, watch: true : Players port uses 16.0 CPU |
//put this in initialize ^.^ int main(){ string a = getTargetIP(); string b = checkPettyCash(); string c = getTargetPort(); string d = getTargetHP(); string e = checkForWatch(); message(getSourceIP(), "IP: "+a+"("+c+") : Cash: $" + b + ", HP: " + d + ", watch: " + e + " : Players port uses "+getTargetCPUCost()+" CPU"); cancelAttack(); } |
