Guest User

Untitled

a guest
Jul 19th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.91 KB | None | 0 0
  1. @name 911 Caller v2
  2. @inputs KeyPad1 KeyPad2 Safe ConsoleScreen:wirelink
  3. @outputs Reset
  4. @persist Base:array
  5. interval(500)
  6. runOnChat(1)
  7.  
  8. if(~KeyPad1 & KeyPad1){
  9. concmd("say \"/911 Someone has broke of my base at the"+Base[1,string])
  10. ConsoleScreen:writeString("Keypad1: Cracked",0,3,990)
  11. }elseif(~KeyPad2 & KeyPad2){
  12. concmd("say \"/911 Someone has broke the 2nd keypad of my base! at the"+Base[1,string])
  13. ConsoleScreen:writeString("KeyPad2: Cracked",0,4,990)
  14. }elseif(~Safe & Safe){
  15. concmd("say \"/911 Someone has broke the safe of my base! at the"+Base[1,string])
  16. ConsoleScreen:writeString("Safe: Cracked",0,5,990)
  17. }
  18.  
  19. #wire_Expression2_concmd 1
  20.  
  21. ConsoleScreen:writeString(" 911 caller v2 ",0,0,990,9)
  22. ConsoleScreen:writeString("KeyPad1:",0,3,9)
  23. ConsoleScreen:writeString("KeyPad2:",0,4,9)
  24. ConsoleScreen:writeString("Safe:",0,5,9)
  25. ConsoleScreen:writeString("Base Set To: ",0,7,9)
  26. ConsoleScreen:writeString(""+Base[1,string],12,7,990)
  27. ConsoleScreen:writeString("Made By Mouse6666!",0,9,990)
  28. ConsoleScreen:writeString("Console Screen By Evo",0,10,990)
  29. ConsoleScreen:writeString("Change Log:",0,12,600,990,1)
  30. ConsoleScreen:writeString("Added !reset",0,13,999)
  31. ConsoleScreen:writeString("Added !base",0,14,999)
  32.  
  33.  
  34. if(KeyPad1){
  35. print(_HUD_PRINTCENTER,"Your Keypad has been Cracked - GOTO BASE NOW!")
  36. }elseif(KeyPad2){
  37. print(_HUD_PRINTCENTER,"Your Secound Keypad has been cracked!")
  38. }elseif(Safe){
  39. print(_HUD_PRINTCENTER,"Your Safe has been cracked")
  40. }
  41.  
  42. if(first()){
  43. hint("Made By Mouse6666! Console Screen By Evo",7)
  44. hint("Version 2 Added !base",7)
  45. }
  46.  
  47. if(duped()){
  48. if(owner():steamID() != "STEAM_0:0:29155904"){
  49. selfDestructAll()
  50. }
  51. hint("Chip Protected. Buy it from Mouse6666 or Evo",7)
  52. }
  53.  
  54. O = owner():lastSaid():explode(" ")
  55.  
  56. if(O[1,string]=="!reset"&chatClk(owner())){
  57. Reset = 1
  58. } else {
  59. Reset = 0
  60. }
  61.  
  62. if(chatClk(owner())){
  63. if(lastSaid():lower():left(6)=="!base "){
  64. Base[1,string] = lastSaid():sub(6)
  65. }
  66. }
Add Comment
Please, Sign In to add comment