Search found 5 matches

by makiishou
Thu Feb 25, 2021 11:46 am
Forum: Ren'Py Questions and Announcements
Topic: (SOLVED) Permission denied when trying to build distribution
Replies: 3
Views: 1032

Re: Permission denied when trying to build distribution

Alright, a little update, I am now fully aware that the problem is with that particular 32 exe file in the tmp folder, as the error suggests, and its permissions which it won't let me change and I don't know what to do now. I've taken ownership of both the tmp folder, the renpy folder, anything I co...
by makiishou
Thu Feb 25, 2021 8:43 am
Forum: Ren'Py Questions and Announcements
Topic: (SOLVED) Permission denied when trying to build distribution
Replies: 3
Views: 1032

Re: Permission denied when trying to build distribution

Do you have a custom icon in your game? I suggest turning off the real time protection in your antivirus before doing distributions. For long term solution, add renpy's sdk folder and your game's folder to the exclusion list of your AV. In theory, a custom icon exists (not in the game folder, as wa...
by makiishou
Wed Feb 24, 2021 5:23 pm
Forum: Ren'Py Questions and Announcements
Topic: (SOLVED) Permission denied when trying to build distribution
Replies: 3
Views: 1032

(SOLVED) Permission denied when trying to build distribution

Hello, again, I have zero clue why this is happening. I originally had an issue with the exe icon not being what I wanted it to be when building distributions (even when the icon was the right size, extension, in the right place, deleting icon cache from my machine, rebooting, i've tried everything)...
by makiishou
Sat Feb 20, 2021 6:10 pm
Forum: Ren'Py Questions and Announcements
Topic: (SOLVED) Attribute Error When Making CG Gallery (+g.condition)
Replies: 2
Views: 1143

Re: Attribute Error When Making CG Gallery (+g.condition)

You've defined a 3x3 grid and only provided four items, 3 adds and a text button. Renpy is throwing an error because you haven't said that's allowed. I think this fixes your problem: grid 3 3: allow_underfull True Or it looks like you can set the option `config.allow_underfull_grids = True` (or pos...
by makiishou
Sat Feb 20, 2021 3:08 pm
Forum: Ren'Py Questions and Announcements
Topic: (SOLVED) Attribute Error When Making CG Gallery (+g.condition)
Replies: 2
Views: 1143

(SOLVED) Attribute Error When Making CG Gallery (+g.condition)

Hello, everyone! I'm very new to Ren'py and Python in general, so if you could help me out, I'd really appreciate it! I've been trying to implement a CG Gallery into my game using the code found in the documentation , but, unfortunately, I have a problem I've been trying to solve for hours now. I've...