int Script::GetRgnStrongPointState(const char* footholdName)
{
	if(footholdName==NULL)
		return EXEC_ERROR;

	CServerRegion* region = dynamic_cast<CServerRegion*>(m_RunEnv.region);
	if(region==NULL)
		return EXEC_ERROR;

	return region->GetStrongPointState(footholdName);
}