Maidens of the Kaleidoscope

~Hakurei Shrine~ => Rika and Nitori's Garage Experiments => Topic started by: DgBarca on August 04, 2009, 09:00:13 PM

Title: DgBarca's pile of stuff
Post by: DgBarca on August 04, 2009, 09:00:13 PM
Colorfull Preparation : One non spell and a card
Download link (http://www.mediafire.com/download.php?muhzojmjyj5)
 Screenshot (http://img267.imageshack.us/img267/1890/colorfullpreparation.png)

New Sun
Download link (http://www.mediafire.com/download.php?tg3fgtgybm0)
 Screenshot (http://img199.imageshack.us/img199/7671/newsun.png)

Byakuren 2nd Card
Download link (http://www.mediafire.com/download.php?zemzmmoaymk)
 Screenshot (http://img199.imageshack.us/img199/7206/byakurenm.png)

Nazrin Stage
Download link (http://www.mediafire.com/download.php?ny2zzmlyyzj)
 Screenshot n?1 (http://img199.imageshack.us/img199/4174/midcardr.png)
 Screenshot n?2 (http://img441.imageshack.us/img441/5788/1card.png)
 Screenshot n?3 (http://img44.imageshack.us/img44/6226/lastcard.png)

Murasa Stage (not finished (almost started)
 Awesome Preview (http://img267.imageshack.us/img267/5460/incomingstuff.png)
 BETA Murasa (http://www.youtube.com/watch?v=hB33d9mLyKo)

UFO ReimuA Player Script
 Download link (http://www.mediafire.com/download.php?qwmt4eom2jn)
Title: Re: DgBarca's random cards
Post by: Drake on August 04, 2009, 09:20:27 PM
Il y a quelques gens ici qui parlent fran?ais. Mais, je pense que je suis le seul qui programme en Danmakufu aussi... (Autre que vous >_>)

J'vais les jouer dans un moment, attend.
Title: Re: DgBarca's random cards
Post by: DgBarca on August 04, 2009, 09:43:10 PM
O_O O_O O_O O_O OH MY...
Ah ! J'ai oubli? la vid?o...la vid?o ♪ la vid?o ♫ (http://www.youtube.com/watch?v=GlMJCB2lgWo)
[/FrenchOFF]
Oh and I will put my oldest cards in the 1st post later

Title: Re: DgBarca's random cards
Post by: Cabble on August 06, 2009, 01:58:28 AM
The laser keeps giving me bugs >:(
Title: Re: DgBarca's random cards
Post by: DgBarca on August 06, 2009, 12:04:15 PM
Ho, Sorry, in the NSC script put #include_function ".\lib\SHOT_REPLACE\shot_replace.dnh"; Instead of #include_function "lib\SHOT_REPLACE\shot_replace.dnh";
I will Upload a new version soon
New Version, the Card pattern is now more structured but it is kinda...hellish...

Download link (http://www.mediafire.com/download.php?zzojoyfwm2m)
Video (http://www.youtube.com/watch?v=CjF36jrqyME&fmy=18) (just the updated Card)
Title: Re: DgBarca's random cards
Post by: DgBarca on August 23, 2009, 07:26:26 PM
Was I...bored ? (use the Expanded Shot Data (not the CtC one)
Code: [Select]
#TouhouDanmakufu
#Title[Bored ?]
#Text[UFO ?]
#PlayLevel[Replica ?]
#Image[.\img\Scarletsign.png]
#Player[FREE]
#ScriptVersion[2]


script_enemy_main {

let ImgBoss = "script\img\ExRumia.png";

let frame = 0;
let frame2 = 0;
let angle = 0;
let angle2 = 180;
let angleL = 0;


#include_function "lib\ExpandedShotData\shot_replace.dnh";

@Initialize {

SetLife(8000);
SetDamageRate(100, 100);
shotinit;
SetEnemyMarker(false);
MagicCircle(false);
LoadGraphic(ImgBoss);
SetTexture(ImgBoss);
SetGraphicRect(0, 0, 60, 60);
SetMovePosition02(GetCenterX,GetY+190, 60);
SetDefaultStatusVisible(true);
      SetEffectForZeroLife(0, 0, 0);
}

@MainLoop {
SetCollisionA(GetX, GetY, 32);
SetCollisionB(GetX, GetY, 16);
frame++;
frame2++;


if(frame > 60 && frame%10==0){
PlaySE(GetCurrentScriptDirectory~"sound\Shot1.wav");

CreateShot01(GetX+60,GetY-80,1.6,angle,BLUE22,30);
CreateShot01(GetX+60,GetY-80,2.0,angle,BLUE22,30);
CreateShot01(GetX+60,GetY-80,2.4,angle,BLUE22,30);

CreateShot01(GetX-60,GetY-80,1.6,angle2,BLUE22,30);
CreateShot01(GetX-60,GetY-80,2.0,angle2,BLUE22,30);
CreateShot01(GetX-60,GetY-80,2.4,angle2,BLUE22,30);

CreateShot01(GetX+110,GetY+55,1.6,angle,BLUE22,30);
CreateShot01(GetX+110,GetY+55,2.0,angle,BLUE22,30);
CreateShot01(GetX+110,GetY+55,2.4,angle,BLUE22,30);

CreateShot01(GetX-110,GetY+55,1.6,angle2,BLUE22,30);
CreateShot01(GetX-110,GetY+55,2.0,angle2,BLUE22,30);
CreateShot01(GetX-110,GetY+55,2.4,angle2,BLUE22,30);

angle -= 15;

angle2 += 15;

}

if(frame2 == 120){
PlaySE(GetCurrentScriptDirectory~"sound\Laser2.wav");
loop(16){
CreateLaserA(1,GetX,GetY,0,10,PURPLE11,45);
SetLaserDataA(1,0,angleL+GetAngleToPlayer,0,10,0,0);
SetShotKillTime(1,105);
FireShot(1);
angleL += 360/16
}
frame2 = 0;
}
}
@DrawLoop {
DrawGraphic(GetX, GetY);
}


@Finalize {
DeleteGraphic(ImgBoss);
}
}
Title: Re: DgBarca's random cards
Post by: Primula on August 23, 2009, 07:45:00 PM
Gives me a Keineish feeling. BTW:
THIS SPELLCARD WILL BE YOUR LAST....REPLICAAAAAAAAAAAAAAAAAAAAAA!!!!
Title: Re: DgBarca's random cards
Post by: DgBarca on August 23, 2009, 07:46:13 PM
Gives me a Keineish feeling. BTW:
THIS SPELLCARD WILL BE YOUR LAST....REPLICAAAAAAAAAAAAAAAAAAAAAA!!!!
You didn't play UFO yet, I guess...
Title: Re: DgBarca's random cards
Post by: Primula on August 23, 2009, 08:36:26 PM
Err? Well, I did not get to 1cc the game yet...
Title: Re: DgBarca's random cards
Post by: DgBarca on August 23, 2009, 09:04:13 PM
Byakuren second spell card...
I made also Non-Spell, but...is that just too difficult ? (http://www.mediafire.com/download.php?yttmmzuyonn)
(Plurial Version Inside)
Title: Re: DgBarca's random cards
Post by: DgBarca on August 31, 2009, 02:16:48 AM
I've done my first stage ever, it is just 2 wave of enemies and a mid boss/boss...3D drawing is PAINNNN and thanks to Ravenlock for the animated fairies.

Download link (5.04 MB) (http://www.mediafire.com/download.php?dxwiojzzmdz)
Screenshots :
http://img132.imageshack.us/img132/1274/fairywave.png (http://img132.imageshack.us/img132/1274/fairywave.png)
http://img195.imageshack.us/img195/1371/mid1.png (http://img195.imageshack.us/img195/1371/mid1.png)
http://img84.imageshack.us/img84/8005/mid2.png (http://img84.imageshack.us/img84/8005/mid2.png)
http://img199.imageshack.us/img199/9792/midcard.png (http://img199.imageshack.us/img199/9792/midcard.png)


Title: Re: DgBarca's random cards
Post by: Naut on August 31, 2009, 11:24:05 PM
Very nice stuff. Here's the replay you requested.
Title: Re: DgBarca's random cards
Post by: Lawence Codye on September 05, 2009, 03:46:53 PM
I can't seem to download the NazrinMiniStage file from Mediafire...it's acting very, very stupid.  It keeps redirecting me to the download page...everytime I click on the blue link it reprocesses the download request & shows the blue link again...only to repeat again when I click on it once more...I really want to try it out too...
Title: Re: DgBarca's random cards
Post by: DgBarca on September 05, 2009, 05:20:27 PM
Well I don't know why you are writing like that but I am glad that someone posted here
Here is the updated download link : http://www.mediafire.com/download.php?2nnoddntzju (http://www.mediafire.com/download.php?2nnoddntzju)
(Updated 1st post)
Title: Re: DgBarca's random cards
Post by: Lawence Codye on September 06, 2009, 02:28:12 PM
My bad...I like to write in italic...the centering thing is well, no idea.  Anyway thanks, I have it now & the other cards as well.
Title: Re: DgBarca's random cards
Post by: Johnny Walker on September 06, 2009, 05:58:12 PM
Very nice scripts.
I want that cirno/murasa stage! =P
Title: Re: DgBarca's random cards
Post by: DgBarca on September 13, 2009, 01:53:15 PM
BETA of the stage 2 boss (http://www.youtube.com/watch?v=hB33d9mLyKo)
, it needs a lot of improvement, espeasialy for the explosing anchor that is too difficult, it's stage 2~ze.
Please comments
(no download link, it is just beta)
Title: Re: DgBarca's random cards
Post by: DgBarca on September 19, 2009, 10:42:38 PM
I have redone my Nazrin STAGE (only the stage)
Here you are (http://www.mediafire.com/download.php?ny2zzmlyyzj)
MidBoss is fixed too.
Title: Re: DgBarca's random cards
Post by: Primula on September 20, 2009, 04:41:34 AM
So it's finalized?
Title: Re: DgBarca's random cards
Post by: DgBarca on September 20, 2009, 08:22:07 AM
I have normal and lunatic mode to do, but I will do them later...

Maybe I will fix some problems but I can't see any...I have been playing this for too long.
So, if you find a problem...
Title: Re: DgBarca's random cards
Post by: Primula on September 20, 2009, 01:26:52 PM
Oh okay ^^ and working on lives too?
Title: Re: DgBarca's random cards
Post by: CK Crash on September 20, 2009, 03:00:32 PM
The stage is really nice, if hard for a first stage. The part with the green fairies that shoot when they reach the bottom is pretty tough. One thing though,  I got massive slowdown on the final spell. Too many Laser Cs?
Title: Re: DgBarca's random cards
Post by: Zengar Zombolt on September 20, 2009, 05:02:58 PM
Oh god, I loved this script to no end. Specially Nazrin's nonspells.
About the stage... I do agree that it's a little bit too hard, but that's because it's Hard mode, so it's expected.
Also, good job on the twisting lasers.
Title: Re: DgBarca's random cards
Post by: Lawence Codye on September 21, 2009, 06:50:07 AM
Can't wait til the Murasa stage is finished, look forward to it...especially after seeing the video for the beta on youtube...I liked it so far.  Oh, & the Nazrin Stage was something I enjoyed but the stage portion does seem a tiny bit difficult for a first stage...though not on hard mode...didn't really bother me though...it's so well done...
Title: Re: DgBarca's random cards
Post by: Primula on September 21, 2009, 10:10:56 PM
For a "short stage", it's sorta lengthly but then again I like your scripts 8D
Title: Re: DgBarca's pile of stuff
Post by: DgBarca on October 31, 2009, 07:05:57 PM
UFO ReimuA Player Script
 Download link (http://www.mediafire.com/download.php?qwmt4eom2jn)

Fiuuuuuu, indeed...
Title: Re: DgBarca's pile of stuff
Post by: Primula on October 31, 2009, 08:28:52 PM
-downloads-
Title: Re: DgBarca's pile of stuff
Post by: Johnny Walker on October 31, 2009, 11:18:17 PM
UFO ReimuA Player Script
 Download link (http://www.mediafire.com/download.php?qwmt4eom2jn)

Fiuuuuuu, indeed...

Wow. Very good job!
Title: Re: DgBarca's pile of stuff
Post by: Lawence Codye on October 31, 2009, 11:43:26 PM
That Reimu A(Touhou UFO) player is outstandingly done...If it was actually a concern...My only problem with it would be that she's not at full power(have all 4 of her options).  The spellcard is done very well...wow...
Title: Re: DgBarca's pile of stuff
Post by: DgBarca on November 01, 2009, 10:23:59 AM
I can put it to 1,2,3 and 4 power is you want, anyway, thanks !
Title: Re: DgBarca's pile of stuff
Post by: Lawence Codye on November 01, 2009, 10:37:28 AM
Your welcome & well, no need to do so really, though...at least 2 power...at least 2 power...will do just fine to me.
Title: Re: DgBarca's pile of stuff
Post by: DgBarca on November 01, 2009, 08:08:24 PM
4 Reimu in 1 (http://www.mediafire.com/download.php?b4gnhmaoo3m)
Need feedback on the power
Title: Re: DgBarca's pile of stuff
Post by: Demonbman on November 01, 2009, 08:25:21 PM
I can put it to 1,2,3 and 4 power is you want, anyway, thanks !

can you make it like the Phantasm Marisa Character, when you press "c" it adds another option?
Title: Re: DgBarca's pile of stuff
Post by: DgBarca on November 01, 2009, 08:42:12 PM
can you make it like the Phantasm Marisa Character, when you press "c" it adds another option?

I am sorry but it will be "no"
Title: Re: DgBarca's pile of stuff
Post by: Lawence Codye on November 02, 2009, 01:13:50 AM
You did excellent on making the shot & all...my only downer would be that the focus shot(at least at 4 options)does around 407.000000 dps...In other words, I'd make the focused shot do a little less damage at least for all the power levels...& since you made all the power levels so well...I'd keep them all after the small focused power adjustment.  &...thank you for these...now I don't have to make this shot type(even the needles are well done which I can't do myself for anything in the world).

...oh, & please fix the typo's in the #Text[]...not a big problem but one that's easily fixed...
Title: Re: DgBarca's pile of stuff
Post by: DgBarca on November 02, 2009, 10:14:33 AM
Okay Thanks it's all I wanted.
I will fix all this things, I hope ^^
Title: Re: DgBarca's pile of stuff
Post by: Prime 2.0 on November 02, 2009, 08:18:16 PM
The character animation also appears to be faster than it should be, and the shot sound plays really fast as well.