Author Topic: Looking for more Scriptwriters! (team)  (Read 4601 times)

ReimuHakurei

Looking for more Scriptwriters! (team)
« on: May 13, 2011, 01:22:14 PM »
Hello

Didn't  really know where this went but if it  goes somewhere else then can a mod move it :3.
(or if we can't make these kind of topic's by all means then lock it :p).

I'm currently making Bullet-hell game called "Ragnarok Bullet-Hell"
(not the same like Zun's).

I already have a group called PhantasmagoriaCo but I'm the only one in the group who can do
Script coding and I would like to recruit people that can also script code :D

P.s
If you want more infomation about the game I'm making then just ask :3
(script language Lua)

« Last Edit: May 13, 2011, 09:56:32 PM by ReimuHakurei »

Chronojet ⚙ Dragon

  • The Oddity
  • 今コソ輝ケ、我ガ未来、ソノ可能性!!
Re: Looking for more Scriptwriters! (team)
« Reply #1 on: May 13, 2011, 01:27:23 PM »
Depends. If you're even finished anything, I'd like to see what you've done.
Otherwise, I'll have to think about it.

ReimuHakurei

Re: Looking for more Scriptwriters! (team)
« Reply #2 on: May 13, 2011, 01:57:50 PM »
Well I can't show u any images but I will show you one of the scripts I have done so far :p
function powerup()
   -- Using image "powerup.png"
   image("powerup.png")
   -- We use collision layer 3 (enemy bullets) so that it'll collide with the player
   collision_layer(3)
   -- The hitbox is a rectangle 13px wide and 13px high
   collision_type("RECT",10,16)
   -- The powerup doesn't damage the player
   collision_damage(0)
 
   -- Incrementing power by 0.2 on hit
   onDamage(function () incPower(0.2) end)
   -- When the player is close, we follow it
   onGraze(function ()
         -- We stop the main thread
         stop()
         -- Create a task for follow("player",410)
         task(follow,"player",410)
                        -- Erasing this event
         onGraze()
                        -- Set Grazed
         setGrazed(true)
      end)
 
   -- And eventually we make it go downward
   targetfix(100,Coord()+{0,1})
end


-- A basic image for our player
image("N/A.png") <------------- Nothing yet

-- The hitbox is a circle of radius 5
collision_type("CIRCLE",5)

-- The graze hitbox is also a circle, but of radius 50
collision_graze_type("CIRCLE",50)

-- Defining the shot type to "bullet" object with interval 0.3s
shot_type("bullet",0.3)

-- Defining the Explosive type to "Explosive" object, no Explosive repeat
Explosive_type("Explosive")

If u don't like the looks of it then I can understand :3
« Last Edit: May 13, 2011, 02:09:25 PM by ReimuHakurei »

Chronojet ⚙ Dragon

  • The Oddity
  • 今コソ輝ケ、我ガ未来、ソノ可能性!!
Re: Looking for more Scriptwriters! (team)
« Reply #3 on: May 13, 2011, 02:01:37 PM »
Well I can't show u any images but I will show you one of the scripts I have done so far :p





If u don't like the looks of it then I can understand :3
Uh.... Oh my. Please read the rules - no really huge images (the first one) - could you please change those to links?

Also, I think I won't be able to help, seeing this code, I don't think I know the language.

Plus, can't you just pastebin some code? It's much easier than uploading images of them. :(

ReimuHakurei

Re: Looking for more Scriptwriters! (team)
« Reply #4 on: May 13, 2011, 02:06:38 PM »
Ah Sorry :p and alright :3

Blargel

  • RAWR!
  • I'M AN ANGRY LOLI!
Re: Looking for more Scriptwriters! (team)
« Reply #5 on: May 13, 2011, 05:32:46 PM »
You might wanna give more description about what the scripters would be working with. It doesn't sound like you're working with Danmakufu and the code doesn't look like anything I particularly know. Also, you can post links still post links to images, so you didn't really need to remove them, just not show them on the post itself.
<WorkingKeine> when i get home i just go to the ps3 and beat people up in blazblue with a loli
<Azure> Keine: Danmakufu helper by day, violent loli by night.

ReimuHakurei

Re: Looking for more Scriptwriters! (team)
« Reply #6 on: May 13, 2011, 06:12:07 PM »
ah then I shall give more Description of the story and what I want you to do for me :p
(that's if they join me :p...).

Btw I'm using apart of Danmagine source coding I would want you to do is to code certain scripts like:

Stage Scripts (when one stage is done fades to the next one).
Intro Script (when starting the game shows some of it then fades to the menu screen).
Chatbox Script (When near a boss or at one Chatbox appears after that the fight).
Score Script (when died or beated the game gains your score then saves it).

I know it's asking for a bit too much but I really want to make my own Offcial Bullet-hell game
with the help of you people :D

Ok here's the storyline so far it might change.

Ragnarok Danmaku (The Fight Of The Gods Bullet-hell) a game in making bullet-hell by a group called PhantasmagoriaCo (A fantastic sequence of haphazardly associative imagery, as seen in dreams or fever).


RagnarokDanmaku (ラグナロク 弾幕 )

Years back before the seal was put on humans and berserkers, they were at war for many years. The humans tried to kill all of the berserkers because of the destructive god abilities they had as the humans found this a serious threat.

Until one day world Xeno was sealed from Earth, it has since been forgotten by humans it’s now Haruka Haru job to Keep peace between both worlds.
« Last Edit: May 13, 2011, 06:15:51 PM by ReimuHakurei »

ark

  • みょん
Re: Looking for more Scriptwriters! (team)
« Reply #7 on: May 13, 2011, 09:15:19 PM »
Script language looks like Lua.

ReimuHakurei

Re: Looking for more Scriptwriters! (team)
« Reply #8 on: May 13, 2011, 09:53:56 PM »
because it is the coding language lua :3
« Last Edit: May 13, 2011, 09:55:38 PM by ReimuHakurei »

ReimuHakurei

Re: Looking for more Scriptwriters! (team)
« Reply #9 on: May 14, 2011, 01:44:07 PM »
Hello?

Chronojet ⚙ Dragon

  • The Oddity
  • 今コソ輝ケ、我ガ未来、ソノ可能性!!
Re: Looking for more Scriptwriters! (team)
« Reply #10 on: May 14, 2011, 01:52:10 PM »
Be patient, someone will be able to help. Just not in a day.

Drake

  • *
Re: Looking for more Scriptwriters! (team)
« Reply #11 on: May 14, 2011, 07:20:15 PM »
Be patient, someone will be able to help. Just not in a day.
Someone might be able to help and might be interested eventually...

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

Helepolis

  • Charisma!
  • *
  • O-ojousama!?
Re: Looking for more Scriptwriters! (team)
« Reply #12 on: May 15, 2011, 08:04:53 AM »
ReimuHakurei, please refrain from double posting. There is no reason for double posting as it is a rude and unmannered way of spamming and 'drawing attention'.

As said above, be patient about it.

ReimuHakurei

Re: Looking for more Scriptwriters! (team)
« Reply #13 on: May 15, 2011, 10:04:15 AM »
sorry about that  and alright I be patient :3
and hope someone will be interested and will join :D

Atfyntify

  • Danmakufu worshipper
  • I worship Danmakufu
Re: Looking for more Scriptwriters! (team)
« Reply #14 on: May 26, 2011, 02:31:48 PM »
ok.....................yeah, so I'll join I guess? so what may help? I love doing graphics!!!!:3
I CAN'T WAIT FOR TOUHOU 14!

ReimuHakurei

Re: Looking for more Scriptwriters! (team)
« Reply #15 on: June 02, 2011, 10:33:13 PM »
ok.....................yeah, so I'll join I guess? so what may help? I love doing graphics!!!!:3

Awesome welcome aboard

Sorry it token me so long I had lots of college work to do lol
could you do a CG background :3 that would be great

Also add this Email Address PhantasmagoriaCo@hotmail.co.uk so we can talk about more things :3
and thanks for joining :3
« Last Edit: June 02, 2011, 10:35:00 PM by ReimuHakurei »