Forum Settings
Forums
New
This topic has been locked and is no longer available for discussion.
Pages (7) « 1 2 [3] 4 5 » ... Last »
Oct 28, 2017 12:36 AM

Offline
Jul 2009
8549
Oh noes i missed the start of the game ,>w<,
Oct 28, 2017 12:37 AM
Offline
Sep 2016
31
The Joe's son is so hard to find that I'm wondering if he escaped from his father instead of gone missing
Oct 28, 2017 12:42 AM

Offline
Aug 2010
203
Anyone recalling an anime from this year that takes place on a rainy day? I only remember one about sharing an umbrella and that's not it, so I don't think I have seen this anime.
Oct 28, 2017 12:45 AM

Offline
Jul 2007
755
What if his son is actually the lady in the background?! xD
Ye well, I sadly have no idea from which series the son is..
Oct 28, 2017 12:49 AM

Offline
Jun 2015
43
hm is this joe an anime character?
his son sure seems like a random background character-
Oct 28, 2017 12:55 AM

Offline
Mar 2015
1257
Obtaining Crew

Miho: "While I would love to work with my crew from school, I don't want to put any of them in danger. And if the tank breaks down, they'll have trouble defending themselves. So we'll need people who are trained to fight. Real killers, if you will... I have this list here, but since real killers need to lay low, the info is a bit cryptic..."

Killer #1
482C3A
167
92F

Killer #2
494446
180
Trident

Killer #3
F795AB
159
Pipe
Oct 28, 2017 1:04 AM

Offline
Jul 2007
755
Killer #1
Revy from Black Lagoon
Oct 28, 2017 1:04 AM

Offline
Mar 2015
1257
Obtaining Ammunition

Miho: "I found a stash of ammunition in the mansion! It contains all these different types, though. And the tiger can only fire 88mm rounds. There's far too much to sort through manually... Nor is there enough time! At this rate, we'll only manage to put maybe ten shells inside the tank. Perhaps we could program that robot over there..."

<Miho points to a robot sitting conveniently in the corner>

Miho: "Maybe this could help us sort it?"


Using a programming language of your choice, write a quick program to sort ammo types.

For example, if you have the following list of ammo:

Ammo = [88, 76, 76, 88, 75, 102, 122, 88]

We would want to write a program that creates a new list that looks like this:

Tiger_Ammo = [88, 88, 88]

But assume you don't know how much ammo is in the pile! The robot should be able to figure that out on its own...

