Lemma Soft Forums Reception Desk

New here? Be sure to read these important posts, and then sign our guestbook.
Message
Author
User avatar
darknessafallen
Newbie
Posts: 11
Joined: Sat Sep 01, 2018 9:17 pm
Projects: Minuit Square [GxB]
Tumblr: k-marie-lagesse
Deviantart: darknessafallen
Contact:

Re: Lemma Soft Forums Reception Desk

#61 Post by darknessafallen »

OKAY! I figured out how to write using Ren'Py! Yes I am very proud of that considering that I had just written about how bullheaded I am! Okay, so now that I get the idea it should be easier for me to figure out the rest - so thank you so much for that link! I had glanced at that page before but I couldn't figure it out. I get it now.

So once I actually have a project started and put together I could probably place a post about it, right?

Seriously, a lot of thanks! ~Kat.

User avatar
Zelan
Lemma-Class Veteran
Posts: 2436
Joined: Tue Mar 01, 2016 7:23 pm
Completed: The Dark
Projects: Cosplay Couple
Tumblr: evns
itch: Zelan
Discord: ltnkitsuragi#7082
Contact:

Re: Lemma Soft Forums Reception Desk

#62 Post by Zelan »

darknessafallen wrote: Sun Sep 02, 2018 3:23 am OKAY! I figured out how to write using Ren'Py! Yes I am very proud of that considering that I had just written about how bullheaded I am! Okay, so now that I get the idea it should be easier for me to figure out the rest - so thank you so much for that link! I had glanced at that page before but I couldn't figure it out. I get it now.

So once I actually have a project started and put together I could probably place a post about it, right?

Seriously, a lot of thanks! ~Kat.
You don't need all that much to post in the WIP thread - a title, some basic info about the plot and characters, and maybe some character sprites (even just rough sketches!). As long as you show that you have an idea of where the project is going and how to get it done, it can be posted in the WIP thread.

Even if your project doesn't fit this yet, it can always be posted in the Ideas forum! There's no real "minimum" amount of information that you need to post anything there. Also, if you're looking for help on your project, the Recruitment and Services forum is the best place to start looking for help. Best of luck on your VN! c:

User avatar
darknessafallen
Newbie
Posts: 11
Joined: Sat Sep 01, 2018 9:17 pm
Projects: Minuit Square [GxB]
Tumblr: k-marie-lagesse
Deviantart: darknessafallen
Contact:

Re: Lemma Soft Forums Reception Desk

#63 Post by darknessafallen »

Thank you Zelan, the information is very helpful! C:
I'm sometimes a little indecisive because I always hope I can make it better - so I tend to take forever.
Yet I want to do this, so I'll look for some help.

Again, Thanks ~Kat.

User avatar
Fungii
Veteran
Posts: 370
Joined: Sat Jun 23, 2012 10:47 am
Completed: Home's Embrace
Projects: Royality TV
Tumblr: fungiidraws
itch: fungii
Location: England
Contact:

Re: Lemma Soft Forums Reception Desk

#64 Post by Fungii »

Yo, I've emerged from the dirt again, and updated my old art thread with new prices etc.

