Search found 11 matches

by NC131
Wed Jun 12, 2024 3:52 am
Forum: Ren'Py Questions and Announcements
Topic: Is it possible to change android's save file location?
Replies: 1
Views: 8902

Re: Is it possible to change android's save file location?

Wait, how did you change it? or did you found it on the older post?

can you share it?
by NC131
Fri Jun 16, 2023 4:02 am
Forum: Ren'Py Questions and Announcements
Topic: An inventory system help
Replies: 14
Views: 953

Re: An inventory system help

PS. My inventory doesn't have "stackables" implemented. So to add "stackables" to your game you will need for example to add the amount to "owned" dictionary stackable items. If can look like this if you pick up an egg: addItem("egg", 1) Then you will need fu...
by NC131
Wed Jun 14, 2023 9:53 pm
Forum: Ren'Py Questions and Announcements
Topic: An inventory system help
Replies: 14
Views: 953

Re: An inventory system help

PS. My inventory doesn't have "stackables" implemented. So to add "stackables" to your game you will need for example to add the amount to "owned" dictionary stackable items. If can look like this if you pick up an egg: addItem("egg", 1) Then you will need fu...
by NC131
Wed Jun 14, 2023 9:55 am
Forum: Ren'Py Questions and Announcements
Topic: An inventory system help
Replies: 14
Views: 953

Re: An inventory system help

This might be a good starting point: https://lemmasoft.renai.us/forums/viewtopic.php?f=51&t=66699 I didn't do sorting there (being too lazy for that), but the cells can be highlighted according to the item category. Which is the next best thing, and doesn't change the placement created by manua...
by NC131
Tue Jun 13, 2023 2:12 am
Forum: Ren'Py Questions and Announcements
Topic: An inventory system help
Replies: 14
Views: 953

An inventory system help

Heya! I'm having an issue with creating an "inventory system" Where ... - you can drag and place the item around the inventory slots https://i.ibb.co/9gQwn5G/1.png - Each new item will be sorted on its category and rarity https://i.ibb.co/849pbRs/2.png - A crafting menu where it requires p...
by NC131
Fri May 12, 2023 10:38 am
Forum: Ren'Py Questions and Announcements
Topic: A pop up notification system help
Replies: 8
Views: 556

Re: A pop up notification system help

Ahh pardon my dumbness, but... how do you show the log as text on the screen? cuz when I tried to show it, it... looks like that xD (The image attachment) T-thanks again It should be done in a similar manner as notifypopup : For example: screen notifthis_panel: frame: align (1.0,0.05) background &q...
by NC131
Fri May 12, 2023 10:13 am
Forum: Ren'Py Questions and Announcements
Topic: A pop up notification system help
Replies: 8
Views: 556

Re: A pop up notification system help

Messy I know xD If you get the code logic there, and surely it works for me but... I can't take the whole log from each notification, and it's just a lot of code to apply... Thank you in advance! Let me suggest the following. A simple example: Log class init python: class NotifyLog(): ''' Log entry...
by NC131
Tue May 09, 2023 11:22 am
Forum: Ren'Py Questions and Announcements
Topic: A pop up notification system help
Replies: 8
Views: 556

Re: A pop up notification system help

Oh, and one more, how to "hide" a singular notify pop up instead of the whole bar? Thanks again ^^ I am not sure what you mean. The transform you apply hides the entry after 5 seconds. I guess you'd like to add entries to the screen one by one, so they will be hidden one by one. 1) If you...
by NC131
Tue May 09, 2023 7:42 am
Forum: Ren'Py Questions and Announcements
Topic: A pop up notification system help
Replies: 8
Views: 556

Re: A pop up notification system help

Messy I know xD If you get the code logic there, and surely it works for me but... I can't take the whole log from each notification, and it's just a lot of code to apply... Thank you in advance! Let me suggest the following. A simple example: Log class init python: class NotifyLog(): ''' Log entry...
by NC131
Tue May 09, 2023 2:21 am
Forum: Ren'Py Questions and Announcements
Topic: A pop up notification system help
Replies: 8
Views: 556

Re: A pop up notification system help

Messy I know xD If you get the code logic there, and surely it works for me but... I can't take the whole log from each notification, and it's just a lot of code to apply... Thank you in advance! Let me suggest the following. A simple example: Log class init python: class NotifyLog(): ''' Log entry...
by NC131
Mon May 08, 2023 4:19 am
Forum: Ren'Py Questions and Announcements
Topic: A pop up notification system help
Replies: 8
Views: 556

A pop up notification system help

Hello everyone!, I'm new here and I was wondering how to make a notification pop-up like in Team Fortress 2 https://i.kinja-img.com/gawker-media/image/upload/s--5jNRaHpu--/17n1fztaiw6mjjpg.jpg the kill popup. So you just have to type the notification text and then it'll appear for a few seconds and ...