Oldgamer, Ari has the chance to get drunk!

But with respect to the possibility to extend the date to a very long time with many more scenes than usual, the limit of drinks has been raised to 30 drinks. If you are not content with such a level, you can easily make an adaption to the limit, which you want to have:
In the dateariane folder there is the file: "default.htm". It is a rather big file. You can open the default file with editor or wordpad. Among other functions you find the function, which directs the limit of drinks:
function drinkup(){
drinks++;
changect = 0;
justchanged = 0;
stargaze = 0;
spinbottle = 0;
parktrip = 0;
if (intimate() && food >= 1){
if (drinks > 30)
change(83);
}
else {
if (food >= 1 && drinks > 30)
change(48);
if (food == 0 && drinks >= 30)
change(48);
}
There you have three times the number 30. If you want to decrease the limit to the half, you exchange all the numbers 30 by 15. Then you have with 15 drinks a drunk Ariane, which wants to go to sleep

. But the date ends!
If you like to get Ari drunk without changing the program, you can reach this effect, when entering the bar after dinner and order Martini and club soda. You only have to order another round (before dancing) and: Booom, Ari is sleeping at the desk.
