Considering it's been almost 2 weeks now and this thread's OP was their only post on the site, I have a feeling we probably won't be hearing back. For those interested in writing though, you could always work on your own project.
You must be registered to see the links
makes it pretty easy to come up with a basic text-based game with minimal to no scripting (depending on how complicated you want to make things). Getting such a game out would be a great way of promoting yourself as a game writer who can be taken serious when looking to collaborate with a team.
Twine is pretty nice to work with, it gives you a flow chart style node editor, where each node is a chunk of the story. To add/link to another node, just add a link to the text along the lines of:
Code:
[[Go to the next bit.->Next Bit]]
Where the text before the arrow (->) is what gets displayed, and the text after it is the name of the new node/scene the link leads to. It's as simple as that. You can also do some text formatting to pretty things up, add in images and do some simple scripting to set and test variable flags pretty easily following some tutorials on their site.