Announcement

Collapse
No announcement yet.

game is blocked in loading screen

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • game is blocked in loading screen

    So..for my account the game is blocked in loading screen for a few months now. I don't know what is the problem but for some reason this is what's happening. It starts to load the game and goes to 100% and stops there . It had a few time when it did manage to enter the game but after a few minutes stopped working again. Does anyone else have the same problem as mine? and if so, did you guys found any solutions to fix it? Thx

  • #2
    Please provide the name and server you're playing and if you can include a picture of your browser that used for the issue has been commit !

    For information open window console at loading screen and fix all cookies in there and be sure there is no lax at same site situation !

    This is loading screen for this day now on, you can save for your any background picture if you like !:

    Click image for larger version

Name:	2.jpg
Views:	2604
Size:	121.5 KB
ID:	1460

    Hope you enjoy this game !

    sincerely yours,
    rohatos / uf 2
    Last edited by N.039018377; 10-01-2020, 09:28 PM.
    [email protected]

    Comment


    • N.026328354
      N.026328354 commented
      Editing a comment
      Hi! My name is jasmin89 / uf2 and I have checked all permissions. I have been playing the game for a long time and didn't change anything on my browser regarding the game. It just stopped working a few months ago. My browser is Chrome. Thx!
      Last edited by N.026328354; 10-02-2020, 08:30 PM.

  • #3
    bansheracer uf1 my game is not loading either on 3 different browsers. Loads like normal but doesnt go any farther then goes to black screen. has been doing this since the sept 30

    Comment


    • #4
      For Chrome iit's has been issued to browser for edge from Chromium that used flash for game and also banseracher do the flash update if goes black screen and then try the browser Safari 5 or IE 11 for flash playing instead Chrome that you must edit the browser to play flash and handle event like canplay video or picture in picture playing that all has been migrate in Firefox so them can't be played no more at Chrome instead try build Chromium for better browsing, I do this at Firefox Development 82 so if you want try Firefox Beta 72 it's best for nightly 74 for android or Beta 68.
      Don't forget change cookies behavior when the load begin or after fill the password also in NGames home pages try change the _cfduid cookies not for lax its expire for G+ so change none for HTTP and none for secure!

      Code:
      console.clear();
      PHP Code:
      <?php
      setcookie
      ("test_cookie""test"time() + 3600'/');
      ?>
      <html>
      <body>

      <?php
      if(count($_COOKIE) > 0) {
          echo 
      "Cookies are enabled.";
      } else {
          echo 
      "Cookies are disabled.";
      }
      ?>

      yours truly,
      rohatos/ uf2
      Last edited by N.039018377; 10-04-2020, 09:24 AM.
      [email protected]

      Comment


      • #5
        There is so many clear time out for loading scheme in page of load screen this is because the G+ plus cookies still interact and attach within N Games form password fill so try in change with this several code in web console:

        #1 {this code if you focusing in web browser and had a lot patience to wait 30 second }

        Code:
        function resolveAfter2Seconds(x) {
        return new Promise(resolve => {
        setTimeout(() => {
        resolve(x);
        }, 2000);
        });
        }
        
        let AsyncFunction = Object.getPrototypeOf(async function(){}).constructor
        
        let a = new AsyncFunction('a',
        'b',
        'return await resolveAfter2Seconds(a) + await resolveAfter2Seconds(b);');
        
        a(10, 20).then(v => {
        console.log(v); // prints 30 after 4 seconds
        });

        #2 (for attention this code works only once at tab you used for it if twice came error of declaration dropped or if you do after close tab then open new tab again for load screen it might be works once again only )

        Code:
        window.addEventListener('unload', logData, false);
        
        function logData() {
        navigator.sendBeacon("/log", analyticsData);
        }
        
        function handleCallButton(evt) {
        setStatusMessage("Calling...");
        navigator.mediaDevices.getUserMedia({video: true, audio: true})
        .then(chatStream => {
        selfViewElem.srcObject = chatStream;
        chatStream.getTracks().forEach(track => myPeerConnection.addTrack(track, chatStream));
        setStatusMessage("Connected");
        }).catch(err => {
        setStatusMessage("Failed to connect");
        });
        }
        
        let timeoutPromise = new Promise((resolve, reject) => {
        setTimeout(function(){
        resolve('Success!');
        }, 2000);
        });
        
        timeoutPromise
        .then((message) => {
        alert(message);
        })

        #3 [just in case the aggressive behave has come into your sense of mad you can do this math console any time you like to click again for >Run and ... click more ... more ... and ... more ... again... until you see response from server load is open]

        Code:
        function getRandomInt(max) {
        return Math.floor(Math.random() * Math.floor(max));
        }
        
        console.log(getRandomInt(3));
        // expected output: 0, 1 or 2
        
        console.log(getRandomInt(1));
        // expected output: 0
        
        console.log(Math.random());
        // expected output: a number between 0 and 1
        
        function getRandomInt(min, max) {
        min = Math.ceil(min);
        max = Math.floor(max);
        return Math.floor(Math.random() * (max - min) + min);
        //The maximum is exclusive and the minimum is inclusive
        }
        console.log(getRandomInt(3));
        // expected output: 0, 1 or 2
        
        console.log(getRandomInt(1));
        // expected output: 0
        
        console.log(Math.random());
        // expected output: a number between 0 and 1

        #4 || This code going to make alarm for load screen tab if you click anywhere on the screen even at the flying cracker in the screen will trigger the alarm to ensure the server wake up and open the load screen from expired or lax cookies from G+ plus to changing for lang cookies for Google Translate ||

        Code:
        Promise.resolve('Success').then(function(value) {
        console.log(value); // "Success"
        }, function(value) {
        // not called
        });
        
        // Resolving a thenable object
        var p1 = Promise.resolve({
        then: function(onFulfill, onReject) { onFulfill('fulfilled!'); }
        });
        console.log(p1 instanceof Promise) // true, object casted to a Promise
        
        p1.then(function(v) {
        console.log(v); // "fulfilled!"
        }, function(e) {
        // not called
        });
        
        // Thenable throws before callback
        // Promise rejects
        var thenable = { then: function(resolve) {
        throw new TypeError('Throwing');
        resolve('Resolving');
        }};
        
        var alarm = {
        remind: function(aMessage) {
        alert(aMessage);
        this.timeoutID = undefined;
        },
        
        setup: function() {
        if (typeof this.timeoutID === 'number') {
        this.cancel();
        }
        
        this.timeoutID = window.setTimeout(function(msg) {
        this.remind(msg);
        }.bind(this), 1000, 'Wake up!');
        },
        
        cancel: function() {
        window.clearTimeout(this.timeoutID);
        }
        };
        window.onclick = function() { alarm.setup(); };

        #5 // This is last time to do function is asynchronous encryption to call your web browser and server security crypts to prevent any circumstance to avoid pain that has been cal back from hijacker with Ajax or python to get password so you had time out in case of pain in dump and error hang monitor that attack came from insider, you can did as much you want to do or prevent the dialog for fast to do more \\

        Code:
        async function encrypt(plaintext, salt, iv) {
        let keyMaterial = await getKeyMaterial();
        let key = await window.crypto.subtle.deriveKey(
        {
        "name": "PBKDF2",
        salt: salt,
        "iterations": 100000,
        "hash": "SHA-256"
        },
        keyMaterial,
        { "name": "AES-GCM", "length": 256},
        true,
        [ "encrypt", "decrypt" ]
        );
        
        return window.crypto.subtle.encrypt(
        {
        name: "AES-GCM",
        iv: iv
        },
        key,
        plaintext
        );
        }
        
        console.time("answer time");
        alert("flash.events::.addEventListener(true, hasOwnkey)::TcpSocket/onPacket()");
        console.timeLog("answer time");
        alert("flash.events::logData(analyticsData)::TcpSo cket/recvData()");
        therefore is the benefits of this forum gave this sheet for editing code and if ... else you like even an HTML if you were an web designer you can put your web into in it this sheet AMAZING!



        PHP Code:
        <?php
        $t 
        date("H");
        echo 
        "<p>The hour (of the server) is " $t;
        echo 
        ", and will give the following message:</p>";

        if (
        $t "10") {
        echo 
        "Have a good morning!";
        } elseif (
        $t "20") {
        echo 
        "Have a good day!";
        } else {
        echo 
        "Have a good night!";
        }
        ?>

        within best warm regards,
        sincerely yours;
        truly

        ollinavia / uf 2

        Code:
        const str = 'rohathos';
        console.log(str.substr(1, 2));
        // expected output: "oh" console.log(str.substr(2));
        // expected output: "hathos"
        Last edited by N.038900898; 10-14-2020, 11:44 AM.

        Comment


        • #6
          JS_13 UF1 not working in 3 different browser opera google edge
          not working only this morning October10

          Comment


          • #7
            JS_13 UF1 not working in 3 different browser opera google edge
            not working only this morning October10

            Comment


            • #8
              the devs don't give a sht . they have your money already .

              Comment


              • #9
                FFS fix it pls . aslan , many platforms

                Comment


                • #10

                  There are so many reasons why buying a coffee maker is a great idea. Perhaps the most obvious is that you can make coffee in the comfort of your own home. This way, you don’t have to wait in line at the coffee shop or worry about finding the perfect cup of joe. With a coffee maker, you can have a fresh cup of coffee anytime you want. https://brewmasterpro.com/best-cuisinart-coffee-maker/

                  Comment


                  • #11
                    Originally posted by N.026328354 View Post
                    So..for my account the game is blocked in loading screen for a few months now. I don't know what is the problem but for some reason this is what's happening. It starts to load the game and goes to 100% and stops there . It had a few time when it did manage to enter the game but after a few minutes stopped working again. Does anyone else have the same problem as mine? and if so, did you guys found any solutions to fix it? Thx
                    Facing same issue.

                    Comment


                    • #12
                      Thank you for the updates. If a game is blocked on the loading screen, it could be due to a number of reasons. Here are some troubleshooting steps that you can try:
                      1. Check your internet connection: If your internet connection is unstable or slow, it can cause the game to get stuck on the loading screen. Make sure that you have a stable internet connection before trying to load the game.
                      2. Clear your browser cache and cookies: Clearing your browser cache and cookies can help fix issues related to loading web-based games. You can do this by going to your browser settings and finding the option to clear cache and cookies.
                      3. Disable browser extensions: Browser extensions can sometimes interfere with game loading. Try disabling any browser extensions you have installed, particularly ad blockers or antivirus extensions, and see if that fixes the issue.
                      4. Try a different browser: If the game is not loading in one browser, try another browser to see if the issue is with the browser itself.
                      5. Restart your computer: Sometimes, restarting your computer can fix issues with loading games.

                      If none of these troubleshooting steps work, there may be a problem with the game server itself, and you may need to contact the game developer for further assistance.

                      Comment


                      • #13
                        Good afternoon. I really love playing video games. Now I have found a site https://www.ps3roms.com where I can find PlayStation 3 games for PC. First you need to download a PS3 emulator. Find PlayStation 3 games in the list. Select the PS3 ISO file.​

                        Comment


                        • #14
                          Please let me know more information. Because I think this article still lacks a lot. Here I have some linked websites for further referenceReadmore: sunwin

                          Website: https://sunwincl.com/
                          Email: [email protected]
                          Phone: 0358212323
                          Hastag: #sunwin #sunwincl #sunwinclcom #trangchusunwwin
                          Địa chỉ: 128 Phan Văn Trị, Phường 12, Bình Thạnh, Thành Phố Hồ Chí Minh
                          Social:
                          – Twitter: https://twitter.com/sunwinclcom
                          – Linkedin: https://www.linkedin.com/in/sunwinclcom/
                          – Pinterest: https://www.pinterest.com/sunwinclcom/
                          – Reddit: https://www.reddit.com/user/sunwinclcom/
                          – Youtube: https://www.youtube.com/@sunwinclcom/about
                          – Google Site: https://sites.google.com/view/sunwinclcom
                          – Behance: https://www.behance.net/sunwinclcom
                          – 500px: https://500px.com/p/sunwinclcom
                          – Gravatar: https://gravatar.com/sunwinclcom

                          Comment


                          • #15
                            I9bet is known as one of Asia's leading bookmakers. Currently, there can be more than 100,000 people playing at i9bet a day. This is i9bet's newest homepage - please click here Readmore: i9bet

                            Thông tin Liên hệ:

                            Website: https://i9bet.boats/

                            Email: [email protected]

                            Hotline: 0785776915

                            Hastag: #i9bet, #i9betcacuoconline, #i9betgame, #nhacaicacuoc, #trangchui9bet

                            Địa chỉ: 52 Đ. Nguyễn Thông, Phường 9, Quận 3, Thành phố Hồ Chí Minh, Việt Nam

                            Readmore:

                            tải app i9bet

                            nạp tiền i9bet

                            đăng ký i9bet

                            SOCIAL:

                            - Twitter: https://twitter.com/i9betboats

                            - Pinterest: https://www.pinterest.com/i9betboats/

                            - Reddit: https://www.reddit.com/user/i9betboats/

                            - Youtube: https://www.youtube.com/@i9betboats/about

                            - Google Site: https://sites.google.com/view/i9betboats/home

                            - Behance: https://www.behance.net/i9betboats

                            - 500px: https://500px.com/p/i9betboats

                            - Gravatar: https://gravatar.com/i9betboats

                            - Ko-fi: https://ko-fi.com/i9betboats

                            - Likedin: https://www.linkedin.com/in/i9betboats/

                            Comment

                            Working...
                            X