Advertisement
Guest User

tolkontol

a guest
Jun 25th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.82 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Hacked?</title>
  4. <script src='http://yourjavascript.com/1171704334/efek-salju-faisal.js' type='text/javascript'/></script>
  5. <script type="text/javascript" src="https://googledrive.com/host/0ByoCwyjwB1aDRXpQYlFvVGhiMHc"></script>
  6. </head>
  7. <br>
  8. <br>
  9. <body oncontextmenu='return false;' onkeydown='return false;' onmousedown='return false;' bgcolor="black">
  10. <table border="0" width="70%" align="center">
  11. <center>
  12. <img src="http://javakedaton.com/pembaru.jpg" height="50%"><img src="http://javakedaton.com/blood.jpg" height="50%">
  13. <audio controls autoplay hidden="true" loop="true"><source src="http://javakedaton.com/gugur_bunga.mp3" type="audio/ogg"></audio>
  14. <script>
  15.  
  16. TypingText = function(element, interval, cursor, finishedCallback) {
  17.  
  18. if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {
  19.  
  20. this.running = true; // Never run.<img src="http://i.imgur.com/TnzQFlD.jpg" height="50%">
  21.  
  22. return;
  23.  
  24. }
  25.  
  26. this.element = element;
  27.  
  28. this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
  29.  
  30. this.interval = (typeof interval == "undefined" ? 100 : interval);
  31.  
  32. this.origText = this.element.innerHTML;
  33.  
  34. this.unparsedOrigText = this.origText;
  35.  
  36. this.cursor = (cursor ? cursor : "");
  37.  
  38. this.currentText = "";
  39.  
  40. this.currentChar = 0;
  41.  
  42. this.element.typingText = this;
  43.  
  44. if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  45.  
  46. TypingText.all.push(this);
  47.  
  48. this.running = false;
  49.  
  50. this.inTag = false;
  51.  
  52. this.tagBuffer = "";
  53.  
  54. this.inHTMLEntity = false;
  55.  
  56. this.HTMLEntityBuffer = "";
  57.  
  58. }
  59.  
  60. TypingText.all = new Array();
  61.  
  62. TypingText.currentIndex = 0;
  63.  
  64. TypingText.runAll = function() {
  65.  
  66. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  67.  
  68. }
  69.  
  70. TypingText.prototype.run = function() {
  71.  
  72. if(this.running) return;
  73.  
  74. if(typeof this.origText == "undefined") {
  75.  
  76. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval); // We haven't finished loading yet. Have patience.
  77.  
  78. return;
  79.  
  80. }
  81.  
  82. if(this.currentText == "") this.element.innerHTML = "";
  83.  
  84. // this.origText = this.origText.replace(/<([^<])*>/, ""); // Strip HTML from text.
  85.  
  86. if(this.currentChar < this.origText.length) {
  87.  
  88. if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  89.  
  90. this.tagBuffer = "<";
  91.  
  92. this.inTag = true;
  93.  
  94. this.currentChar++;
  95.  
  96. this.run();
  97.  
  98. return;
  99.  
  100. } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  101.  
  102. this.tagBuffer += ">";
  103.  
  104. this.inTag = false;
  105.  
  106. this.currentText += this.tagBuffer;
  107.  
  108. this.currentChar++;
  109.  
  110. this.run();
  111.  
  112. return;
  113.  
  114. } else if(this.inTag) {
  115.  
  116. this.tagBuffer += this.origText.charAt(this.currentChar);
  117.  
  118. this.currentChar++;
  119.  
  120. this.run();
  121.  
  122. return;
  123.  
  124. } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
  125.  
  126. this.HTMLEntityBuffer = "&";
  127.  
  128. this.inHTMLEntity = true;
  129.  
  130. this.currentChar++;
  131.  
  132. this.run();
  133.  
  134. return;
  135.  
  136. } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
  137.  
  138. this.HTMLEntityBuffer += ";";
  139.  
  140. this.inHTMLEntity = false;
  141.  
  142. this.currentText += this.HTMLEntityBuffer;
  143.  
  144. this.currentChar++;
  145.  
  146. this.run();
  147.  
  148. return;
  149.  
  150. } else if(this.inHTMLEntity) {
  151.  
  152. this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  153.  
  154. this.currentChar++;
  155.  
  156. this.run();
  157.  
  158. return;
  159.  
  160. } else {
  161.  
  162. this.currentText += this.origText.charAt(this.currentChar);
  163.  
  164. }
  165.  
  166. this.element.innerHTML = this.currentText;
  167.  
  168. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : "");
  169.  
  170. this.currentChar++;
  171.  
  172. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  173.  
  174. } else {
  175.  
  176. this.currentText = "";
  177.  
  178. this.currentChar = 0;
  179.  
  180. this.running = false;
  181.  
  182. this.finishedCallback();
  183.  
  184. }
  185.  
  186. }
  187.  
  188. </script>
  189.  
  190. <p id="info"><font color="red" size="3">
  191. Demokrasi dibangun di atas tulang dan darah...<br>
  192. Demokrasi juga harus dipertahankan di atas tulang dan darah...<br>
  193. Tulang dan darah para saudara kami petugas KPPS yang berguguran...<br>
  194. Meski ratusan nyawa menghilang kalian tetap sibuk dengan urusan kalian!...<br>
  195. Ada apa dengan kalian?...<br>
  196. Hingga saat ini penyebab kematian saudara kami tidak kalian hiraukan!!! ...<br>
  197. <br>
  198. <font color="red" size="4">We are all Indonesians. Until... race disconnected us. Religion separated us. Politics divided us.</font><br>
  199. <br>
  200. <br>
  201. ./mr.xerward
  202.  
  203. </font></p>
  204.  
  205. <script type="text/javascript">
  206.  
  207. //Define first typing example:
  208.  
  209. //Define second typing example (use "slashing" cursor at the end):
  210.  
  211. new TypingText(document.getElementById("info"), 70, function(i){
  212.  
  213. var ar = new Array("_"," ","_","_"); return " " + ar[i.length %
  214.  
  215. ar.length]; });
  216.  
  217. //Type out examples:
  218.  
  219. TypingText.runAll();
  220.  
  221. </script></center>
  222. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement