healing fountain
Happy new year to all of you.
Does anyone know where I can get a script for a fountain that heals you when you drink the water.
I searched but I could not find it.
Does anyone know where I can get a script for a fountain that heals you when you drink the water.
I searched but I could not find it.

In the original dink source, there's a file s1-fount.c. Try that one, this is what it contains - it heals you completely:
void main( void )
{
}
void talk( void )
{
&life = &lifemax;
wait(400);
say("The water has refreshed me.", 1);
}
void hit( void )
{
say("WATER MUST DIE!", 1);
}
void main( void )
{
}
void talk( void )
{
&life = &lifemax;
wait(400);
say("The water has refreshed me.", 1);
}
void hit( void )
{
say("WATER MUST DIE!", 1);
}
Happy new year dinkholland!
Here's the script you're looking for :
void main ( void )
{
}
void talk ( void )
{
say("Ah, refreshing", 1);
&life = &lifemax;
}
EDIT : Three posts at the same time. At least this proves that Dinkers are quick to help others.
EDIT 2 : Fixed post screw-up. Sorry about that, dinkholland.

Here's the script you're looking for :
void main ( void )
{
}
void talk ( void )
{
say("Ah, refreshing", 1);
&life = &lifemax;
}
EDIT : Three posts at the same time. At least this proves that Dinkers are quick to help others.

EDIT 2 : Fixed post screw-up. Sorry about that, dinkholland.
Don't forget the
external("mag-star","main");
external("mag-star","main");