Skip to main content

On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

fxcelessdraws

2
Posts
1
Topics
4
Followers
A member registered Apr 19, 2025 · View creator page →

Creator of

Recent community posts

Got it to work via adding the condition like you suggested! Thank you. If others are having a similar issue and came to the forum for help like I did, try adding an if statement for your inventory return values at the end of your pnc_loop. In my case, the code ended up looking like this:

if inventory_return == True and current_room == "the_current_room":

       jump current_room_label

else:

      jump expression _return

Might not be the best workaround since you'd have to make an if/elif statement for each room, but hey, if it works, it works!

Hi, I want to start off by saying this plugin is one of the best ones I've used for Ren'Py thus far, and it's making my pnc visual novel so much easier/smoother to make, but I ran into a small issue when it came to implementing a drag/drop inventory system with combinable items into the game. I'm using the exact same code as the example game in the plugin's zip download and the drag and drop inventory example from this YouTube tutorial (lines 221+, linked here: inventoryexamples/inventory.rpy at main · VimislikArt/inventoryexamples · GitHub), and they work together perfectly until you collect one of the inventory items by interacting with one of the plugin buttons via $ inventory.append(item). After that, the game runs into the error "ScriptError: could not find label 'True'" on the pnc_loop's jump expression _return statement where I think it mistakes the combine_check's return True statement for a label that doesn't exist and crashes.

Any ideas on why it's doing this? o3o