Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #TouhouDanmakufu
- #Title [Test script]
- #Text [danmakufu logic testing]
- #ScriptVersion [2]
- #Player[FREE]
- script_enemy_main {
- let CSD = GetCurrentScriptDirectory;
- @Initialize {
- DeleteSE("se\seUseSpellCard.wav");
- SetLife(100);
- MainTask;
- }
- @MainLoop {
- yield;
- }
- task MainTask{
- loop{
- if(false || false || false && true){CreateShot01(GetX,GetY,3,90,RED02,0);}
- if(true || false || false && true){CreateShot01(GetX,GetY,3,80,BLUE05,0);}
- if(false || false || true && true){CreateShot01(GetX,GetY,3,100,GREEN11,0);}
- wait(60);
- }
- }
- @DrawLoop {
- }
- @BackGround {
- }
- @Finalize {
- }
- function wait(w) {
- loop(w){yield;}
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment