forum

aquabluu's Taiko Maps (Taiko Trials Five)

posted
Total Posts
32,635
show more
LittleMagic_old
yuck, With doron, it's hard to get a good acc. o_o

Topic Starter
aquabluu

Lokamp wrote:

@crystal-don or arkenarien: can someone link to a single post all the Nisen chibi characters made? Thx ^_^
Zekira posted this a couple of pages back. No color though. I'm using this as reference for Shimedore's BG. No Joubutsu here, but I think everyone here knows by now what Jou looks like.

arien666

aquabluu wrote:

Lokamp wrote:

@crystal-don or arkenarien: can someone link to a single post all the Nisen chibi characters made? Thx ^_^
Zekira posted this a couple of pages back. No color though. I'm using this as reference for Shimedore's BG. No Joubutsu here, but I think everyone here knows by now what Jou looks like.

Saitama = Cat
Kechadon = Feels like Tiger but might be cat I guess orz
Koibumi = Dog
Yokuderu = Nope I guess orz
Taberuna = Cat but I think it's like 30% Dog orz
K.Sai = Cat
Soroban = Err... Nope?
Tenjiku = Nope
EkiBEN = Rabbit
X-DAY = Holy
Hataraku = Pikachu
Kidaruma = HENTAI Cat???



Some off-topic guessing ;_;
crystalsuicune
From Mirai's twitter


HNNNNNNNNNGH

Totally canon nao Y/N?
Zekira
YES!

YES YES YES YES YES YES YES YES YES!

Time to fangasm again
Topic Starter
aquabluu
Mirai's Saitama is a lot happier than crystal's for some reason :P
crystalsuicune
Different art styles,apparently?
Zekira
I really wanna smear Saitama's face with happiness right now...

(...oops)
crystalsuicune
That sounds a bit disturbing if you read that
the wrong way…
Also showed Mirai my pic of KiSai,BTW
Zekira

crystalsuicune wrote:

That sounds a bit disturbing if you read that
the wrong way…
Which I unfortunately intended :<
Sander-Don


d'aawwww
MMzz

crystalsuicune wrote:

From Mirai's twitter


HNNNNNNNNNGH

Totally canon nao Y/N?
Steals*
anongos

crystalsuicune wrote:

From Mirai's twitter


HNNNNNNNNNGH

Totally canon nao Y/N?
Tastes like delicious diabetes.

PS. Here's a defibrillator.
arien666

crystalsuicune wrote:

From Mirai's twitter


HNNNNNNNNNGH

Totally canon nao Y/N?
YOU SHOULD MANAEGE TAIKO ANIME WORKING >_><<<???
Zekira
I'd totally watch it if it would be so. Ahahaha~
arien666

Zekira wrote:

I'd totally watch it if it would be so. Ahahaha~
Actually, I thought about the 'FAKE' opening animation concepts
and Mirai+crystal draw the chibis well :3

