namespace PRoConEvents { using System; using System.IO; using System.Text; using System.Text.RegularExpressions; using System.Collections.Generic; using System.Collections; using System.Net; using System.Net.Mail; using System.Web; using System.Data; class LimitEvaluator2 { public bool FirstCheck(PlayerInfoInterface player, ServerInfoInterface server, PluginInterface plugin, TeamInfoInterface team1, TeamInfoInterface team2, TeamInfoInterface team3, TeamInfoInterface team4) { try { return ( ((true)) == true); } catch(Exception e) { plugin.DumpException(e); } return false; } public bool SecondCheck(PlayerInfoInterface player, ServerInfoInterface server, PluginInterface plugin, TeamInfoInterface team1, TeamInfoInterface team2, TeamInfoInterface team3, TeamInfoInterface team4, LimitInfoInterface limit) { try { // Establish players, killers and victims entries String prefix = "LBS_"; String kKillers = prefix + "killers"; String kVictims = prefix + "victims"; // Setup up player's data, if not already done DataDictionaryInterface r = player.RoundData; if (!r.issetObject(kKillers)) { r.setObject(kKillers, new Dictionary()); } if (!r.issetObject(kVictims)) { r.setObject(kVictims, new Dictionary()); } return false; return true; } catch(Exception e) { plugin.DumpException(e); } return true; } } }