Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
- <h2 id="FindCoreSoftware" style="margin: auto;text-align: center;color: yellow;background: rgba(52, 52, 52, 0.9);border-radius: 20px;">Looking For Core Software</h2>
- <button onclick="javasript:StartCoreFinder();">Find</button>
- <script>
- var FindCore=0;
- var FindCoreStage=0;
- function CoreSoftwareFinder(){
- if(FindCoreStage===0){
- document.getElementById("FindCoreSoftware").style.color="yellow";
- document.getElementById("FindCoreSoftware").innerHTML="Looking For Core Software";
- $.ajax({
- url: "http://127.0.0.1:22222",
- cache:false,
- success: function(output){
- ResetCoreFinder();
- document.getElementById("FindCoreSoftware").style.color="green";
- document.getElementById("FindCoreSoftware").innerHTML=output;
- },
- error: function(output){
- ResetCoreFinder();
- document.getElementById("FindCoreSoftware").style.color="red";
- document.getElementById("FindCoreSoftware").innerHTML="Can't Find Core Server!";
- }
- });
- FindCoreStage=1;
- }else if(FindCoreStage===1){
- document.getElementById("FindCoreSoftware").style.color="yellow";
- document.getElementById("FindCoreSoftware").innerHTML="Looking For Core Software.";
- FindCoreStage=2;
- }else if(FindCoreStage===2){
- document.getElementById("FindCoreSoftware").style.color="yellow";
- document.getElementById("FindCoreSoftware").innerHTML="Looking For Core Software..";
- FindCoreStage=3;
- }else if(FindCoreStage===3){
- document.getElementById("FindCoreSoftware").style.color="yellow";
- document.getElementById("FindCoreSoftware").innerHTML="Looking For Core Software...";
- FindCoreStage=1;
- }
- }
- function ResetCoreFinder(){
- clearInterval(FindCore);
- FindCoreStage=0;
- FindCore=0;
- }
- function StartCoreFinder(){
- FindCore=setInterval(CoreSoftwareFinder,222);
- }
- StartCoreFinder();
- </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement