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)
I don't know what it's called but I need help with it
INTERNECIONLvl 62
- Edited
- Windows
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?
ackvonhuelioLvl 41
Mellow
hello and i will answer your question just gimme a moment to write
INTERNECIONLvl 62
- Edited
- Windows
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?
ackvonhuelio oh ok cool thanks
INTERNECIONLvl 62
- Windows
Mellow The how did you not see the golden ring around my pfp
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)
INTERNECIONLvl 62
- Windows
Mellow oh ok
ackvonhuelioLvl 41
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-
But thanks a ton!
VarrienceLvl 25
- Edited
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)
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)
yea you get it lol
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?