/
mudtem/
mudtem/area/scripts/
mudtem/bin/
mudtem/log/
mudtem/player/
mudtem/slang/autoconf/
mudtem/slang/doc/
mudtem/slang/doc/OLD/help/
mudtem/slang/doc/internal/
mudtem/slang/doc/text/
mudtem/slang/doc/tm/tools/
mudtem/slang/examples/
mudtem/slang/modules/
mudtem/slang/slsh/
mudtem/slang/slsh/lib/
mudtem/slang/slsh/scripts/
mudtem/slang/src/mkfiles/
mudtem/slang/src/util/
mudtem/src/CVS/
mudtem/src/include/
mudtem/src/include/CVS/
mudtem/src/var/CVS/
    if (!IS_NPC(ch) && !IS_IMMORTAL(ch))
    {
	ch->pcdata->quaff++;

	if ( ch->pcdata->quaff > 3 )
	{
		send_to_char( "Uggghhh...no se siente muy bien.\n\r", ch );
		if ( ch->pcdata->quaff > 4 )
		{
			AFFECT_DATA af;

			af.where 	= TO_AFFECTS2;
			af.type		= gsn_dolor_guata;
			af.level	= getNivelPr(ch);
			af.duration	= 3;
			af.modifier	= 0;
			af.location	= APPLY_NONE;
			af.bitvector	= AFF_DOLOR_GUATA;

			affect_to_char( ch, &af );
			send_to_char( "Tu estomago sufre.\n\r", ch );
			return;
		}
	}
    }