LoD_PRC8/_module/nss/areascan_cond_0.nss
Jaysyn904 94990edc60 Initial Upload
Initial Upload
2023-09-21 21:20:34 -04:00

22 lines
631 B
Plaintext

//::///////////////////////////////////////////////
//:: Name: areascan_cond_0
//:: Created By: Flash
//:: Created On: 02-mar-2005
//:://////////////////////////////////////////////
#include "areascan_inc"
int StartingConditional()
{
string sMyString = "Area Scanner not setup correctly.";
if(GetLocalInt(oListOwner, AREASCANNER_SETUP_OK))
{
sMyString = "There are currently " +
IntToString(GetLocalInt(oListOwner, AREASCANNER_AREA_COUNT)) +
" areas with potential overfarming.";
}
SetCustomToken(AREASCANNER_START_CUSTOM_TOKEN, sMyString);
return TRUE;
}