Amarr
Khanid
4.94
Thoralf Byss
Last Active:
13 days ago
Birthday:
Dec 22, 2013 (11 years old)
Next Birthday:
Dec 22, 2025 (47 days remaining)
Combat Metrics
Kills
699
Losses
64
Efficiency
91.6%
Danger Ratio
86.6%
ISK Metrics
ISK Killed
1015.73B ISK
ISK Lost
28.00B ISK
ISK Efficiency
97.3%
ISK Balance
987.73B ISK
Solo Activity
Solo Kills
12
Solo Losses
22
Solo Kill Ratio
1.7%
Solo Efficiency
35.3%
Other Metrics
NPC Losses
9
NPC Loss Ratio
14.1
Avg. Kills/Day
0.2
Activity
High
Character Biography
private void validateUserEntry()
{
// Checks the value of the text.
if(serverName.Text.Length == 0)
{
// Initializes the variables to pass to the MessageBox.Show method.
string message = "You did not enter a server name. Cancel this operation?";
string caption = "Error Detected in Input";
MessageBoxButtons buttons = MessageBoxButtons.YesNo;
DialogResult result;
// Displays the MessageBox.
result = MessageBox.Show(message, caption, buttons);
if (result == System.Windows.Forms.DialogResult.Yes)
{
// Closes the parent form.
this.Close();
}
}
}
{
// Checks the value of the text.
if(serverName.Text.Length == 0)
{
// Initializes the variables to pass to the MessageBox.Show method.
string message = "You did not enter a server name. Cancel this operation?";
string caption = "Error Detected in Input";
MessageBoxButtons buttons = MessageBoxButtons.YesNo;
DialogResult result;
// Displays the MessageBox.
result = MessageBox.Show(message, caption, buttons);
if (result == System.Windows.Forms.DialogResult.Yes)
{
// Closes the parent form.
this.Close();
}
}
}