Search found 426 matches

by ComputerArt.Club
Sun Jul 16, 2017 10:54 am
Forum: Personal Art Threads
Topic: What do you honestly think of my art?
Replies: 19
Views: 4719

Re: What do you honestly think of my art?

@ComputerArt.Club I don't understand what you mean by not using one shape for hair, could you explain what you meant. I was suggesting that you go over your art in a vector art program, such as Inkscape(free https://inkscape.org/en/). In case you are unfamiliar with them, vector art programs allow y...
by ComputerArt.Club
Thu Jul 13, 2017 9:32 am
Forum: Personal Art Threads
Topic: What do you honestly think of my art?
Replies: 19
Views: 4719

Re: What do you honestly think of my art?

Like Sundownkid said, the first two are very sketchy, so if you want to bring the quality up to the next level you need to add another stage to your illustration process. Take that as your sketch, and go over it again in a vector graphics program (e.g. Inkscape - it is free and awesome). Things like...
by ComputerArt.Club
Thu Jul 13, 2017 8:44 am
Forum: Ren'Py Cookbook
Topic: Dungeon Crawl RPG Framework
Replies: 99
Views: 62026

Re: Dungeon Crawl RPG Framework

Thank you for this amazing piece of code! I have found it extremely useful! Extremely gracious of you. :) I encountered a few issues when I tried to implement the script, some of which I solved, others I am still trying to resolve. My current issue is that after a battle, no matter what the outcome,...
by ComputerArt.Club
Mon May 29, 2017 3:31 am
Forum: Ren'Py Questions and Announcements
Topic: Error with "if variable = 1:" code
Replies: 4
Views: 1239

Re: Error with "if variable = 1:" code

Move your variables to before the start label as default default stand_up = False default stress = 0 default beast = False label start: This will prevent future issues for you. I think the issue is you have two elif statements, so the whole block fails, which is why it tells you the error is in lin...
by ComputerArt.Club
Mon May 29, 2017 12:43 am
Forum: Ren'Py Questions and Announcements
Topic: Error with "if variable = 1:" code
Replies: 4
Views: 1239

Re: Error with "if variable = 1:" code

Thanks, you are right, I want to check the value not reassign. However, I am still getting an error. Any ideas what is wrong with this line of code? if stress == 1: I'm sorry, but an uncaught exception occurred. While running game code: File "game/script.rpy", line 159, in script if stress...
by ComputerArt.Club
Mon May 22, 2017 10:13 am
Forum: Ren'Py Questions and Announcements
Topic: Error with "if variable = 1:" code
Replies: 4
Views: 1239

Error with "if variable = 1:" code

Hi everyone, I am making my first Renpy game, completed the Sololearn python course first, but it seems I learned nothing :/. I have a variable in my game and with higher levels of the variable I want different outcomes. the line of code causing the error is: if stress = 1: It comes from this sectio...