kc_hotspot_show

The following function checks to see if a hotspot has been found. It is meant to be placed on the ConditionalScript field of a world map.

// kc_hotspot_show
//
// global conditional script for world map hotspots.  Returns TRUE if this hotspot should be displayed
// on the world map.
	
// EPF 12/8/05
	
#include "kinc_worldmap"
	
int StartingConditional(string sHotspot)
{
	return GetIsHotspotVisible(sHotspot);
}