• Question
  • I don't know what it's called but I need help with it

INTERNECION the "obvious bright yellow shield badge" is hidden behind the silver trophy, so no, I did not notice the "obvious bright yellow shield badge"
(still don't get how exactly votes on their own are helpful but whatever)

    Mellow You don't understand. The votes are somehow important to alot of people. Such as the one guy I told you who was spamming the hell out of it. Screwing with my notifications. Also some people can sometimes tell me to get back in by also doing that or tell me they like the idea when they dont feel like typing anything. THE VOTES ARE THERE FOR A REASON. If they weren't then why the hell are they implemented in this forum.

    Also the thing is right THERE. How could you not see it. What did you think the GOLDEN RING on my pfp was? Wait what?

      ackvonhuelio Where have you've been all this time. You just teleported here huh? Been a bit. Whats good?

      INTERNECION oh yeah, the grade thing. Strange
      And eehh fair, now I understand.
      Also I did not know that gold meant mod (I'm a newbie, don't know everything)
      What's the "wait what" for?

        INTERNECION ah I see
        Yeah, didn't think much of the gold ring since their ain't anything in my mind for what it could stand for
        Now there's something B)

          So basically {stuff:0,stuff2:1,} is called an object and there basically what you CDO people know as sprites.
          so if I had
          var things = {
          thing1: 10,
          thing2: 20,
          };
          then I could say
          things.thing1 which would be 10

          in your case you have an array with a bunch of objects inside of it
          so:

          var acheivements = [
          {
          acheivement:'yey',
          how:'do yey',
          unlocked:false,
          },
          {
          acheivement:'oops',
          how:'do oops',
          unlocked:false,
          },
          ];

          so to see if you have the first acheivement, yey, you would say
          acheivements[0].unlocked
          and it should be true or false(in this case false)

          so now in case you didnt know a good way to go through every acheivement is

          for(var i =0; i < acheivements.length; i++){
          console.log('acheivement number '+i+' unlocked: '+acheivements[ i ].unlocked);
          }

          well hope this helps

            ackvonhuelio oooh ok, thanks, that helped!
            And the stuff at the end with all the "I" yeah I don't even have the slightest clue on how that works-

            Mellow to answer your question the term OOP (Object Oriented Programming) comes to mind, as far as i know there are 2 ways of accessing object properties super easy though there are most likely more than two i will only be showcasing 2 for the sake of simplicity, this is basically an example of what Ack did without the array

            var obj = {
            a: 0, 
            b: "a", 
            c: false
            }  
            console.log(obj["a"] + " : " + obj.a)

              Mellow no he doesnt care about noitif he just want points I love how he lies how he don't care about points but he likes his own post

                2kChubz m a n
                Yes it is strange how a lot of their posts are upvoted by theirself 🤔

                2kChubz hm wait also strange that they say that other people care about it and that they downvote their own posts to put down their own rank, and yet theyre still at A- and have multiple recent posts upvoted by themself 🤔🤔🤔🤔🤔🤔🤔🤔

                  ALSO weird how they said they "didn't choose to be a mod-" ok I'll stop before I possibly get banned for no reason, that's all I've got anyway (hopefully)

                    Varrience ackvonhuelio

                    Oh, also, is there a way I can count how many of a specific type of... erm.. listing(?) I have?
                    Like how many "hidden" achievements I have left, or just the total of achievements and completed achievements?

                      Chat