Advertisement
Guest User

Untitled

a guest
Jul 28th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.88 KB | None | 0 0
  1. initialize tab:
  2. ----------------
  3. int main(){
  4. // This is an attack script designed for use against NPC's.
  5. // Due to the fact that most human opponents have randomly assigned ports, this script
  6. // may not be of much use against human opponents.
  7. //                                          1equals1--
  8. int main(){
  9.   // Anti-overheat
  10.   if(getCPULoad() / getMaximumCPULoad() > 0.92){
  11.     cancelAttack();
  12.   }
  13. }
  14. }
  15.  
  16. -----------------------
  17. finalize tab
  18. -----------------------
  19. int main(){
  20. int main(){
  21.   // Initialize variables
  22.   string me = getSourceIP();
  23.   int port = getTargetPort();
  24.  
  25.   // Uses appropriate function for corresponding port
  26.   if(port == 1){
  27.     emptyPettyCash();
  28.   }else if(port == 2){
  29.     showChoices();
  30.   }else if(port == 5){
  31.     changeDailyPay(me);
  32.   }else{
  33.     deleteLogs(me);
  34.   }
  35. }
  36. }
  37.  
  38. ----------------------
  39. continue tab
  40. ----------------------
  41. N/A
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement