If Mami can make her ribbons invisible, can we do the same with our hammer? It'd be like Saber's invisible sword from Fate. Hard to know when the thing's gonna hit you if you can't see it.
Ooooh, yeah. That'd be nice.

We need to step up our enchantment lessons with Mumi. Maybe make that our new nightly activity instead of telling people Terrible Secrets of Space?

School hours are for visiting our fellow delinquent 'gucas and spending time with Warehouse-kun.
 
Vote tally:
##### 3.21
[X] Sereg.
No. of votes: 1
Gadjo

[X] Accept
[X] Thank
[X] Cleanse?
[X] Explain Sendai
[X] Explain Walpurgisnatch
[X] Other Meguca?
[X] Nagisa/Yuma meetup
[X] goto Mami
No. of votes: 1
'Lement

[x] Thank her for the compliment, the match and the pocky.
[x] Accept the pocky. Don't waste it if you want to live.
[x] Ask Kyouko if she wants to spar again another time.
-[x] I would appreciate more practice with my hammer.
[x] Ask if we can cleanse her gem.
[x] I know a girl about Yuma's age. Maybe they would make good friends.
[x] Good News!
-[x]Inform her that the Sendai situation has been taken care of and what the current situation there is.
[x] Ask her if there are any other Magical girls in the area and what she knows about them.
-[x] If she asks why, remind her that we're trying to encourage cooperation and reduce competion between magical girls.
[x] When done talking, return to Mitakihara and join Mami and the others for lunch.
No. of votes: 7
Sereg, Redshirt Army, boonerunner, Muramasa, landcollector, Ugolino, AnonymousRabbit
 
[x] Thank her for the compliment, the match and the pocky.
[x] Accept the pocky. Don't waste it if you want to live.
[x] Join Yuma in gushing about how cool Kyoko was.
[x] Ask Kyouko if she wants to spar again another time.
-[x] I would appreciate more practice with my hammer.
[x] Ask if we can cleanse her gem.
[x] I know a girl about Yuma's age. Maybe they would make good friends.
[x] Good News!
-[x]Inform her that the Sendai situation has been taken care of and what the current situation there is.
[x] Ask her if there are any other Magical girls in the area and what she knows about them.
-[x] If she asks why, remind her that we're trying to encourage cooperation and reduce competion between magical girls.
[x] When done talking, return to Mitakihara and join Mami and the others for lunch.
 
[x] Thank her for the compliment, the match and the pocky.
[x] Accept the pocky. Don't waste it if you want to live.
[x] Ask Kyouko if she wants to spar again another time.
-[x] I would appreciate more practice with my hammer.
[x] Ask if we can cleanse her gem.
[x] I know a girl about Yuma's age. Maybe they would make good friends.
[x] Good News!
-[x]Inform her that the Sendai situation has been taken care of and what the current situation there is.
[x] Ask her if there are any other Magical girls in the area and what she knows about them.
-[x] If she asks why, remind her that we're trying to encourage cooperation and reduce competion between magical girls.
[x] When done talking, return to Mitakihara and join Mami and the others for lunch.
Updating vote to avoid confusing the vote-counter.
 
Does our hammer sill have it's boosted stats if we wield it with Grief?

If so, we should make a bunch and have a cloud of warhammers next time we decide to kick somebody's ass.
 
Hmm, if Kyoko can make her spears huge, can she make them tiny? ...I now bave a funny mental image of Kyoko using a miniature spear as a toothpick.

Hey, can we do that? Make a giant warhammer? Or a small one? I can just imagine the funny looks we'll get when we need to hammer a nail and summon a miniture warhammer to hammer them in.
 
We can call the mini-hammer the Meguca Behavior Discouragement System (MBDS). The next time we run into an Akiko-style meguca, we just tap them on the head repeatedly with the MBDS until they stop doing bad things. :V
 
I don't even know what "goto" does, or why it would be tempted if it's such a bad idea.
It does literally what it says. When you hit a goto line in the code, it goes to the label specified. So, for example:
Code:
:yellow
hugs mumi
goto yellow
On the other hand, imagine you have a few more:
Code:
:yellow
hugs mumi
goto red
:white
annoy oriko
goto cont_white
:black
joke kirika
goto other_other_white
:cont_white
microwave tea
if feathers goto panic else goto black
:red
spar kyouko
if kokoplomacy goto argue else goto white
:asuka
check masami
:argue
argue
goto white
:other_other_white
imouto nagisa
goto asuka
:panic
scream aaaaaaaaaaaa
breathe
scream aaaaaaaaaaaaaaaaaaaa
goto panic
 
Last edited:
I don't even know what "goto" does, or why it would be tempted if it's such a bad idea.
Basically, when programmers read through code to find out what it does (or programs execute it), the instructions are read in one line at a time (though some parts do have loops or subroutines that programmers conceptualize as larger chunks). Gotos, however, are completely arbitrary: they skip to a completely different location in the code. Computers can follow that type of instruction just fine, but it throws human programmers off, so even if the code works correctly the first time, other people coming in to update the code can screw it up if they aren't really careful about what the goto is supposed to be doing. And almost everything you can do with a goto can be done just as easily (and far more clearly) with a normal function call or loop.

Edit: There are certain optimizations that can be done with gotos (e.g. "I'm done with this part I wanted to do, so I want to skip straight to the end without bothering with anything else"), but these are only really worth it when the code is something that runs very frequently (e.g. kernel code) so that the time savings are worth the loss of clarity.
 
Last edited:
It does literally what it says. When you hit a goto line in the code, it goes to the label specified. So, for example:
Code:
:mumi
hugs mumi
goto mumi
On the other hand, imagine you have a few more:
Code:
:yellow
hugs mumi
goto red
:white
annoy oriko
goto cont_white
:black
joke kirika
goto other_other_white
:cont_white
microwave tea
goto black
:red
spar kyouko
goto white
:asuka
check masami
:other_other_white
imouto nagisa
goto asuka
JFC, my eyes bleed when they look at that code...
 
Back
Top