Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

NerdChickenGames

6
Posts
71
Followers
A member registered Aug 12, 2021 · View creator page →

Creator of

Recent community posts

(2 edits)

Hi thanks for your comment :) You can remove the prefix by modifying the code. Go to the screens folder from questmanager folder and look for the diary.rpy file. At line 73 replace the line

text "~ "+__(cat)+" ~":

 by

text __(cat):

and it should work !

This error mean that the name of the quest "mom2" doesn't exist. Is the quest "mom2" declared into the chapter ???

(1 edit)

Hi, this error mean that the name of the quest "qnicolas01" doesn't exist. Is the quest "qnicolas01" declared into the chapter ???

Hi thank for your nice comment !
You can easily activate events depending on the status with the quest.is_state() function. This is an example: 


# Define the chapter
define test = (
Quest("test01", _("Test01"), _("Introduction"), "completed"),
Quest("test02", _("Test02"), _("Introduction"), "in progress"),

)

label start:

#Load the chapter into the game
$ quest.load(test)

#Add the conditional state
if quest.is_state("test01", " completed"):
jump choice01
else:
jump choice02

label choice01:
c "First"

label choice02:
c "Two"

Thanks :)

Your welcome :)