Search found 9 matches

by LordIllidan
Wed May 12, 2010 1:11 pm
Forum: Free to use but not CC
Topic: Taking Requests for Background Photos
Replies: 107
Views: 28073

Re: Taking Requests for Background Photos

Would it be possible to get a few more photos of your hotel room at a more level angle? The ones you have are from this sorta top-down-ish sort of view. (EDIT: I'm a noob. :D I found one in there that I missed the first time around) Also, could you also get one of the room with the lights off and th...
by LordIllidan
Sun Feb 28, 2010 6:12 pm
Forum: Completed Games
Topic: Raindrop (Kinetic Novel)
Replies: 4
Views: 2317

Re: Raindrop (Kinetic Novel)

MissKmae wrote:Hmm... When did you download the game? Because People were getting the same bug as you, so I re-uploaded them. You might have gotten the bugged version...
Yesterday at 8:33 PM PST.
by LordIllidan
Sun Feb 28, 2010 1:45 pm
Forum: Completed Games
Topic: Raindrop (Kinetic Novel)
Replies: 4
Views: 2317

Re: Raindrop (Kinetic Novel)

Woo! I made this short kinetic novel when I was having trouble with "He's Dedicated to Roses". It didn't take me too long, but I'm happy with how it turned out!^^ Constructive Criticism is DEFINITELY welcome! For one thing, it might help to go back and debug it a bit more. :O I got the at...
by LordIllidan
Wed Sep 02, 2009 12:37 am
Forum: Ideas
Topic: Eternity's End (Demo inside!)
Replies: 8
Views: 1475

Re: Eternity's End (Demo inside!)

A simple guy who's been dragged into more than his fair share of not-so-simple things. He enjoys video games, fighting stupidity on the interwebs, and thinking of himself as a hopeless romantic. For some reason, I think you were describing yourself here. If I'm wrong, forgive me, but as a lesson to...
by LordIllidan
Sun Aug 30, 2009 2:26 pm
Forum: Ideas
Topic: Eternity's End (Demo inside!)
Replies: 8
Views: 1475

Re: Eternity's End (Demo inside!)

I really love the explaining part XD It's really nice to have such things, so I won't get lost. Still no music? Thanks. :D I'm still trying to decide what I'm going to do with the music. I have a brand new pendant ocarina that I'd really like to use for such a thing (Especially since one of the cha...
by LordIllidan
Thu Aug 27, 2009 1:44 pm
Forum: Ideas
Topic: Eternity's End (Demo inside!)
Replies: 8
Views: 1475

Re: Eternity's End (Demo inside!)

Wow, this is a demo? I played for half an hour (all of the free time I had) and I think I'm only half way. How long is this demo? It's only about three chapters, two of which I personally thought were waay too short. Wow, was it really that long? XD My thoughts are: I like the script, it's well wri...
by LordIllidan
Wed Aug 26, 2009 11:24 pm
Forum: Ideas
Topic: Eternity's End (Demo inside!)
Replies: 8
Views: 1475

Eternity's End (Demo inside!)

Whee, my first visual novel~ I'm very proud of this, I think this is the farthest I've ever gotten in making my own computer game of any sort. The story: Kakana is a world apart from ours, where magic is in abundance and things are good. Mostly good. Enter Fenrir Flameseeker, a Demon Hunter who was ...
by LordIllidan
Wed Aug 26, 2009 1:13 am
Forum: Ren'Py Questions and Announcements
Topic: Big series of "if a > b" forks
Replies: 2
Views: 525

Re: Big series of "if a > b" forks

== is the equality operator, while = is the assignment operator. So when you write: $arc == 3 You're testing if arc is equal to 3, and then not doing anything with the result. Changing it to: $ arc = 3 will be beneficial. Aha, I knew it had to be something obvious XD That seems to have worked. Than...
by LordIllidan
Wed Aug 26, 2009 12:30 am
Forum: Ren'Py Questions and Announcements
Topic: Big series of "if a > b" forks
Replies: 2
Views: 525

Big series of "if a > b" forks

Hi all. I think I'm overlooking something very obvious, because I seem to be having a hard time getting a simple bit of coding to work. (Some dialogue) if silica_regard == dimona_regard: if game_cleared >= 1: if dimona_regard > fenrir_disregard: $arc == 3 else: $arc ==0 else: $arc ==0 else: if silic...