Advertisement
Guest User

Space Engineers Possibilites.

a guest
Jun 10th, 2014
449
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //Death to unprotected or number-based password systems (if we scripted in pseudo code)
  2. Ship us = this.ship;
  3. Transmitter tran = us.getTransmitter();
  4. tran.startTransmission();
  5. Ship enemy = this.ship;
  6. if !(enemy.Permissions.allowed(us.id)) {
  7. for(int crack = 0; !(enemy.Permissions.allowed(us.id)); crack++)
  8. enemy.Permissions.login(us.id, crack);
  9. }
  10. Group tur = enemy.getAllTurrets();
  11. tur.attack = enemy;
  12. tran.endTransmission();
  13. //Now the system will run this and will kill the enemy ship with all auto turrets
  14.  
  15. //Virus Creation
  16. Ship us = this.ship;
  17. Transmitter t = us.getTransmitter();
  18. t.startTransmission();
  19. Ship enemy = this.ship;
  20. Group all = enemy.getAllBlocks();
  21. string attack = "Ship enemy = this.ship; string attack = enemy.getBlock().code; Transmitter t = enemy.getTransmitter(); t.startTransmission(); Ship enemy2 = this.ship;  Group all = enemy2.getAllBlocks(); all.code = attack; this.Shutdown;" //No line break though
  22. all.code = attack;
  23. t.endTransmission();
  24. //Now anyone who comes near this person with get infected, try to infect others then shutdown once.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement