Search found 17 matches

by Elliot Dreemurr
Sat Oct 15, 2022 12:04 am
Forum: Ren'Py Questions and Announcements
Topic: Bytes-like Object?
Replies: 2
Views: 729

Bytes-like Object?

i have no idea what it's trying 2 tell me and can't find anything online about it. please help meee I'm sorry, but an uncaught exception occurred. While running game code: File "game/script.rpy", line 4, in script init python: File "game/script.rpy", line 4, in script init pytho...
by Elliot Dreemurr
Mon Sep 20, 2021 3:07 pm
Forum: Creator Discussion
Topic: Changing Text Styles
Replies: 2
Views: 3670

Re: Changing Text Styles

ohhh i didnt know about this but its very interesting and helpful thank u
by Elliot Dreemurr
Sat Sep 11, 2021 3:02 pm
Forum: Ren'Py Questions and Announcements
Topic: Required parameter has no value (even tho it does)
Replies: 2
Views: 357

Re: Required parameter has no value (even tho it does)

god darn it i found it and its fixed now thank u lol
by Elliot Dreemurr
Sat Sep 11, 2021 6:40 am
Forum: Ren'Py Questions and Announcements
Topic: Required parameter has no value (even tho it does)
Replies: 2
Views: 357

Required parameter has no value (even tho it does)

so i keep getting errors whenever i call the phone messaging system and seems 2 ignore what i input and says theres nothing there but if i ignore the exceptions and move on it still displays everything just fine so im not sure why its telling me theres something wrong when there clearly isnt I'm sor...
by Elliot Dreemurr
Mon Sep 06, 2021 2:20 am
Forum: Ren'Py Questions and Announcements
Topic: Crossword Puzzle Minigame Assistance Needed
Replies: 2
Views: 435

Crossword Puzzle Minigame Assistance Needed

by any chance is there anyone that could possibly help me create a crossword puzzle minigame that would allow 4 giving out points based on which character prefers each word and maybe even implement some rng on which words r available or perhaps just make a few different premade puzzles that rng woul...
by Elliot Dreemurr
Fri Sep 03, 2021 6:49 pm
Forum: Ren'Py Questions and Announcements
Topic: Changing Text Styles
Replies: 0
Views: 620

Changing Text Styles

im unsure where 2 specify a new style of text 4 this minigame and when i try it either breaks everything or completely ignores it...i have the style defined but idk where 2 place it saying that i want the text 2 display as such here label minigame: if chapter == 2 and winner == 'c': jump bakinggame ...
by Elliot Dreemurr
Fri Sep 03, 2021 6:41 pm
Forum: Ren'Py Questions and Announcements
Topic: AttributeError: 'Curry' object has no attribute
Replies: 2
Views: 301

Re: AttributeError: 'Curry' object has no attribute

ohhh i see i did this and it works now thank u very much

Code: Select all

ui.textbutton(word.word, clicked=ui.returns(word), xpos=x, ypos=i * 52 + ystart)
by Elliot Dreemurr
Fri Sep 03, 2021 5:17 pm
Forum: Ren'Py Questions and Announcements
Topic: AttributeError: 'Curry' object has no attribute
Replies: 2
Views: 301

AttributeError: 'Curry' object has no attribute

i cant figure out what the issue is or even what its trying 2 tell me I'm sorry, but an uncaught exception occurred. While running game code: File "game/script.rpy", line 12, in script call call minigames File "game/minigame.rpy", line 143, in script python: File "game/minig...
by Elliot Dreemurr
Fri Sep 03, 2021 2:54 am
Forum: Creator Discussion
Topic: AttributeError: 'Curry' object has no attribute
Replies: 0
Views: 3170

AttributeError: 'Curry' object has no attribute

i cant figure out what the issue is or even what its trying 2 tell me I'm sorry, but an uncaught exception occurred. While running game code: File "game/script.rpy", line 12, in script call call minigames File "game/minigame.rpy", line 143, in script python: File "game/minig...
by Elliot Dreemurr
Sat Aug 28, 2021 3:59 am
Forum: Creator Discussion
Topic: Changing Text Styles
Replies: 2
Views: 3670

Changing Text Styles

im unsure where 2 specify a new style of text 4 this minigame and when i try it either breaks everything or completely ignores it...i have the style defined but idk where 2 place it saying that i want the text 2 display as such here label minigame: if chapter == 2 and winner == 'c': jump bakinggame ...
by Elliot Dreemurr
Thu Aug 19, 2021 1:10 am
Forum: Ren'Py Questions and Announcements
Topic: Automated Transforms
Replies: 1
Views: 732

Automated Transforms

i have these 2 transforms here and i would like 2 know how i could possibly have them function automatically when a character speaks and stops speaking so that i dont have 2 input "show (character) at (transform)" every time during a conversation between characters transform active(x=640):...
by Elliot Dreemurr
Sat Aug 14, 2021 3:38 pm
Forum: Ren'Py Questions and Announcements
Topic: IndexError: list index out of range
Replies: 6
Views: 1277

Re: IndexError: list index out of range

yaaay it finally works! thank u very much 4 the help
by Elliot Dreemurr
Sat Aug 14, 2021 2:14 pm
Forum: Ren'Py Questions and Announcements
Topic: IndexError: list index out of range
Replies: 6
Views: 1277

Re: IndexError: list index out of range

srry 4 being a literal noob and not knowing what anything means but what does "tabbed inside the loop" mean? where should i put it?
by Elliot Dreemurr
Sat Aug 14, 2021 2:46 am
Forum: Ren'Py Questions and Announcements
Topic: IndexError: list index out of range
Replies: 6
Views: 1277

Re: IndexError: list index out of range

oh my bad i forgot 2 include all the code stuff lol init python: import random class SocialWord: def __init__(self, word, ePoint, jPoint, rPoint): self.word = word self.ePoint = ePoint self.jPoint = jPoint self.rPoint = rPoint full_wordlist = [] with renpy.file('SocialWords.txt') as wordfile: for li...