I think that the Alicia bug can be fixed by changing line 3235 from this:
	
	
	
		Code:
	
	
			[[Check Behind Restroom]]<img src="images/general/energy.png"> | [[Talk to Prostitute]] | [[Talk to Shady Person]]<<if $weed > 0>> | [[Smoke Marijuana|Smoke Marijuana at Park]]<</if>><<if $coke > 0>> | [[Do Cocaine|Do Cocaine at Park]]<</if>><<if $photography >= 3>> | [[Take Random Photographs]][img[images/general/arousal.png]]<</if>><<if $pawnstory == 0>> | [[Inspect Shiny Object]][img[images/general/story.png]]<</if>><<if $aliciastory >= 1 && $aliciastory < 51>><<if $day == "Tuesday" or $day == "Thursday" or $day == "Saturday">> |  [[Speak with Alicia]]<</if>><<elseif $aliciastory >= 51>><<if $day == "Tuesday" && $aliciastory != 54 && $aliciastory != 64 || $day == "Thursday" && $aliciastory != 54 && $aliciastory != 64 || $day == "Saturday" && $aliciastory != 54 && $aliciastory != 64 || $day == "Sunday" && $aliciastory == 52>> | [[Speak with Alex]]<</if>><</if>><<if $aliciastory == 13>>[[Meet Up with Alicia]][img[images/general/story.png]]<</if>><<if $day == "Saturday" and $felixstory == 1>> | [[Find Felix]][img[images/general/story.png]]<<elseif $felixstory == 75>> | [[Meet Up with Felix]][img[images/general/story.png]]<</if>><<if $pawnstory == 3 && $day == "Friday">> | [[Find Pawnshop Owner]][img[images/general/story.png]]<</if>><<if $chloestory == 49>>[[Meet Up with Chloe|Meet with Chloe at the Park]][img[images/general/story.png]]<</if>><<if $aliciastory == 64>> | [[Find Out What's Going on with Alex]][img[images/general/story.png]]<</if>>
	 
 To this:
	
	
	
		Code:
	
	
			[[Check Behind Restroom]]<img src="images/general/energy.png"> | [[Talk to Prostitute]] | [[Talk to Shady Person]]<<if $weed > 0>> | [[Smoke Marijuana|Smoke Marijuana at Park]]<</if>><<if $coke > 0>> | [[Do Cocaine|Do Cocaine at Park]]<</if>><<if $photography >= 3>> | [[Take Random Photographs]][img[images/general/arousal.png]]<</if>><<if $pawnstory == 0>> | [[Inspect Shiny Object]][img[images/general/story.png]]<</if>><<if $aliciastory >= 1 && $aliciastory < 51>><<if $day == "Tuesday" or $day == "Thursday" or $day == "Saturday">> |  [[Speak with Alicia]]<</if>><<elseif $aliciastory >= 51>><<if $day == "Tuesday" && $aliciastory != 54 && $aliciastory != 64 || $day == "Thursday" && $aliciastory != 54 && $aliciastory != 64 || $day == "Saturday" && $aliciastory != 54 && $aliciastory != 64 || $day == "Sunday" && $aliciastory == 52>> | [[Speak with Alex]]<</if>><</if>><<if $aliciastory == 12>> | [[Meet Up with Alicia]][img[images/general/story.png]]<</if>><<if $day == "Saturday" and $felixstory == 1>> | [[Find Felix]][img[images/general/story.png]]<<elseif $felixstory == 75>> | [[Meet Up with Felix]][img[images/general/story.png]]<</if>><<if $pawnstory == 3 && $day == "Friday">> | [[Find Pawnshop Owner]][img[images/general/story.png]]<</if>><<if $chloestory == 49>>[[Meet Up with Chloe|Meet with Chloe at the Park]][img[images/general/story.png]]<</if>><<if $aliciastory == 64>> | [[Find Out What's Going on with Alex]][img[images/general/story.png]]<</if>>
	 
 The problem seems to be, that the relationship state "aliciastory" was set to 12 and the check was for 13; I changed it to 12. The passage appears at least, but I don't know if this is the correct solution (one other possible solution would be that the relationship should actually be set to 13). Anyway, use at your own risk...
Edit: IT seems to work as far as the scene is concerned, but it doesn't seem to progress the story beyond that, just getting you through the same choices as before. Oh well...