Advertisement
Guest User

steal

a guest
Mar 6th, 2016
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.14 KB | None | 0 0
  1. --Sorry about shit format, you know me...
  2.  
  3. --Var
  4. local bankid = 9
  5. local account = "memer"
  6. local cash = "64" -- Remove quotes to crash server
  7.  
  8. rednet.open("top")
  9. term.setBackgroundColor(colors.black)
  10. term.clear()
  11. term.setCursorPos(1,1)
  12. term.setBackgroundColor(colors.gray)
  13. term.setTextColor(colors.black)
  14. paintutils.drawLine(1,1,51,1)
  15. term.setCursorPos(1,1)
  16. print("Bluebank Money Grabber")
  17. term.setCursorPos(1,2)
  18. term.setBackgroundColor(colors.black)
  19. term.setTextColor(colors.red)
  20. textutils.slowPrint("Establishing Bank Connection...")
  21. rednet.send(bankid, "Login")
  22. term.setTextColor(colors.lightGray)
  23. print("Username: ")
  24. term.setTextColor(colors.red)
  25. term.setCursorPos(10,3)
  26. local input = read()
  27. rednet.send(bankid, input)
  28. textutils.slowPrint("Sending victim name...")
  29. term.setTextColor(colors.lightGray)
  30. print("Password: ")
  31. term.setCursorPos(10,5)
  32. term.setTextColor(colors.red)
  33. local input2 = read()
  34. rednet.send(bankid, input2)
  35. textutils.slowPrint("Sending victim password...")
  36. textutils.slowPrint("Stealing Cash...")
  37. rednet.send(bankid, "Transfer")
  38. rednet.send(bankid, input)
  39. rednet.send(bankid, account)
  40. rednet.send(bankid, cash)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement