forum

B-Baakaa! Mini-tournament!

posted
Total Posts
72
show more
Cookiemaid

Lytessill wrote:

Winner is determined by ACC so does using mods even matter?
More challenge/fun/whatever. Keep in mind that this one is mostly for fun ;)
Lytessill

Cookiemaid wrote:

More challenge/fun/whatever. Keep in mind that this one is mostly for fun ;)

I mean why should both parties have to use mods if there is no advantage.
SaikoNo
put me in :)
Cookiemaid

Lytessill wrote:

I mean why should both parties have to use mods if there is no advantage.
Then don't play with mods. Simple :P
Topic Starter
AshiNoBaka

Lytessill wrote:

I mean why should both parties have to use mods if there is no advantage.

Sometimes acc is worse when you're playing with HR or HD.
That counts ... If everyone will want to play with mods it does not matter. Then all equal.

red31kill sorry.. I can sign up for the waiting list...

voidlessheart - added.
Kiss of Life

AshiNoBaka wrote:

Lytessill wrote:

I mean why should both parties have to use mods if there is no advantage.

Sometimes acc is worse when you're playing with HR or HD.
That counts ... If everyone will want to play with mods it does not matter. Then all equal.

red31kill sorry.. I can sign up for the waiting list...

voidlessheart - added.
So if i get 25k before the tournament start ?
Topic Starter
AshiNoBaka

red31kill wrote:

So if i get 25k before the tournament start ?
If it finds a place for you then there is no problem.
Bardiche_Z
I'd like to take part! Messaged you on skype :)
Earya
can i take part? pm'ed you on skype
AzureRin
Well...So something just came up and I can't be there for the first day...drop me please :(
Already sent a pm on skype.


NVM =w=
Topic Starter
AshiNoBaka

AzureRin wrote:

Well...So something just came up and I can't be there for the first day...drop me please :(
Already sent a pm on skype.
We talked about changing days!

Changing the days! (11th and 12th April 2015! )


Earya and Lytessill added. :3

And... so, Bardiche_Z... You rank.... Is not within the limits. You have less than 5K. Sorry.
El Condor Pasa
You guys put Lytessill in twice btw :P
El Condor Pasa
nvm i had a glitch rofl
Topic Starter
AshiNoBaka

ThePro365 wrote:

You guys put Lytessill in twice btw :P
Yeah i know. XDDD ''''
Riot
I want to join please
Worvik
Deleted
AzureRin

AshiNoBaka wrote:

AzureRin wrote:

Well...So something just came up and I can't be there for the first day...drop me please :(
Already sent a pm on skype.
We talked about changing days!

Changing the days! (11th and 12th April 2015! )


Earya and Lytessill added. :3

And... so, Bardiche_Z... You rank.... Is not within the limits. You have less than 5K. Sorry.
Yep I saw :3~
Bread
If this isn't full, I'd be interested in joining
Fibbbb
Add me to the list please! I can't wait to play!
Topic Starter
AshiNoBaka
There are 3 places left!


[size=150]Please confirm on skype!

If you do not confirm will be removed from the list!
[/size]
Kagenoshi
I wanted to say
'why you are aksing? ofcuorse i'm in !'
but Ashi you didn't aked XD
InsanityFire
I want to join :^)
I've added you on skype :^)

Confirmation that I will be here.
Cookiemaid
What are you doing here, Bagelose? :^)
DeletedUser_3905941
please drop me from competition
not playing osu
clayton
I'd be interested in joining :) added on skype @cl8n.b
Ruin Lance
I'd like to join.
Edit: I added you on skype already.
Histoire
Id like to join
Ravelyx
See you guys at the tournament I guess~~
DahplA
I would join, but it's difficult to find out what time to get on/off especially with daylight savings on the Saturday or something...
And it's about accuracy as well ;_;
Topic Starter
AshiNoBaka
People who do not have added me on skype has been deleted!

Free 3 places!
Riot
The map China Express has been deleted!
Change it please
Synpoo
Am I eligible to join this?? ;-;

I'd probably be #5k if daidai wasn't so broken for pp :roll:
Szymek
I'lol join in, I'm available.
Nakano Itsuki
Count me in :3 I'm free to join.
Bier
I'll join
Topic Starter
AshiNoBaka
Ehhh~

Sorry guys list is full ;n;
Pidgy
Can't wait ^_^
Gumica
UPDATE

Hello everyone~ I'm Gumica, Ashi's assistant, and I'm mainly in charge with data organization and software development. Ashi apparently has some troubles with connecting to the site, therefore I shall inform you guys with the following news:

1) StarrStyx, your application has been accepted, as Piyori has (apparently) dropped out of the tournament.
2) We are accepting players as reserves in case any of the 24 players aren't online at the time of the tournament.
3) Ashi made a decision to add 4 mysterious maps which will not be revealed :^)
4) Here is the current matchup list:


As for thoese of you, who are questioning the code in place:

CODE
Image[] IMG;
private void buttonLOAD_Click(object sender, EventArgs e)
{
//THE METHOD LOADS ALL OF THE IMAGES FROMA FOLDER TO AN IMAGE ARRAY
int count = 0;
for(;;count++)
{
if (File.Exists(@"STAGE\" + count+".jpg")) ;
else break;
}

IMG = new Image[count];
for(int i = 0; i < IMG.Length; i++)
{
IMG[i] = Image.FromFile(@"STAGE\" + i + ".jpg");
}

labelSTATUS.Text = "Images Successfully Loaded!";
}





private void button1_Click(object sender, EventArgs e)//RANDOMIZE BUTTON
{
imageList1.Images.Clear();
imageList2.Images.Clear();
imageList3.Images.Clear();
imageList4.Images.Clear();
listView1.Clear();
listView2.Clear();
listView3.Clear();
listView4.Clear();
//CLEARING THE LIST AND CALLING THE METHOD
//DEPENDING ON THE AMOUNT OF PLAYERS (1st, 2nd, 3rd stage)
switch(IMG.Length)
{
case 24: CREATE24(); break;
case 12: CREATE12(); break;
case 4: CREATE4(); break;
}
}



public void CREATE24()
{
//BOOL FOR USED NUMBERS
bool[] CORRECT = new bool[24]; for(int i = 0; i < CORRECT.Length; i++) CORRECT[i] = false;
for (int NoP = 0; NoP < 24; NoP++)
{
int NUMBER = -1;

if (NoP < 18)//IF 18 IMAGES WERE ALREADY LOADED WE DON'T NEED TO RANDOMIZE LAST 6
{
while (true)
{
Random R = new Random();
NUMBER = R.Next(0, 24);
if (CORRECT[NUMBER]) continue;
else { CORRECT[NUMBER] = true; break; }
//IF THE NUMBERS IS ALREADY USED THEN RANDOMIZE AGAIN
}

//ADDING THE IMAGE TO THE LIST
if (NoP < 6)
{
imageList1.Images.Add(IMG[NUMBER]);
}
else if (NoP < 12)
{
imageList2.Images.Add(IMG[NUMBER]);
}
else if (NoP < 18)
{
imageList3.Images.Add(IMG[NUMBER]);
}
}
else
{
for (int i = 0; i < 24; i++ )
{
if (CORRECT[i] == false) imageList4.Images.Add(IMG[i]);
}
NoP = 23;
}
}


//DISPLAYING IMAGES
listView1.SmallImageList = imageList1;
listView2.SmallImageList = imageList2;
listView3.SmallImageList = imageList3;
listView4.SmallImageList = imageList4;

for (int j = 0; j < 6; j++)
{
listView1.Items.Add(new ListViewItem() { ImageIndex = j });
listView2.Items.Add(new ListViewItem() { ImageIndex = j });
listView3.Items.Add(new ListViewItem() { ImageIndex = j });
listView4.Items.Add(new ListViewItem() { ImageIndex = j });
}


}



I wish you all good luck. Map selections for each group will be announced sometime next week.
Cookiemaid
Edit: Okay resolved. Nothing to see here.
Lytessill
When will we be told the maps we're playing?
show more
Please sign in to reply.

New reply