# Script for the liklihood of a tribe sending recruiters
# inputs:
# Tribe_Relationship_To_You : number in the range -10 to 10 describing the relationship a tribe has towards the player
# Size_Of_Tribe : The size of the tribe indicated by the number of creatures it has
# Time_Since_This_Script_Last_Ran : Time in milliseconds
# outputs:
# Size_Of_Party_To_Send_Now : number of creatures to send to recruit from this tribe
# local variables:
# Time_Since_Last_Recruit_Party_Sent : Time in seconds

# time tracker, beginning of script
Time_Since_Last_Recruit_Party_Sent = Time_Since_Last_Recruit_Party_Sent + Time_Since_This_Script_Last_Ran/1000

Size_Of_Party_To_Send_Now = 0

if (Time_Since_Last_Recruit_Party_Sent > 2)
	Size_Of_Party_To_Send_Now = 0
endif


# time tracker, end of script
if (Size_Of_Party_To_Send_Now > 0)
	Time_Since_Last_Recruit_Party_Sent = 0
endif