(Code doesn't need to be perfect, just has to do the job... most of the time)
Oct 28, 2017 1:05 AM

Offline
Mar 2015
1257
Sorarin said:
Killer #1
Revy from Black Lagoon

This is correct!
Oct 28, 2017 1:09 AM

Offline
May 2012
1034
Killer 2 is Tatsuya from Mahouka.
Oct 28, 2017 1:10 AM

Offline
Jul 2007
755
Killer #3
Yuno from Mirai Nikki
Oct 28, 2017 1:12 AM

Offline
Mar 2015
1257
Obtaining Fuel

Miho: "Pretty straightforward, really. Let's find an oil pump. One should do for now..."



Post a screenshot from an anime containing one of these things. Be sure to name the anime too.
CongressOct 28, 2017 1:30 AM
Oct 28, 2017 1:14 AM

Offline
Mar 2015
1257
Rarity said:
Killer 2 is Tatsuya from Mahouka.
Sorarin said:
Killer #3
Yuno from Mirai Nikki


These are correct! The Tiger is now crewed.
Oct 28, 2017 1:14 AM

Offline
Mar 2015
1257
Congress is going to bed. First wave of enemies will hit when he wakes up. Just leave your answers here - hopefully the tank will be ready by then!
Oct 28, 2017 1:38 AM

Offline
Mar 2014
469
I did the Sorting ammo code in C#

class Program
{
static void Main(string[] args)
{
int[] Ammo = {88, 76, 76, 88, 75, 102, 122, 88};
int[] AmmoSorted = new int[Ammo.Length];
int AmmoCount = 0;
for (int i = 0; i < Ammo.Length; i++)
{
if (Ammo[i] == 88)
{
AmmoSorted[AmmoCount] = Ammo[i];
AmmoCount++;
}
}
int[] Tiger_Ammo = new int[AmmoCount];

Console.Write("Tiger_Ammo = [");
for (int i = 0; i < AmmoCount; i++)
{
Tiger_Ammo[i] = AmmoSorted[i];
Console.Write(Tiger_Ammo[i]);
if (i+1 < AmmoCount) Console.Write(", ");
}
Console.WriteLine("]");
Console.ReadKey();
}
Here's a link to a picture of it working
TafixadosOct 28, 2017 1:44 AM
~MALoweenMansion:~
2025:
x11

»[【Minecraft】 Lagtrain - inabakumori
0:34 ─〇───── 4:04
↺ | ⏸︎ | ♡
Oct 28, 2017 1:48 AM

Offline
Aug 2010
203
I was a bit too slow, but here's my code snippet in Java (typed without an IDE).

public List<Integer> filterAmmo(List<Integer> pile, int size) {
List<Integer> tigerAmmo = new ArrayList<>();
for(int ammo : pile) {
if(ammo == size) {
tigerAmmo.add(ammo);
}
}
return tigerAmmo;
}

Then I would call this function like:
List<Integer> tigerAmmo = filterAmmo(ammoPile, 88);

EDIT: no wait, I can do it in less lines. :P See below.

import java.util.Arrays;
import java.util.List;
import java.util.stream.Collectors;

public void filterAmmo() {
Integer[] ammoArray = {88, 76, 76, 88, 75, 102, 122, 88};
List<Integer> ammoList = Arrays.asList(ammoArray);
List<Integer> tigerAmmoList = ammoList
.stream()
.filter(size -> size == 88)
.collect(Collectors.toList());
}


Something like that I guess.
Yupa_TetoOct 28, 2017 2:18 AM
Oct 28, 2017 1:56 AM

Offline
Oct 2016
98
An Errant Son

we found him, @congress! he's from Boku no Hero Academia Season 2, Episode 13 (26 overall inclusive of first season), timestamp is 00:15!


sorry i'm a noob at linking pictures QwQ
seonghwasOct 28, 2017 6:34 AM
Oct 28, 2017 1:59 AM

Offline
Aug 2010
203
todomatsu said:
An Errant Son

he's from Boku no Hero Academia Season 2, Episode 13 (26 overall inclusive of first season), timestamp is 00:15!


sorry i'm a noob at linking pictures QwQ

OMG, how did you find him? :O Very impressive!
Oct 28, 2017 2:09 AM

Offline
Oct 2016
98
Yupa_Teto said:
todomatsu said:
An Errant Son

he's from Boku no Hero Academia Season 2, Episode 13 (26 overall inclusive of first season), timestamp is 00:15!


sorry i'm a noob at linking pictures QwQ

OMG, how did you find him? :O Very impressive!


thank you! ^^ just watched through maybe a little less than half the season while looking through episode summaries to see where pedestrians may fit in! (also because the summary I found made me want to watch it again)
Oct 28, 2017 2:15 AM

Offline
Aug 2010
203
But how did you know the screencap was from My Hero Academia?

I'm also interested to know how the crew was identified. I assume the first code is a hex color code for their hair, but I don't recognize the following two lines.
Oct 28, 2017 2:23 AM

Offline
Sep 2015
427
Yupa_Teto said:

I'm also interested to know how the crew was identified. I assume the first code is a hex color code for their hair, but I don't recognize the following two lines.


People on the discord server figured the second was the character's height and the third was a weapon they used.
Oct 28, 2017 4:57 AM

Offline
Oct 2016
98
Yupa_Teto said:
But how did you know the screencap was from My Hero Academia?


my 'made by Bones' senses were tingling... I wish I could provide a less vague / confusing answer, but honestly, I have no idea how to explain that.
Oct 28, 2017 5:24 AM

Offline
Jan 2012
107
I remember an oil pump in an anime. It was right in the city, like someone had built a parking lot for a cafe or donut shop, but instead of the shop, there was the oil pump. It was relatively short and stocky. You wouldn't be able to see it past a few blocks.

I'll list some guesses so we can find it.

Umaru-chan
Kokoro Connect
Oreimo
ReLIFE
Saekano
Shigatsu wa Kimi no Uso
Toradora
Yahari Ore no Seishun Love Comedy wa Machigatteiru

Also, there might be large pumps in gritty anime that I've seen, in the city atmosphere shots.

Tokyo Ghoul
Kaiji
Ghost in the Shell
5 cm per second
Death Note

There are pipelines in Japan, here's a map
Oct 28, 2017 6:11 AM
Offline
Dec 2016
7
I can’t remember seeing any oil rigs in an anime but anything with fields and more rural areas would be a place to look
Oct 28, 2017 6:22 AM

Offline
Nov 2009
241
Anime that might have oil pumps:
Fate/Zero during a flashback scene?
Jormungand
ACCA in the last few episodes
Trigun
Full Metal Panic?
Planetes
Mobile Suit Gundam 00
Zankyou no Terror

Only one I have right meow is Planetes, going to start checking...

Oct 28, 2017 6:46 AM

Offline
Jul 2014
499
oil pump looks like something that would appear in one of those crazy monogatari scenarios
Oct 28, 2017 6:55 AM

Offline
Apr 2016
331
Could it be the place where psycho-pass ending occurred?
Oct 28, 2017 7:06 AM

Offline
May 2012
1034
@Congress - Obtaining Fuel

Vampire Hunter D: Bloodlust

Oct 28, 2017 7:07 AM

Offline
Jun 2014
263
Give a cookie to this guy ^
Oct 28, 2017 7:09 AM

Offline
Nov 2013
39
todomatsu said:
Yupa_Teto said:
But how did you know the screencap was from My Hero Academia?


my 'made by Bones' senses were tingling... I wish I could provide a less vague / confusing answer, but honestly, I have no idea how to explain that.


It's ok, I relate to that. I can almost always tell when something is animated by ufotable, for example.

As soon as I started playing Zesteria, on the cutscene I immediately called my boyfriend and asked him to look up if the anime cutscenes were animated by ufotable. He was shocked I recognized it so quickly.
Oct 28, 2017 7:10 AM

Offline
Jan 2012
107
Any military anime might have something, from supply lines.

Girls und Panzer
KanColle
Hetalia

Edit: congrats on finding it!
Shiro_shiOct 28, 2017 7:51 AM
Oct 28, 2017 9:26 AM

Offline
Feb 2017
17
Try to find supply lines in these anime. Probably they have some.

Konpeki no Kantai
Schwarzesmarken
Shuumatsu no Izetta
Oct 28, 2017 9:40 AM

Offline
Jan 2012
107
+1 Vote to buy troops using 30 gold.
Oct 28, 2017 10:09 AM
Offline
Sep 2016
31
Shiro4 said:
+1 Vote to buy troops using 30 gold.


+1, also I'm wondering what the workers and police officers are for
Oct 28, 2017 10:17 AM
Offline
May 2017
16
+1 Vote to buy more troops
we need to keep our mansion safe bois
Oct 28, 2017 10:23 AM

Offline
Jul 2016
3538
i'm staring this now, can i support someone ??
+1 vote to buy more troops
Oct 28, 2017 10:27 AM

Offline
Mar 2015
1257
todomatsu said:
An Errant Son

we found him, @congress! he's from Boku no Hero Academia Season 2, Episode 13 (26 overall inclusive of first season), timestamp is 00:15!


sorry i'm a noob at linking pictures QwQ
Rarity said:
@Congress - Obtaining Fuel

Vampire Hunter D: Bloodlust



Well done!

Miho: "Sweet! The Tiger is up and running."
Oct 28, 2017 10:40 AM

Offline
Mar 2015
1257
The Enemy is approaching...

As the lookouts said, there are:

2000 Goblins
10 Giants
1 Wyvern

We have:

300 Spearmen
150 Archers
10 Knights
4 Police Officer

Along with only one armed hero:

Laoten, with a pickaxe.
Oct 28, 2017 10:43 AM

Offline
May 2012
1034
+1 for buying troops
Oct 28, 2017 10:45 AM
Offline
Sep 2016
31
Congress said:
The Enemy is approaching...

As the lookouts said, there are:

2000 Goblins
10 Giants
1 Wyvern

We have:

300 Spearmen
150 Archers
10 Knights
4 Police Officer

Along with only one armed hero:

Laoten, with a pickaxe.



We also have a tiger tank, and You misspelled dead man
Oct 28, 2017 10:55 AM

Offline
Jun 2014
263
I think the song might be from Non Non Biyori Repeat @Congress
Oct 28, 2017 10:56 AM

Offline
Mar 2015
1257
The enemy makes a blind rush for the wall.

Unfortunately for them, we have a Tiger Tank.

The tank makes its way out of the front gates and drives out to meet our opponents. Laoten hops on the tank, pickaxe in hand.

The tank is able to kill 500 goblins and 6 giants before it runs out of ammunition and is forced to retreat. When the wyvern swooped down to attack the tank, Laoten landed a lucky hit, planting the pickaxe in the monster's skull. Unfortunately, the head of the pickaxe breaks off during this...

The tank retreats back into the safety of the walls, and the real assault begins.

Stuff happened...

We were victorious.


The following heroes have DIED, and can no longer participate in battles (their spirits live on, and they can still help with quests):

Mellowmancer
Tafixados
TripleR06
yurkin


Jobby
virtual_core
SolitaryGray
dobcho1


What's left of our army:

4 Police Officers
5 Knights
120 Spearmen
140 Archers
30 Heavy Knights
15 Arquebusiers
40 Armored Billmen


We have received the following loot:

1 Staff of Random Effects (please select among yourselves who gets this)
100 Steel

Enough poorly made goblin swords for every hero to equip one
Oct 28, 2017 10:58 AM
Offline
Jan 2017
48
the song for "Insert Song Blues" is from "Gochuumon wa Usagi desu ka??"
Oct 28, 2017 10:58 AM

Offline
Mar 2015
1257
dobcho1 said:
I think the song might be from Non Non Biyori Repeat @Congress
OkoDrakona said:
the song for "Insert Song Blues" is from "Gochuumon wa Usagi desu ka??"


Neither of these are correct.
Oct 28, 2017 10:59 AM
Offline
Apr 2017
128
@congress I found some old swords in, like, a basement storage area. Are we able to use them?
Oct 28, 2017 11:04 AM
Offline
Apr 2017
128
Also since we got a bunch of steel from those goblin swords, I think we should craft it into some swords of our own.

+1 Vote to Craft Steel Into Swords
Oct 28, 2017 11:06 AM

Offline
Jun 2014
263
@Congress Amagi Brilliant Park then?
Oct 28, 2017 11:07 AM

Offline
Jan 2012
107
Yuru Yuri San Hai! @Congress
Oct 28, 2017 11:11 AM

Offline
Jul 2016
3538
Hibike! Euphonium for the music?? ^^ @congress
Oct 28, 2017 11:12 AM

Offline
Jul 2016
400
Congress said:
The enemy makes a blind rush for the wall.

Unfortunately for them, we have a Tiger Tank.

The tank makes its way out of the front gates and drives out to meet our opponents. Laoten hops on the tank, pickaxe in hand.

The tank is able to kill 500 goblins and 6 giants before it runs out of ammunition and is forced to retreat. When the wyvern swooped down to attack the tank, Laoten landed a lucky hit, planting the pickaxe in the monster's skull. Unfortunately, the head of the pickaxe breaks off during this...

The tank retreats back into the safety of the walls, and the real assault begins.

Stuff happened...

We were victorious.


The following heroes have DIED, and can no longer participate in battles (their spirits live on, and they can still help with quests):

Mellowmancer
Tafixados
TripleR06
yurkin


Jobby
virtual_core
SolitaryGray
dobcho1


What's left of our army:

4 Police Officers
5 Knights
120 Spearmen
140 Archers
30 Heavy Knights
15 Arquebusiers
40 Armored Billmen


We have received the following loot:

1 Staff of Random Effects (please select among yourselves who gets this)
100 Steel

Enough poorly made goblin swords for every hero to equip one

who do we want to have the staff?



nσthíng вσnds twσ sσuls
mσrє sσundlч thαn
m u r d є r




This topic has been locked and is no longer available for discussion.
Pages (7) « 1 2 [3] 4 5 » ... Last »

More topics from this board

» Queen's Hunt ( 1 2 3 4 5 ... Last Page )

Kabo-chan - Oct 22

1234 by kinokoteikio »»
2 minutes ago

» Van Ghost Sr.'s Art Gallery! ( 1 2 3 4 5 ... Last Page )

Kabo-chan - Oct 22

1333 by Nagooey »»
2 minutes ago

» Naru's Nook of Nightmares XII ( 1 2 )

Naruleach - Yesterday

63 by rhianab97 »»
5 minutes ago

» Madam Cat's Walk ( 1 2 3 4 5 ... Last Page )

Kabo-chan - Oct 22

1093 by kinokoteikio »»
9 minutes ago

» Eerie Sparkles ( 1 2 3 4 5 ... Last Page )

Rosaluna_ - Oct 27

368 by Sasa66 »»
9 minutes ago
It’s time to ditch the text file.
Keep track of your anime easily by creating your own list.
Sign Up Login