Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Hi. Thank you for making this awesome Manager. 

I got a question while customizing QuestManager, and this is it: Can you tell me how to subtract the prefix '~' and suffix '~' from screen evs_block? I'd like to remove the wave mark on ~General~ and ~Introduction~.

I found this in the screen evs_block under \questmanager\engine\screens. The code block looks like this:

screen evs_block(cat, evlist, prefix=" {b}-{/b} ", completed_suffix="{image=completed}", progress_suffix="{image=in_progress}", unknown=_("? ? ?")):

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

        style "category_style"


the text ""+__(cat)+"": is where the ~ should be in your block. I just removed mine but left the category area in case I wanted to change it around later. I hope this helps!

(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 !