Author Topic: Dummy script request.  (Read 1990 times)

Mahou Shoujo Nel!

  • Mahou shoujou
  • Well, let the Mahou begin Trinity!
Dummy script request.
« 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.

Drake

  • *
Re: Dummy script request.
« Reply #1 on: July 16, 2014, 11:36:09 PM »
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.
Code: [Select]
#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 then there's that too.

A Colorful Calculating Creative and Cuddly Crafty Callipygous Clever Commander
- original art by Aiけん | ウサホリ -

Mahou Shoujo Nel!

  • Mahou shoujou
  • Well, let the Mahou begin Trinity!
Re: Dummy script request.
« Reply #2 on: July 17, 2014, 06:05:02 AM »
If you haven't watched Hele's basics tutorial video then there's that too.

I'd really like to see that,but i cant watch videos ATM.
Anyway,thank you for everything!
« Last Edit: July 17, 2014, 04:28:53 PM by Mahou Shoujo Nel! »