Maidens of the Kaleidoscope
~Hakurei Shrine~ => Rika and Nitori's Garage Experiments => Topic started by: Mahou Shoujo Nel! on July 16, 2014, 06:10:25 PM
-
Since i didn't to get the ph3 basics from the tutorials i saw...
I wanted to ask if anyone could make me simple script templates for ph3,without any moving or firing.
I need:
A nonspell template.
A SpellCard Template.
-
A nonspell and a spell are the same thing as far as script structure goes. If you want a single script to act as a spell card, you might want it to have some spell card bonus, a cut-in of sorts, and an extra background. These are things you add on, though.
Really though a single script "template" would be pretty empty. Even then some defaults will pop up. The only thing you really need for it to run is some defined life and a title.
#TouhouDanmakufu[Single]
#ScriptVersion[3]
#Title["text"]
@Initialize{}
@MainLoop{}
@Event{
alternative(GetEventType())
case(EV_REQUEST_LIFE){
SetScriptResult(1);
}
}
You'd be better off just finding some basic examples.
http://www.geocities.co.jp/SiliconValley-Oakland/9951/pre/th_dnh_help_v3.html
http://dmf.shrinemaiden.org/wiki/Sample_Danmaku_Scripts
You can also find examples from the scripts that come packaged with the engine.
If you haven't watched Hele's basics tutorial video (https://www.youtube.com/watch?v=dKSe8s9FsAc) then there's that too.
-
If you haven't watched Hele's basics tutorial video (https://www.youtube.com/watch?v=dKSe8s9FsAc) then there's that too.
I'd really like to see that,but i cant watch videos ATM.
Anyway,thank you for everything!