Search found 10 matches

by gabowave
Tue Nov 14, 2023 4:45 pm
Forum: Ren'Py Questions and Announcements
Topic: Calling class method affects all Class instances
Replies: 3
Views: 372

Re: Calling class method affects all Class instances

Thank you both, this obviously fixed the issue and also thank you, this is now something new that I know and will keep it in mind as I continue developing.
by gabowave
Tue Nov 14, 2023 4:27 am
Forum: Ren'Py Questions and Announcements
Topic: Calling class method affects all Class instances
Replies: 3
Views: 372

Calling class method affects all Class instances

Hello, I am having a strange error regarding my class instances. For context: I've been working on a phone interface, my problem specifically targets the messaging capabilities and affects my Contacts class. For some reason, when I call a method [Namely JohnnyC.addMessage(blah blah blah)] It not onl...
by gabowave
Sun Aug 20, 2023 4:16 pm
Forum: Ren'Py Questions and Announcements
Topic: Transform Won't update until I move mouse.
Replies: 0
Views: 8059

Transform Won't update until I move mouse.

Hello All, I'm once again asking for help regarding something. I am having an issue regarding ATL and it not updating as I'm hoping for. Here is the code for reference. default phoneHover = False default phoneClick = False transform phoneIdle: linear 0.2 xpos 150 ypos 2510 rotate 15 zoom 1.0 on idle...
by gabowave
Sat Jul 22, 2023 11:57 pm
Forum: Ren'Py Questions and Announcements
Topic: 'Quest' object has no attribute 'Id'... Attribute Error
Replies: 4
Views: 328

Re: 'Quest' object has no attribute 'Id'... Attribute Error

My best guess is you don't have this "Id" attribute in the earlier versions of your game, then you created saves at those said versions. Now you added the "Id" attribute and tried to load those saves. Other than that, I don't see anything wrong with the code. Fixed it somehow......
by gabowave
Sat Jul 22, 2023 10:10 pm
Forum: Ren'Py Questions and Announcements
Topic: 'Quest' object has no attribute 'Id'... Attribute Error
Replies: 4
Views: 328

Re: 'Quest' object has no attribute 'Id'... Attribute Error

I don't see anything wrong here. Probably try force recompiling your scripts through the launcher? And ICYMI, make sure that the changes in the script are saved. Unfortunately this did not work. I think I'll just look for another way to do what I want. Still.. I wonder why it doesn't want to work. ...
by gabowave
Thu Jul 20, 2023 9:01 pm
Forum: Ren'Py Questions and Announcements
Topic: 'Quest' object has no attribute 'Id'... Attribute Error
Replies: 4
Views: 328

'Quest' object has no attribute 'Id'... Attribute Error

Hello, I am currently having a potentially very simple issue to fix and I just haven't gotten around to finding the source. I am trying to make quests that upon calling a method are set to completed. Problem is that once I call the method it says that the attribute id doesn't exist. here is the BBco...
by gabowave
Tue Jul 11, 2023 2:55 pm
Forum: Ren'Py Questions and Announcements
Topic: Exception: Could not find font... Error on Windows only.
Replies: 1
Views: 175

Re: Exception: Could not find font... Error on Windows only.

Fixed it, it was version specific. I downloaded version 8.1.1 of Ren'Py on my PC and the issue did not present itself anymore. If anyone ever has this issue, just make sure you update your Ren'Py sdk to the most recent version that you've been working on in all machines in order to minimize errors l...
by gabowave
Tue Jul 11, 2023 1:12 am
Forum: Ren'Py Questions and Announcements
Topic: Exception: Could not find font... Error on Windows only.
Replies: 1
Views: 175

Exception: Could not find font... Error on Windows only.

Hey all, I am currently puzzled by an issue that is plaguing my game. I have no clue what to do about it.. I'm sorry, but an uncaught exception occurred. While running game code: File "game/reusable.rpy", line 96, in script $ renpy.pause(hard=True) File "game/reusable.rpy", line ...
by gabowave
Sun Jul 09, 2023 12:03 pm
Forum: Ren'Py Questions and Announcements
Topic: "The variable inventory.items[0].clicked does not exist"
Replies: 2
Views: 182

Re: "The variable inventory.items[0].clicked does not exist"

enaielei wrote: Sun Jul 09, 2023 12:02 am ToggleField or SetField

Code: Select all

ToggleField(inventory.items[0], "clicked", True, False)
SetField(inventory.items[0], "clicked", not inventory.items[0].clicked)
Thank you so much!
by gabowave
Sat Jul 08, 2023 11:51 pm
Forum: Ren'Py Questions and Announcements
Topic: "The variable inventory.items[0].clicked does not exist"
Replies: 2
Views: 182

"The variable inventory.items[0].clicked does not exist"

Hello all, I am trying to toggle a variable from False to True in an imagebutton action with the use of the action ToggleVariable("inventory.items[0].clicked) and it doesn't seem to be working. I am hoping to see if I can find a solution to this or potentially a workaround but so far no dice. M...