Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script>
- function GenImGurImage()
- {
- var text = "";
- var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
- for( var i=0; i < 5; i++ ){
- text += possible.charAt(Math.floor(Math.random() * possible.length));
- if (text=="http://i.imgur.com/oTyQRvX.gif"){
- alert("Ryu I love you!!");
- window.location="https://campcom.com/streetfighter";
- }
- }
- document.writeln('<center><button onclick=GenImGurImage();>Display One Random ImGur.com Image</button><p><img src=http://i.imgur.com/'+text+'.gif></img><br><br>');
- }
- GenImGurImage();
- </script>
Advertisement
Add Comment
Please, Sign In to add comment