I was wondering if it was appropriate to bump it (assuming that's allowed?? It is technically an update) given I have another thread in the I Am An Artist catagory, though that one is about specifically offering to work for free for one project with limited offerings.

Isimarie
Newbie
Posts: 2
Joined: Wed Feb 20, 2019 4:35 pm
Contact:

Re: Lemma Soft Forums Reception Desk

#65 Post by Isimarie »

I'm sorry if I didn't read this right, but I have a problem with my code, where do I post that?

User avatar
Donmai
Eileen-Class Veteran
Posts: 1960
Joined: Sun Jun 10, 2012 1:45 am
Completed: Toire No Hanako, Li'l Red [NaNoRenO 2013], The One in LOVE [NaNoRenO 2014], Running Blade [NaNoRenO 2016], The Other Question, To The Girl With Sunflowers
Projects: Slumberland
Location: Brazil
Contact:

Re: Lemma Soft Forums Reception Desk

#66 Post by Donmai »

If you're talking about Ren'Py, you should go here:
viewforum.php?f=8
Good luck.
Image
No, sorry! You must be mistaking me for someone else.
TOIRE NO HANAKO (A Story About Fear)

gseek
Newbie
Posts: 9
Joined: Thu Mar 07, 2019 8:43 pm
Contact:

Re: Lemma Soft Forums Reception Desk

#67 Post by gseek »

If I want to know what part of a code does where do I ask that?
Like what does default book mean? Should I add it to make my visual novel a novel?
I'm so confused.

User avatar
Imperf3kt
Lemma-Class Veteran
Posts: 3791
Joined: Mon Dec 14, 2015 5:05 am
itch: Imperf3kt
Location: Your monitor
Contact:

Re: Lemma Soft Forums Reception Desk

#68 Post by Imperf3kt »

gseek wrote: Thu Mar 07, 2019 8:46 pm If I want to know what part of a code does where do I ask that?
Like what does default book mean? Should I add it to make my visual novel a novel?
I'm so confused.
These sorts of questions can go in the Renpy questions and announcements forum.
viewforum.php?f=8

As to what does "default book" mean, default is a method used to establish a variable, in this case, 'book'.
It goes in any file as long as it isn't inside a "label" block. For example:

Code: Select all

default book = "Harry Potter and the Intellectual Property Infringement"

label start:
    "You see a book. It's title is printed on the cover."
    "[book]"
    "You turn the book over twice to see the title has magically changed!"
    $book = "Alice in Wonderworld."
    "[book]"
    return
You could also do this:

Code: Select all

default book = "Harry Potter and the Intellectual Property Infringement"
label start:
    "You see a book. It's title is printed on the cover."
    "[book]"
    "You turn the book over twice to see the title has magically changed!"
    $book = "Alice in Wonderworld."
    "[book]"
    jump television 
    
default tv = "Tom and Jimmy" 

label television:
    "That's weird... You decide to put the book back and instead watch the TV." 
    "The TV is playing your favourite show, [TV]."
    return
    
Warning: May contain trace amounts of gratuitous plot.
pro·gram·mer (noun) An organism capable of converting caffeine into code.

Current project: GGD Mentor

Twitter

gseek
Newbie
Posts: 9
Joined: Thu Mar 07, 2019 8:43 pm
Contact:

Re: Lemma Soft Forums Reception Desk

#69 Post by gseek »

Imperf3kt wrote: Thu Mar 07, 2019 11:26 pm
gseek wrote: Thu Mar 07, 2019 8:46 pm If I want to know what part of a code does where do I ask that?
Like what does default book mean? Should I add it to make my visual novel a novel?
I'm so confused.
These sorts of questions can go in the Renpy questions and announcements forum.
viewforum.php?f=8

As to what does "default book" mean, default is a method used to establish a variable, in this case, 'book'.
It goes in any file as long as it isn't inside a "label" block. For example:

Code: Select all

default book = "Harry Potter and the Intellectual Property Infringement"

label start:
    "You see a book. It's title is printed on the cover."
    "[book]"
    "You turn the book over twice to see the title has magically changed!"
    $book = "Alice in Wonderworld."
    "[book]"
    return
You could also do this:

Code: Select all

default book = "Harry Potter and the Intellectual Property Infringement"
label start:
    "You see a book. It's title is printed on the cover."
    "[book]"
    "You turn the book over twice to see the title has magically changed!"
    $book = "Alice in Wonderworld."
    "[book]"
    jump television 
    
default tv = "Tom and Jimmy" 

label television:
    "That's weird... You decide to put the book back and instead watch the TV." 
    "The TV is playing your favourite show, [TV]."
    return
    
Thank you!

User avatar
trigger_death
Newbie
Posts: 3
Joined: Tue Apr 09, 2019 10:13 am
Projects: Sunrider Academy PureVN Mod, Sunrider MoA Enhanced UI Mod
Github: trigger-segfault
Location: New Hampshire, US
Contact:

Re: Lemma Soft Forums Reception Desk

#70 Post by trigger_death »

Where should I post a message to request a username change? I'm fine creating a new account if need be as this one is relatively new, but changing usernames is preferable to leaving around an unused account.

I've been changing all online names from trigger_death to trigger_segfault, and it's been a tedious process.

User avatar
Imperf3kt
Lemma-Class Veteran
Posts: 3791
Joined: Mon Dec 14, 2015 5:05 am
itch: Imperf3kt
Location: Your monitor
Contact:

Re: Lemma Soft Forums Reception Desk

#71 Post by Imperf3kt »

I believe there isn't any way to do that on this forum.

Just in case, you could try messaging Pytom, the board admin.
Warning: May contain trace amounts of gratuitous plot.
pro·gram·mer (noun) An organism capable of converting caffeine into code.

Current project: GGD Mentor

Twitter

User avatar
Jedi_Andrew
Newbie
Posts: 3
Joined: Wed Oct 30, 2019 9:02 pm
Skype: Discord: Delesius#1330
Location: Russia
Contact:

Re: Lemma Soft Forums Reception Desk

#72 Post by Jedi_Andrew »

Hey guys! I'm new here, so sorry for dumb questions that I can solve on my own with time...

So... I'm new here and new for Ren'Py. Or Ren'Py for me... And programming at all.
I'm creating a fan-based parody adult game and have ideas about couple original games (but fan-based parody is first priority). And if I already gained a little experience working with Ren'Py (developing the simplest short story, although I did not finish it and not upload it somewhere), then I had terrible difficulties with programming a more advanced game (custom gui, variables, etc.). Sometimes I don’t even know which lesson or section I need. And sometimes even to formulate the right question, so that Google understands me, is really hard for me.
I had bad experience of trying to communicate with more experienced people in social media groups, that related to Ren'Py, so this forum is my last hope for help, I guess...
So, my questions is: what should I do? Do I have to study the forum in search of information (which sometimes I don’t even know what exactly should I look for)? Or can I create a topic here that will be dedicated to the development of my game (or several games), where it will already be possible to communicate with people and ask questions?
Regards, best wishes and many thanks!

P.S. Sorry for my bad English.
Sorry for my bad English. Peace. 8)

