Search found 5 matches

by GoddessJasmine
Mon Jun 06, 2011 3:13 pm
Forum: Ideas
Topic: My first game demo
Replies: 5
Views: 1148

Re: My first game demo

Thank you very much, I have created a new link with the correct compressed files.

This may be a dumb question, but is the music copyrighted? I absolutely love the background music, but I do not wish to get in trouble fore using it.

The download link is...
http://www.mediafire.com/?lj1y32a353vqw6o
by GoddessJasmine
Mon Jun 06, 2011 2:43 am
Forum: Ideas
Topic: My first game demo
Replies: 5
Views: 1148

My first game demo

I'm attempting to make my first game, and right now I'm testing A. if I can even upload this and B. If it is actually interesting to other people if it is boring so far, please tell me. Also, tell me if any bugs, suggestions, criticism, anything. Anything is very much appreciated, especially ideas f...
by GoddessJasmine
Tue May 24, 2011 6:24 pm
Forum: Ren'Py Questions and Announcements
Topic: What is wrong with my script?
Replies: 5
Views: 786

Re: What is wrong with my script?

Sorry about that, but i found out that the "else" appears at the end of the game saying that you've viewed the screan 21 times. init: $ mp = MultiPersistent("demo.renpy.org") python: if mp.plays is None: mp.plays = 1 else: mp.plays += 1 mp.save() plays = mp.plays label forests: m...
by GoddessJasmine
Tue May 24, 2011 5:08 pm
Forum: Ren'Py Questions and Announcements
Topic: What is wrong with my script?
Replies: 5
Views: 786

Re: What is wrong with my script?

Oh well, I'm trying to set up a menu where a certian event only happens the first time you click it. So I decided use 'persistent' stuff. The only problem is, that it doesn't do to the "else" action, even if the persitance is more then one. Heres the code I put in the beginning. init: $ mp...
by GoddessJasmine
Mon May 23, 2011 9:56 pm
Forum: Ren'Py Questions and Announcements
Topic: What is wrong with my script?
Replies: 5
Views: 786

What is wrong with my script?

"Right": $ right_first_time = True if right_first_time: call right_first else: call right_persistent $ right_first_time = False if _return is False: jump right_persistent call expression _return