function Guild (GuildName, GuildTitles) {
this.name = GuildName; // name of Guild - string from plugin parametters
this.titles = GuildTitles; // array - set of ranks/titles within guild
this.member = false; // Check if actor is already member - each actor can be member of each guild as long as he pays guild fee. He can also lost membership if act against guild
this.reputation = 0; // Actor reputation points for guild
this.level= 0; // Actor level inside guild
this.titleID= 0; // Actor title ID inside guild
// +few methods for check reputation needed for next level in guild, for set level, set title, etc..
};
var guilds = [guild1, guild2, guild3, guild4, guild5, guild6, guild7, guild8, guild9];