LonelyCryptidMedia
Newbie
Posts: 3
Joined: Thu Oct 15, 2020 6:07 pm
Tumblr: lonelycryptidmedia
itch: lonelycryptidmedia
Contact:

Re: Lemma Soft Forums Reception Desk

#73 Post by LonelyCryptidMedia »

Hello! I was trying to figure out where to post something in these forums.

In short, I'm part of an indie media company (we have published our own VNs) and we are hosting a Game Demo Contest. We don't want rights or anything, just to give the top 3 + runner up prize money to support their games. We wanted to make sure we get word out to any other VN creators, so we thought to post here! I was wondering if that would be appropriate to post in these forums? And if so, where?

Thank you very much for your time!

April Autumn

Lonely Cryptid Media

Gh9stRide
Newbie
Posts: 4
Joined: Sun Sep 26, 2021 10:36 am
Deviantart: systertysk
Contact:

Re: Lemma Soft Forums Reception Desk

#74 Post by Gh9stRide »

Hi, newbie here. I'm looking for help regarding getting my distro to work. Where should I ask for this kind of help?

User avatar
MapletreePaper
Regular
Posts: 46
Joined: Thu Feb 13, 2020 11:52 pm
Projects: Language Barrier
Organization: Naval Maple Media
Location: Ontario, Canada
Discord: MapletreePaper
Contact:

Re: Lemma Soft Forums Reception Desk

#75 Post by MapletreePaper »

I've encountered a bug in the code of the forum itself. Where should I report this?

Post Reply

Who is online

Users browsing this forum: No registered users