well , i still have bug with traceback even i delete all saves file
This happens immediately when you start the game? Or does it happen after you complete the grocery store blowjob line event in episode 5?
It seems that the quest entry somehow doesn't exist. Which would mean that it was never defined. But it gets defined at the start of the 5th episode, so you must somehow be skipping that definition, by most likely loading an old save made after that point.
You can try and edit the code. Open up the game folder, find the file named 'locations_ep5.rpy' and search for:
$ del current_quests["In Queue"]
change it to
$ current_quests.pop("In Queue", None)
This will not throw an error if the quest is missing, but will still attempt to remove it.
Report back if it works for you