I'll contact with Etou well If possible orz
if possible ;_;
[For next april fool's day maybe?]
Topic Starter
aquabluu
In unrelated news, Zeihen got ranked :3
OzzyOzrock

Zekira wrote:

I really wanna smear Saitama's face with happiness right now...

(...oops)

aquabluu wrote:

In unrelated news, Zeihen got ranked :3
yes
arien666

aquabluu wrote:

In unrelated news, Zeihen got ranked :3
inb4, Tenyou will be ranked<



ps. Zekira SHOULD REMAP Saitama2000 ;_;
Zekira
Yes I know





Yes I know





:D
Topic Starter
aquabluu
waaaah when will Sweet Lay be ranked orzzzzz
arien666
No posts during last 1 day...
;_;



@Zekira:
DA CODE what I said yesterday orz
[Change the format .osu into .c please ;_;]

Download: DA CODE.osu
anongos
Mulberry.osz

It's been a while, but I went back and made fixes on a lot of major timing issues. It should play MUCH MUCH better now.
The first time I mapped this, I downloaded a video of someone playing this song from youtube and used that as the background video to eyeball when the notes would be hit. Shows you how much I knew about mapping. orz
Topic Starter
aquabluu

anongos wrote:

Mulberry.osz

It's been a while, but I went back and made fixes on a lot of major timing issues. It should play MUCH MUCH better now.
The first time I mapped this, I downloaded a video of someone playing this song from youtube and used that as the background video to eyeball when the notes would be hit. Shows you how much I knew about mapping. orz
Finally :3 I was going to tell you about the timing problems but keep forgetting.
Zekira
@arken: I'm not sure what you want me to check here so I'll check it in general... (I haven't run it yet since I don't have a C compiler in the computer I'm using at the moment)

SPOILER
void show(void);
void add(void);
void sub(void);
void multiply(void);
void div(void);

WTF is this for? You're going to re-define these functions later anyway, from what I've seen. These codes essentially create functions show, add, etc. that don't do anything. The function definitions later already straight up works. You can delete this portion.

//Zekira is so moe <3

lol

EDIT: (wait, I DO have a C compiler here. Thank god for Visual Studio)

OK I think I see what's the problem here.



Is it that the list gets printed two times? If it is so, then this is a common problem discussed when using the scanf function for char type variables. You know how you press the Enter key so that the console scans the input? The implementation in C is kind of glitchy: the Enter key is registered as a char in itself, and falls through to the next scanf of a char variable. If you don't get it, I'll try tracing it. Let's say we typed 'm' first to go to the multiply function and input two numbers separated by a space, just as how your program is supposed to work. So the line that works here is:

scanf("%d %d",&a,&b);

Let's say I entered '7 6' then pressed Enter. Let's break our input into multiple parts.
7 = %d , which gets written into the variable 'a'.
' ' (the space) = signifies that a new variable would be entered. It would trigger the next input to be read next.
6 = %d , which gets written into the variable 'b'.

But are those really the only 3 parts? No actually. Everytime you input something into the input stream, you use the Enter key, which is the fourth part of our input.

' ' (the enter key) = %c . Yes the enter key is actually a char type...

So where does this enter key fall to? Simple, it falls through the next iteration in the loop of:

scanf("%c",&n);

found at the start of the code. So the next input becomes an 'Enter', resulting in your program glitching as the variable 'n' becomes an Enter key, but loops anyway because it's not the key for quitting 'q' or 'Q'.

Fixing this is relatively easy, but a bit annoying. Modify your functions to look like this (note the comments I added in):

void multiply(void){
int a,b,r;
char dummy; /*this dummy character will be the one to catch your Enter input*/
printf("Input two numbers with spacing : ");
scanf("%d %d",&a,&b);
scanf("%c", &dummy); /*this way, the dummy variable gets the Enter input, and your next scanf for a %c is safe. For some reason it HAS to be in a separate line away from the first scanf, so you can't have an extra input in the scanf previous of this one since it actually becomes more buggy*/
r = a*b;
printf("%d * %d = %d\n\n",a,b,r);
}

Modify the other functions to reflect this.

Keep this in mind when making scanf inputs that are proceeded directly by char variables.
arien666

Zekira wrote:

@arken: I'm not sure what you want me to check here so I'll check it in general... (I haven't run it yet since I don't have a C compiler in the computer I'm using at the moment)
In conclusion, there needs some part for checking ' '(Enter key) :3...?
Okay ;_;



ps. inb4, aquabluu's Taiko chats
Topic Starter
aquabluu
Not yet lol

*is waiting for Taiko blog update*
crystalsuicune
No update,probably.
They said the next update will be
on 10-something this month...next week,maybe?
anongos
Actually, aquabluu, there is still a lot more issues with this map. orz
I decided to upload it here: http://osu.ppy.sh/s/29833 so that you won't have to be bothered anymore updating the link every time I make a change. Should have done this sooner, but didn't. Sorry.
Zekira

arien666 wrote:

In conclusion, there needs some part for checking ' '(Enter key) :3...?
Okay ;_;
Unfortunately yes. Should be true across any C compiler you may come across (not sure about C# however, but C# is totally different)
Zekira
So I was reading back on my nightmare

Plus, in truth, she has developed special feelings for the man that woke her up to sanity ever since that incident ended years ago.
I kind of like how I worded this, for some odd reason... the sentence is just so vague that it becomes appealing to me.
crystalsuicune
Btw,looks like Taiko Plus is available outside Japan
(saw it in the HK app store),and it's (allegely) free.
Only 3 songs though,we hafta buy the rest.

About effing time they bring it outside the JP app store.
Konmai,do the same with Jubeat plus or else.
arien666

crystalsuicune wrote:

Btw,looks like Taiko Plus is available outside Japan
(saw it in the HK app store),and it's (allegely) free.
Only 3 songs though,we hafta buy the rest.

About effing time they bring it outside the JP app store.
Konmai,do the same with Jubeat plus or else.
BTW, Korea blocked game part of Google appstore FFF
Topic Starter
aquabluu

anongos wrote:

Actually, aquabluu, there is still a lot more issues with this map. orz
I decided to upload it here: http://osu.ppy.sh/s/29833 so that you won't have to be bothered anymore updating the link every time I make a change. Should have done this sooner, but didn't. Sorry.
I'll take a look at it when I'm not having exams. Thanks :)
Lokamp

aquabluu wrote:

Not yet lol

*is waiting for Taiko blog update*

crystalsuicune wrote:

No update,probably.
They said the next update will be
on 10-something this month...next week,maybe?
Next Thursday, to be precise.
On the past post - the one about the 'Taiko Memories' poll - they mentioned 12 May...

Geez. I hope for them it will be an HUGE reveal of songs or PSP infos; I can't wait to play a decent Mulberry S:

crystalsuicune wrote:

Btw,looks like Taiko Plus is available outside Japan
(saw it in the HK app store),and it's (allegely) free.
Only 3 songs though,we hafta buy the rest.

About effing time they bring it outside the JP app store.
Konmai,do the same with Jubeat plus or else.
Aah, it's the Android version; it has three classic song, if my memory still works...
Zekira
Hm, then almost all of us are busy... I'm at the office for the entire vacation period (ours is April to May unlike almost all countries which is July-August) as a school requirement so I really don't even have time to write Chapter 6... Damn it
crystalsuicune
@Lokamp It's also available on the Apple app store.
*coughinb4TaikoJirobasedappcough*

@Zekira Good Luck…You can always write bit by bit whenever
you have time.It'll take a long time but at least there's progress
Topic Starter
aquabluu
I'll be free from mid-May to July though.
arien666

aquabluu wrote:

I'll be free from mid-May to July though.
/me eats aqua<
:3
Zekira
Late Capcom_Unity is late

Japan Only: Monster Hunter Appears in Namco PSP Music Game http://bit.ly/ljdjVp
Like a year late in fact, considering Wii3...
Zekira
Guys, from the osu! Monthly second issue:

Here's a question from a Taiko player. "There are achievements for osu! standard, and for Catch the Beat, but why haven't there been Taiko achievements added yet?"

Because no-one has created them yet. I would suggest a feature request topic. Including artwork for the achievements would speed things up, too.

Graphic assets don't just fall from the sky, unfortunately. Also, when the development team is so small, some aspects of the game regularly get overlooked.
Classic case of "if you don't ask for it, you won't get it", so...
crystalsuicune
Graphics...?
I would have helped,but since I can't make art with
transparent BGs now...orz
arien666

crystalsuicune wrote:

Graphics...?
I would have helped,but since I can't make art with
transparent BGs now...orz
Anything what I need to help you :3?
Zekira

crystalsuicune wrote:

Graphics...?
I would have helped,but since I can't make art with
transparent BGs now...orz
Don't tell me you also have to wait for next year to get your comp fixed...
Topic Starter
aquabluu
What is being planned for achievements?
crystalsuicune

Zekira wrote:

crystalsuicune wrote:

Graphics...?
I would have helped,but since I can't make art with
transparent BGs now...orz
Don't tell me you also have to wait for next year to get your comp fixed...
Unfortunately,yes.Unless my parents are nice enough
to let me use my comp in the holidays (then lock it again
afterwards)

Goddamn A-Levels.Those younger than us form 6s
have it worse though...they all hafta learn part of our
syllabus (which is tough compared with say,the SATs or the GCEs)
even if they don't have enough background knowledge.
And unlike us,they have only one exam so it's all or none for
them.
arien666

aquabluu wrote:

What is being planned for achievements?
1. Combo trial
2. Beat the package
3. Achieve some else thing :3
OnosakiHito
Danny send me few minutes ago a link so I have want to share it here, maybe you know it allready?
http://www.youtube.com/watch?v=-vaTn03Kl4c
Topic Starter
aquabluu

OnosakiHito wrote:

Danny send me few minutes ago a link so I have want to share it here, maybe you know it allready?
http://www.youtube.com/watch?v=-vaTn03Kl4c
lolwut
arien666

OnosakiHito wrote:

Danny send me few minutes ago a link so I have want to share it here, maybe you know it allready?
http://www.youtube.com/watch?v=-vaTn03Kl4c
lolyes, they can XD
pokedigi
Sorry but is there anyone who have Monster Hunter Medley beatmap? I'm looking for it.
Topic Starter
aquabluu

pokedigi wrote:

Sorry but is there anyone who have Monster Hunter Medley beatmap? I'm looking for it.
...Fuq, it got deleted. I'll reupload.

http://www.sendspace.com/file/ii3zjs
arien666
@aquabluu: Err... I'm going to revive X-DAY but...
Can I ask some objects for this song ;_;?

Base data from crystalsuicune's Idea

1. Chibi related BG
2. Comboburst * 1
3. CtB Catcher [Option]

If you can't, I'll try making them by myself orz
[Lack of skill]
Topic Starter
aquabluu
After May 18 I'll start my design stuff. Trouble is, you'll be queued behind Zekira's Shimedore BG and Senpuu BG (and then there's my own Ryougen beatmap to attend to lol)

If you don't mind waiting a bit though sure, I can do it :) Any particular way you want me to draw the BG?
arien666

aquabluu wrote:

After May 18 I'll start my design stuff. Trouble is, you'll be queued behind Zekira's Shimedore BG and Senpuu BG (and then there's my own Ryougen beatmap to attend to lol)

If you don't mind waiting a bit though sure, I can do it :)
Of course, I can wait :3
[/me eats Zekira<JK]
Topic Starter
aquabluu
Off-topic: I love my new desktop :3

arien666

aquabluu wrote:

Off-topic: I love my new desktop :3

TAMAKI MAMI<<<troll

orz
crystalsuicune
CHARLOTTE!<<<<3 *nom'd*
bambool
ego ego atakushi and my soul your beats can not be download now......anybody fix it?
Topic Starter
aquabluu
Give Charlotte some cheese and it'll leave you alone :3

@bambool: Hold on I'm uploading

Ego Ego Atakushi: http://www.sendspace.com/file/ijd7ap

EDIT: I don't have My Soul, Your Beats though orz. Help?
Lokamp
Scrap Koibumi 2000, the singer's voice is better here. <333

Konya wa Homi
Zekira
Mirai posted new character sheets but unfortunately the images are somehow not showing up on pixiv in my compy at the moment... one thing's for sure though, crystal's Rotter design is officially ditched :P

EDIT: Wait I found a workaround. I'll repost the pictures later.

We have:

-Rotter (Rotter)
-Meki (?)
-Marea (Dream Tide?)
-Mokumo (?)
-Eclipse (Total Eclipse 2035) -- this girl is awesome
-Song (SORA-IV) - oddly enough her hat is really thin

And I think that's it so far
arien666
SPOILER

Left = Stage.0 AC11
Right = 亞空 AC12.5


Rotter = Rotter
Meki = I dunno ;_;


marea(Tide) = ???
Mokumo = Related with cloud I guess

All copyrights for Mirai :3


Zekira
...man I didn't see the pic of Zero and Acoo :< Oh well.

Also you forgot the third page (Eclipse and Song)

arien666

Zekira wrote:

...man I didn't see the pic of Zero and Acoo :< Oh well.

Also you forgot the third page (Eclipse and Song)
DAMN osu! attachment ONLY ALLOW max=3
FFF

/me eats Mirai<
Cristian
well arien666 talk with me and i need to put my maps in the http://taiko.astoni.sh and idk maby help?

i need to put this
Nico Nico douga - Myomyomyomyomyomyomyon!
Nico Nico douga - Crabida
Taiko no tatsujin - Still a ducking
Topic Starter
aquabluu
Wild guess: Karui Zawameki and Kumo Made Todoke (both being PSP songs)

Also, I ran 'tide' through Babelfish. 'Marea' is 'tide' in Spanish, so that is definitely Dream Tide.
arien666

aquabluu wrote:

Wild guess: Karui Zawameki and Kumo Made Todoke (both being PSP songs)

Also, I ran 'tide' through Babelfish. 'Marea' is 'tide' in Spanish, so that is definitely Dream Tide.
Thanks for datas aqua :3



Kurisuchianu wrote:

well arien666 talk with me and i need to put my maps in the http://taiko.astoni.sh and idk maby help?

i need to put this
Nico Nico douga - Myomyomyomyomyomyomyon!
Nico Nico douga - Crabida
Taiko no tatsujin - Still a ducking
Err... No slots yet so ;_;
OzzyOzrock
Marea is also dizzy in spanish lol. Like, "me marea" means it makes me dizzy :3
crystalsuicune
That means I should show the rest of my chibianthros to Mirai ASAP then…
Zekira
At least you already have dibs on all the 2000s :P
Mara
Make me cry people. I am ready for a challenge!

SPOILER
muzukashiithx
Zekira
I'm not sure what kind of challenge you're looking for, lol
crystalsuicune
Too bad pretty much all of my taikomaps are oni-only…
I don't really map batshitinsane taikomaps so it's awright
I guess?
Topic Starter
aquabluu

LunaticMara wrote:

Make me cry people. I am ready for a challenge!

SPOILER
muzukashiithx
Mara
Spoiler tells everything about life. And me.
LittleMagic_old


hmm ... :o
Topic Starter
aquabluu
One more for the lulz (fast Ryougen no Mai FC with 7 whites)

Noobita

aquabluu wrote:

One more for the lulz (fast Ryougen no Mai FC with 7 whites)

wtf who is this D:
LittleMagic_old

aquabluu wrote:

One more for the lulz (fast Ryougen no Mai FC with 7 whites)

fast jyoubutsu nisen :D

Topic Starter
aquabluu
Yeah but the guy performed a lot better on Ryougen. Spam clear on 37564 stream was epic lulz though :D
arien666

Zekira wrote:

At least you already have dibs on all the 2000s :P
this.

@crystal: err... Can I use them for each 2000 series songs orz???
crystalsuicune
Sure you can,yo!So long as you don't
claim you designed them or anything.
arien666

crystalsuicune wrote:

Sure you can,yo!So long as you don't
claim you designed them or anything.
Thanks :3
/me waits for aqua :3

BTW... I wonder if Anime songs can be chibi :3...
Topic Starter
aquabluu

arien666 wrote:

crystalsuicune wrote:

Sure you can,yo!So long as you don't
claim you designed them or anything.
Thanks :3
/me waits for aqua :3

BTW... I wonder if Anime songs can be chibi :3...


lol jk
arien666

aquabluu wrote:

arien666 wrote:

Thanks :3
/me waits for aqua :3

BTW... I wonder if Anime songs can be chibi :3...


lol jk
Oh ;_;
Sorry orz

/me eats Zekira<<<
OzzyOzrock

Noobita wrote:

aquabluu wrote:

One more for the lulz (fast Ryougen no Mai FC with 7 whites)

wtf who is this D:
must be 777277737774 lol ;_;
crystalsuicune
@aqua Realized that I forgot to draw in EkiBEN's headphones in
that niisen group pic orz
I'll post his ref pic later


Off-topic:Finally got to play IIDX whooooo~!
Zekira
Off-topic:Finally got to play IIDX whooooo~!
WAAAAAAAAAAAAAH D:
Topic Starter
aquabluu
Thanks crystal :)

