Search found 51 matches

by 10kNing
Fri Sep 28, 2012 8:14 pm
Forum: Ren'Py Questions and Announcements
Topic: "With dissolve" in ATL (Solved!)
Replies: 1
Views: 611

"With dissolve" in ATL (Solved!)

The goal was to have a character shine in the light (how she smiles, my friend! my lucky friend!) and I decided that it didn't look at smooth without transitions between the sparkles, but then the sprite's empty space turned out black rather than transparent . image maddie uni sparkle: "maddie/...
by 10kNing
Mon Sep 10, 2012 7:18 pm
Forum: Asset Creation: Writing
Topic: Ideas for great one-liners (was: Lines Dump)
Replies: 37
Views: 5768

Re: Ideas for great one-liners (was: Lines Dump)

(in the middle of a scolding)
"-- Ah! (pounces up and claps hands together in midair as if catching a firefly) Shhhh... Look... (opens hands a little to give a peek) Here... Look closely... Do you see that?... That... That is how much I care. (opens up empty hands)"
by 10kNing
Sun Aug 05, 2012 9:28 am
Forum: Completed Games
Topic: Hired Gun 3- Reunion
Replies: 10
Views: 5351

Re: Hired Gun 3- Reunion

Thank you very much~!!
by 10kNing
Fri Aug 03, 2012 4:17 pm
Forum: Completed Games
Topic: Hired Gun 2: Vengeance
Replies: 13
Views: 6103

Re: Hired Gun 2: Vengeance

Hey, I know the creator and talked to him about it, and he agreed to put up another download link. Here it is: http://www.2shared.com/file/Vrzyp2vJ/Hired_Gun_2-all.html Have fun playing it. I hope you enjoy it as much as the first one. Thank you very much!! Would it be okay to request a fixed link ...
by 10kNing
Mon Jul 09, 2012 1:02 pm
Forum: Completed Games
Topic: Synchronicity (GxB, Otome)
Replies: 30
Views: 35006

Re: Synchronicity (GxB, Otome)

I like how simple it is to tell shortly into the game which guy corresponds with which stat and Sayuri's sprite is so well-drawn~! The normal endings were so touching~ I found a tiny glitch (?), though: For kicks I decided "hey let's concentrate entirely on Koby and then decide to confess to Ad...
by 10kNing
Sun Jun 24, 2012 10:58 pm
Forum: Ren'Py Questions and Announcements
Topic: How to add "Main" to quick menu? (Solved!)
Replies: 1
Views: 560

How to add "Main" to quick menu? (Solved!)

Sorry for the silly question, really bad at screen language! I was trying to add an option to jump back to the Main Menu in the quick menu thing: screen quick_menu: # Add an in-game quick menu. hbox: style_group "quick" xalign 0 yalign 1.0 textbutton _("Q.Save") action QuickSave(...
by 10kNing
Fri Jun 22, 2012 9:37 pm
Forum: Ren'Py Questions and Announcements
Topic: FreetypeError: 38: invalid charmap handle
Replies: 2
Views: 1123

FreetypeError: 38: invalid charmap handle

I was trying to change the font to SYMBOL.TTF (makes sense in context) but then this error occured: I'm sorry, but an uncaught exception occurred. While running game code: FreetypeError: 38: invalid charmap handle -- Full Traceback ------------------------------------------------------------ Full tr...
by 10kNing
Tue Jun 12, 2012 9:47 pm
Forum: Other Story-based Games
Topic: Prince Maker - Braveness
Replies: 34
Views: 16996

Re: Prince Maker - Braveness

The love goddess is at the God's Forest adventuring place but you need to get past the beauty goddess first. The forest is really linear, so there's no way you'll get lost~ And you can visit the love goddess several times during one trip by going west one square then back east. If your little boy's ...
by 10kNing
Sun Jun 10, 2012 6:40 pm
Forum: Creator Discussion
Topic: Ideas Dump
Replies: 1532
Views: 215335

Re: Ideas Dump

Everyone is fonts. Times New Roman is that bespectacled student council president with the bland speech, Script is the one with the flowery language no one can decipher, Comic Sans MS is the happy cheerful one with garish fashion who secretly resents all of humanity and has incredibly yandere fantas...
by 10kNing
Fri May 11, 2012 7:10 pm
Forum: Ren'Py Questions and Announcements
Topic: Little idea what I am doing (ATL) [Solved!]
Replies: 8
Views: 1321

Re: Little idea what I am doing (ATL)

It worked!! Thank you! ^^
by 10kNing
Fri May 11, 2012 6:38 pm
Forum: Ren'Py Questions and Announcements
Topic: Little idea what I am doing (ATL) [Solved!]
Replies: 8
Views: 1321

Re: Little idea what I am doing (ATL)

Oh right -slightly dumb- The new line errors are at 313 ("Test line") and 146 (pause findbeat(heartbeat) between the last "heart1.png" and "repeat"). Huh... Well, thanks for trying to help, at least~!
by 10kNing
Fri May 11, 2012 6:23 pm
Forum: Ren'Py Questions and Announcements
Topic: Little idea what I am doing (ATL) [Solved!]
Replies: 8
Views: 1321

Re: Little idea what I am doing (ATL)

1. Already set heartbeat to a number ($ heartbeat = 1). It's supposed to be an integer between 0 and 20. The error still pops up even when the number is valid, thoughhhh 2. Made a function: def findbeat(beat): return ( 20-beat )/20 ... image heart: "heart/heart1.png" pause findbeat(heartbe...
by 10kNing
Fri May 11, 2012 6:02 pm
Forum: Ren'Py Questions and Announcements
Topic: Little idea what I am doing (ATL) [Solved!]
Replies: 8
Views: 1321

Little idea what I am doing (ATL) [Solved!]

What I'm aiming for is an animated heart thingamabobber that moves more quickly as the variable "heartbeat" increases: image heart: "heart/heart1.png" pause ((20 - heartbeat)/20) "heart/heart2.png" pause ((20 - heartbeat)/20) "heart/heart3.png" pause ((20 - he...
by 10kNing
Mon Mar 05, 2012 5:23 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] IndexError: tuple index out of range
Replies: 2
Views: 2426

Re: IndexError: tuple index out of range

Sorry, found the issue! It was a missing quotation mark near the bottom of the script. Whoops. Thank you for your time!