Not accurate at all. You need a lot more paragraph, even better if you cut them every 2 sentences, and emoji at the end and beginning of every sentences.
- 2 Posts
- 25 Comments
If there is one thing I can proudly brag about is that I’m part of the Elite that have that running for several years. With few hiccups of missing sessions, and sometimes extra games on the same week as the “main” game.
For those stuck looking for groups, just start it yourself, you’ll be surprised how many people around would like to try and will probably like, but don’t want to start the thing themselves.
Merwyn@sh.itjust.worksto Dungeons and Dragons@lemmy.world•HI all! Looking for a starter set to play with family. Any suggestion?7·2 years agoYou already had good answers but I would like to add my two cents:
The “starter set” is the cheaper option (less than 20$). It has a small prewritten adventure, a set a prewritten characters of level 1 with backstory, and the basic rules you need for this adventure.
Good point for it: cheap, the bare minimum you need to dive directly in it, already contain an adventure so it’s easier for you as a new GM.
Bad point: it only contain a small subset of the rules, and will become “useless” if you decide to go further and buy the full books. Also, if your wife or kid do not like the pregen characters, you will not have the full rules related to character creation.
Then you have the core rule set already linked.
Good point: everything you need for a very long time, you will have all the rules to run anything you want. Other books are “only” going to add more options (spell, items, characters building options, ect).
Bad point: the price (120$), more information so it may be harder to digest everything and “get into it”. It does not contain pre written adventure. You will have to find one separate or make one yourself, there are some free options available.
On top of that you don’t need anything else exept pen and paper. Dice are of course greatly recommended, but you can start with some free phone app.
You want a slug-related traumatizing story ? I had a cat with very long hairs, there was a cat door to the garden outside but usually he slept inside. One morning i wake up and feel the cat close to me in the bed, something very common. I start to pet him on the dark being half awake only. After some time i feel something wet in his belly fur, but as I’m half sleepy I don’t react and keep petting him. Only after what was probably a long time, I realized that something is wrong, turn on the light and see a slug curled/trapped inside his fur, I was touching it with my hand for several minutes!
Merwyn@sh.itjust.worksto Programming@programming.dev•Why does the for loop repeat in this recursion?1·2 years agoWhen called with n=1 ? It’s from i=0 to i<1, so it will do only one iteration with i=0 and print one #.
Merwyn@sh.itjust.worksto Programming@programming.dev•Why does the for loop repeat in this recursion?2·2 years agoYes, to better understand this you have to understand the “flow” of the program. Meaning the order at which the instructions are executed and not written.
Here you have the flow of the program starting from n =3 until the recursion reach draw(0), note that none of the for loop have been executed yet. At this point it reach the first “return” instruction and go finish the call to draw(0).
Then the flow go back to where it previously was: inside the draw(1) call just after the line calling draw(0). And it start executing the next lines of the draw(1): the for loop.
Then it reach the second “return” and proceed again until the whole program is over.
Merwyn@sh.itjust.worksto Games@sh.itjust.works•Sea Of Stars Developers To Release Patch That Removes The CompletionistEnglish163·2 years agoNever ever ever ever give money to someone that promise to give it after to charity. There are countless stories with proof of people who never kept the promises. Even if they did give it, they get tax benefit instead of you. It’s worth also (even more) for shop or other places that propose to round up the total and give to charity.
You want to give to charity? Just give to charity, why a middle man ?
Merwyn@sh.itjust.worksto Programming@programming.dev•Why does the for loop repeat in this recursion?2·2 years agoYes, as I wrote when the method draw(n=1) finish the for loop that print one “#”, this call of the method draw return. Then the process start again from the after the line draw(n-1) of the method draw(n=2), which execute the for loop to print “##” and return. Then again you come back to after the line draw(n-1) of inside the method draw(n=3), ect.
You should keep in mind that everytime a draw(n-1) is called, the current method is “paused” until this call return.
Merwyn@sh.itjust.worksto Programming@programming.dev•Why does the for loop repeat in this recursion?3·2 years agoYou are looking at a recursive method, as you can see with the line draw(n-1) inside the draw(n) method. You can search for “recursive function” on internet for a better understanding.
Basically, the method draw is called a first time n = a user input, but then this method call itself with n-1 until it reach 0. So you can think as if function draw(6) will call draw(5) and wait for it to return before continuing, draw(5) call draw(4), ect until draw(0) that return immediately.
So then the order of execution will be draw(1) that print " #\n" and return, then draw(2) will proceed to print “##\n” and return, then draw(3), ect until draw(n).
Merwyn@sh.itjust.worksto Ask Lemmy@lemmy.world•What are your "poor person" money life hacks?83·2 years agoJust buy blocks of basic hard soap. Better for your skin and your plumbing. I don’t know if it’s cheaper compared to your 10L bottle, but it’s definitely cheaper compared to normal liquid soap bottles.
Merwyn@sh.itjust.worksto Games@sh.itjust.works•Halo The Series | Season 2 First Look Trailer | Paramount+English21·2 years agoI watched it purely for nostalgia reason because of the games, I decided to not read reviews about it before. There was few interesting scenes (combat scenes), but overall not worth it IMO. I kept watching hoping that it will get better and I kept being disappointed. Maybe I’ll check the season 2 though according to reviews this time.
They took a big dump on all the existing lore, and on the already well defined character of Master Chief.
Forward Unto Dawn was so much better as a Halo adaptation.
People in the comment seems to not understand that it doesn’t mean average on the “scale of beauty/attractiveness”. But averaged features. Like if you merge all nose shapes of a million person you get this nose, ect.
It was tested already several years ago that people tend to like faces made by merging a lot of faces together and “averaging” them. Most of the time rating them more attractive than the individual faces used.
I don’t find the source anymore… I’ll check better later.
Merwyn@sh.itjust.worksto Piracy: ꜱᴀɪʟ ᴛʜᴇ ʜɪɢʜ ꜱᴇᴀꜱ@lemmy.dbzer0.com•Louis Rossman/FUTO's YouTube app, GrayJay, now supports Sponsorblock... and shames you if you use itEnglish0·2 years agoI may be wrong but from what I’ve heard from some “small” content creator on YouTube the money from the sponsored talks in their video is a much bigger part of their income than money from youtube coming from the YouTube-selected ads that play before/during the video.
Also, this part do not give any money to YouTube and do not use/collect any data on you.
Merwyn@sh.itjust.worksto Asklemmy@lemmy.ml•What was a profound moment that a video game caused you to experience, and why?22·2 years agoAt least two very different for me:
Myst: I was very small when I played it so maybe I missed some slightly hidden warnings or foreshadowing. But basically during the whole game two brothers that are trapped in two magical books claims that the other brother is evil and trapper him in this books.
It looks like the only way to progress in the game is to trust one of them and go do the quests they are asking in order to free them.
I thought I was smart and did everytime both quests for each of them, my plan was to save before the final quest of one and check if is the “good” one, otherwise reload and finish the last quest of the other.
I finish one guy. cue evil laughter I finish trapped in the book and the evil brother laugh that he managed to lie to me for this whole time. Fine, let’s reload 5 minutes ago and free the other one. another evil laughter basically same thing happen with the other … wtf ? There is no good ending to this game ??
Turned out there was the dad of this two also trapped in another book that was hidden somewhere else, he was the real good guy and lead to the good ending.
So: don’t trust anyone, always look for more options than the two obvious choices that are only an illusion of free will. Lesson learned at a young age.
Other one that is more coming from the community than the game itself: world of Warcraft (vanilla, when it get out), more specifically beating the end boss of the latest raid for the first time. Especially when you are the raid leader. It give such a satisfaction and sensation of fulfilment.
There are a lot of games that require a lot more personnal skill than WoW to beat a boss. But getting 40 people to be ready, prepared, have to good class and good equipment, and play together for hours in order to achieve this common goal is incredible.
Merwyn@sh.itjust.worksto Asklemmy@lemmy.ml•What single item improved the quality of your life over you got it? (Buyed it/got as present/made it)341·2 years agoI had a very different experience with mine. I bought a middle range one, not the cheap one, with very good reviews at the time. I absolutely cannot trust it. It’s always getting stuck, getting lost and not able to go back to charging station, or say that it’s “finished” and leav obvious spot of dusts.
My living room is indeed a bit cluttered as it’s not that big, but there is still enough space for it to move…
Merwyn@sh.itjust.worksto Patient Gamers@sh.itjust.works•With the news of the latest Assasins Creed day 1 Denuvo patch. This community just keeps proving itself. Be Patient.3·2 years agoI know, and I didn’t pre order anything for a very long time (and don’t plan to). But unfortunately as long as some players get attracted with this kind of shitty “exclusive” the whole community will have to suffer from the companies pushing this behavior.
Merwyn@sh.itjust.worksto Patient Gamers@sh.itjust.works•With the news of the latest Assasins Creed day 1 Denuvo patch. This community just keeps proving itself. Be Patient.7·2 years agoBut … but… collector and exclusive content!
For gaming I see your point, it looks like everything as to be a money grab nowaday which greatly reduce the quality of a lot of games.
For ttrpg I don’t feel like it though. Sure Wizard of the Coast/Hasbro has gone to shit but I left the D&D train a long time ago already. And the amount of other very good and accessible system is amazing. IMO The only thing “bad” that this new popularity bring is players with wrong expectations. Some expect every games and every DM to be of the same quality as Critical Roll or other well known podcast, some exept to find “video games” mechanic like in baldur’s gate, some are trying to force the meme stuff inside the game, ect.