Sneak peek of Saitama posing in the Shimedore pic I'm making. I'm not even close to halfway done though, just Saitama is all. ^^

crystalsuicune

EkiBEN

Saitama,did you swap colours with KiSai?!
Just kidding lol
Zekira

aquabluu wrote:

Thanks crystal :)

Sneak peek of Saitama posing in the Shimedore pic I'm making. I'm not even close to halfway done though, just Saitama is all. ^^
I came...
arien666

crystalsuicune wrote:


EkiBEN

Saitama,did you swap colours with KiSai?!
Just kidding lol
I bet Eki and Tabe are palz orz
Topic Starter
aquabluu
I thought Sai and K.Sai were both green and H.Sai was blue?

Who should Koibumi's partner be? :3 I'm pairing her up with someone in the BG and have X-DAY grade their relationship
Zekira
Saitama is white :<

Topic Starter
aquabluu
fffffff fixing now
Zekira
Who should Koibumi's partner be?
Every female and you know it
Topic Starter
aquabluu
Urgh....I'll think of someone that isn't singing, dancing, eating or posing as I planned. :P

EDIT: 7777th post hells yeah :D
arien666

aquabluu wrote:

I thought Sai and K.Sai were both green and H.Sai was blue?

Who should Koibumi's partner be? :3 I'm pairing her up with someone in the BG and have X-DAY grade their relationship
Sai : white
K.Sai : green
H.Sai : blue?

Koibumi + X-DAY
so that is why I am making XDAY orz
Zekira
In my story I somehow happened to pair her up with Senpuu, and sometimes Mintia, for some reason. Heheheh...
show more
Please sign in to reply.

New reply