Search found 9 matches

by Fealow
Tue Sep 19, 2017 5:34 am
Forum: Asset Creation: Music, Sound, and Movies
Topic: Electric Guitar plugin for FL Studio
Replies: 3
Views: 8381

Re: Electric Guitar plugging for FL Studio

Have a browse through this:

http://www.vst4free.com/index.php?plug- ... r/Bass&l=0

However when it comes to electric guitar it's a pretty difficult instrument to recreate with the intent of it sounding beleivable. Which is why most of the good ones cost money.
by Fealow
Tue Sep 19, 2017 5:02 am
Forum: Asset Creation: Music, Sound, and Movies
Topic: Music for sexual scenes (SFW)
Replies: 4
Views: 1683

Re: Music for sexual scenes (SFW)

Had a bit of an idea come to mind for the humorous aspect. I was thinking that maybe it's better to focus less on the sexyness of these scenes as the acts that take place in them speak for themselves so attempting to reinforce them with anything sensual/sexy sounding is likely going to miss the mark...
by Fealow
Mon Sep 18, 2017 12:49 pm
Forum: Asset Creation: Music, Sound, and Movies
Topic: Music for sexual scenes (SFW)
Replies: 4
Views: 1683

Re: Music for sexual scenes (SFW)

Thanks for the response i'll definetly take a look at those samples! Only problem I've got is that the project im working on is a western VN so theres probably going to be some genre/arrangement differences that are required. My biggest concern however is the humor element I mentioned. Even though t...
by Fealow
Mon Sep 18, 2017 6:09 am
Forum: Asset Creation: Music, Sound, and Movies
Topic: Music for sexual scenes (SFW)
Replies: 4
Views: 1683

Music for sexual scenes (SFW)

So I'm currently working as a composer for an adult themed game, I've got a signifigant amount of experience under my belt, but i've sort of ran into a small roadblock for the next set of tracks I need to write. Basically, despite how long i've been writing music I've never once had to write anythin...
by Fealow
Sun Sep 17, 2017 9:22 am
Forum: Ren'Py Questions and Announcements
Topic: Loop statement not working.
Replies: 6
Views: 787

Re: Loop statement not working.

SOLVED

there was a stray = in the code that caused problems and we needed to put the loop in the if statement as well.

Thanks for your assistance!
by Fealow
Sun Sep 17, 2017 8:49 am
Forum: Ren'Py Questions and Announcements
Topic: Loop statement not working.
Replies: 6
Views: 787

Re: Loop statement not working.

Caused a crash
by Fealow
Sun Sep 17, 2017 4:54 am
Forum: Ren'Py Questions and Announcements
Topic: Loop statement not working.
Replies: 6
Views: 787

Re: Loop statement not working.

This seems to have done the job i think. thanks.

Edit: miss communication between myself and the coder.
by Fealow
Sat Sep 16, 2017 3:15 pm
Forum: Ren'Py Questions and Announcements
Topic: Loop statement not working.
Replies: 6
Views: 787

Re: Loop statement not working.

Look like "loop" is taking Boolean instead of value. loop If this is True, the tracks will loop while they are the last thing in the queue. Instead, do this: if not renpy.music.get_playing(channel='music') == "out_and_about.ogg": imagebutton auto "gui mainmap%s" xpos 0...
by Fealow
Sat Sep 16, 2017 9:05 am
Forum: Ren'Py Questions and Announcements
Topic: Loop statement not working.
Replies: 6
Views: 787

Loop statement not working.

So I have this code here: if not renpy.music.get_playing(channel='music') == "out_and_about.ogg": imagebutton auto "gui mainmap%s" xpos 0 ypos 0 focus_mask True action [Play("music", loop=1.777, "out_and_about.ogg"), Jump("lbl_townmap_setup") else: i...