setFilter($filter); $accountsCreatedFromUserIP = count($createdAccountsData); if($accountsCreatedFromUserIP > 0) { $main_content .= '

You can create only one account per 10 minutes. Try again later.

'; } else { //CREATE ACCOUNT FORM PAGE if($action == "") { $main_content .= ''; $main_content .= '

Create your account and register right away to avoid any future problems with loss and theft.

Create an '.htmlspecialchars($config['server']['serverName']).' Account
'; $main_content .= ''; if(!$config['site']['create_account_verify_mail']) $main_content .= ''; else $main_content .= ''; if($config['site']['verify_code']) $main_content .= ''; else $main_content .= ''; $main_content .= '
Account name:
(Please enter your new account name)
Name status:
Please enter your account name.
Email address:
(Your email address is required to recovery an '.htmlspecialchars($config['server']['serverName']).' account)
Email status:
Please enter your e-mail.
Password:
(Here write your password to new account on '.htmlspecialchars($config['server']['serverName']).')
Repeat password:
(Repeat your password)
Code: Image Verification is missing, please contact the administrator
Verification Code:
(Here write verification code from picture)

Rules 4War

Keep in mind that to create your account you must accept the terms listed here, so any clarification wont be grounds for justification.
If you fully agree to these terms, click on the "I Agree" button in order to create an '.htmlspecialchars($config['server']['serverName']).' account.
If you do not agree to these terms or do not want to create an '.htmlspecialchars($config['server']['serverName']).' account, please click on the "Cancel" button.



'; } //CREATE ACCOUNT PAGE (save account in database) if($action == "saveaccount") { $reg_name = strtoupper(trim($_POST['reg_name'])); $reg_email = trim($_POST['reg_email']); $reg_password = trim($_POST['reg_password']); $reg_code = trim($_POST['reg_code']); //FIRST check //check e-mail if(empty($reg_name)) $reg_form_errors[] = "Please enter account name."; elseif(!check_account_name($reg_name)) $reg_form_errors[] = "Invalid account name format. Use only A-Z and numbers 0-9."; if(empty($reg_email)) $reg_form_errors[] = "Please enter your email address."; else { if(!check_mail($reg_email)) $reg_form_errors[] = "E-mail address is not correct."; } if($config['site']['verify_code']) { //check verification code $string = strtoupper($_SESSION['string']); $userstring = strtoupper($reg_code); session_destroy(); if(empty($string)) $reg_form_errors[] = "Information about verification code in session is empty."; else { if(empty($userstring)) $reg_form_errors[] = "Please enter verification code."; else { if($string != $userstring) $reg_form_errors[] = "Verification code is incorrect."; } } } //check password if(empty($reg_password) && !$config['site']['create_account_verify_mail']) $reg_form_errors[] = "Please enter password to your new account."; elseif(!$config['site']['create_account_verify_mail']) { if(!check_password($reg_password)) $reg_form_errors[] = "Password contains illegal chars (a-z, A-Z and 0-9 only!) or lenght."; } //SECOND check //check e-mail address in database if(empty($reg_form_errors)) { if($config['site']['one_email']) { $test_email_account = new Account(); //load account with this e-mail $test_email_account->findByEmail($reg_email); if($test_email_account->isLoaded()) $reg_form_errors[] = "Account with this e-mail address already exist in database."; } $account_db = new Account(); $account_db->find($reg_name); if($account_db->isLoaded()) $reg_form_errors[] = 'Account with this name already exist.'; } // ----------creates account-------------(save in database) if(empty($reg_form_errors)) { //create object 'account' and generate new acc. number if($config['site']['create_account_verify_mail']) { $reg_password = ''; for ($i = 1; $i <= 6; $i++) $reg_password .= mt_rand(0,9); } $reg_account = new Account(); // saves account information in database $reg_account->setName($reg_name); $reg_account->setPassword($reg_password); $reg_account->setEMail($reg_email); $reg_account->setGroupID(1); $reg_account->setCreateDate(time()); $reg_account->setCreateIP(Visitor::getIP()); $reg_account->setFlag(Website::getCountryCode(long2ip(Visitor::getIP()))); if(isset($config['site']['newaccount_premdays']) && $config['site']['newaccount_premdays'] > 0) { $reg_account->set("premdays", $config['site']['newaccount_premdays']); $reg_account->set("lastday", time()); } $reg_account->save(); //show information about registration if($config['site']['send_emails'] && $config['site']['create_account_verify_mail']) { $mailBody = '

Your account name and password!

You or someone else registred on server '.htmlspecialchars($config['server']['serverName']).' with this e-mail.

Account name: '.htmlspecialchars($reg_name).'

Password: '.htmlspecialchars(trim($reg_password)).'


After login you can:

  • Create new characters
  • Change your current password
  • Change your current e-mail '; $mail = new PHPMailer(); if ($config['site']['smtp_enabled']) { $mail->IsSMTP(); $mail->Host = $config['site']['smtp_host']; $mail->Port = (int)$config['site']['smtp_port']; $mail->SMTPAuth = $config['site']['smtp_auth']; $mail->Username = $config['site']['smtp_user']; $mail->Password = $config['site']['smtp_pass']; } else $mail->IsMail(); $mail->IsHTML(true); $mail->From = $config['site']['mail_address']; $mail->AddAddress($reg_email); $mail->Subject = $config['server']['serverName']." - Registration"; $mail->Body = $mailBody; if($mail->Send()) { $main_content .= 'Your account has been created. Check your e-mail. See you in Tibia!

    '; $main_content .= '
    Account Created

    Your account name is: '.$reg_name.'.
    You will receive e-mail ('.htmlspecialchars($reg_email).') with your password.
    '; $main_content .= 'You will need the account name and your password to play on '.htmlspecialchars($config['server']['serverName']).'. Please keep your account name and password in a safe place and never give your account name or password to anybody.

    '; $main_content .= '
    These informations were send on email address '.htmlspecialchars($reg_email).'. Please check your inbox/spam folder.'; } else { $main_content .= '
    An error occorred while sending email! Account not created. Try again.'; $reg_account->delete(); } } else { $main_content .= 'Your account has been created. Now you can login and create your first character. See you in Tibia!

    '; $main_content .= '
    Account Created

    Your account name is '.htmlspecialchars($reg_name).'
    You will need the account name and your password to play on '.htmlspecialchars($config['server']['serverName']).'. Please keep your account name and password in a safe place and never give your account name or password to anybody.

    '; if($config['site']['send_emails'] && $config['site']['send_register_email']) { $mailBody = '

    Your account name and password!

    You or someone else registred on server '.htmlspecialchars($config['server']['serverName']).' with this e-mail.

    Account name: '.htmlspecialchars($reg_name).'

    Password: '.htmlspecialchars(trim($reg_password)).'


    After login you can:

  • Create new characters
  • Change your current password
  • Change your current e-mail '; $mail = new PHPMailer(); if ($config['site']['smtp_enabled']) { $mail->IsSMTP(); $mail->Host = $config['site']['smtp_host']; $mail->Port = (int)$config['site']['smtp_port']; $mail->SMTPAuth = $config['site']['smtp_auth']; $mail->Username = $config['site']['smtp_user']; $mail->Password = $config['site']['smtp_pass']; } else $mail->IsMail(); $mail->IsHTML(true); $mail->From = $config['site']['mail_address']; $mail->AddAddress($reg_email); $mail->Subject = $config['server']['serverName']." - Registration"; $mail->Body = $mailBody; if($mail->Send()) $main_content .= '
    These informations were send on email address '.htmlspecialchars($reg_email).'.'; else $main_content .= '
    An error occorred while sending email ('.htmlspecialchars($reg_email).')!'; } } $main_content .= '


  • '; } else { //SHOW ERRORs if data from form is wrong $main_content .= '
    The Following Errors Have Occurred:
    '; foreach($reg_form_errors as $show_msg) { $main_content .= '
  • '.$show_msg.'
  • '; } $main_content .= '


    '; } } }