var accountHttp; function checkAccount() { if(document.getElementById("account_name").value=="") { document.getElementById("acc_name_check").innerHTML = \'Please enter account name.\'; return; } accountHttp=GetXmlHttpObject(); if (accountHttp==null) { return; } var account = document.getElementById("account_name").value; var url="?subtopic=ajax_check_account&account=" + account + "&uid="+Math.random(); accountHttp.onreadystatechange=AccountStateChanged; accountHttp.open("GET",url,true); accountHttp.send(null); } function AccountStateChanged() { if (accountHttp.readyState==4) { document.getElementById("acc_name_check").innerHTML=accountHttp.responseText; } } var emailHttp; //sprawdza czy dane konto istnieje czy nie function checkEmail() { if(document.getElementById("email").value=="") { document.getElementById("email_check").innerHTML = \'Please enter e-mail.\'; return; } emailHttp=GetXmlHttpObject(); if (emailHttp==null) { return; } var email = document.getElementById("email").value; var url="?subtopic=ajax_check_email&email=" + email + "&uid="+Math.random(); emailHttp.onreadystatechange=EmailStateChanged; emailHttp.open("GET",url,true); emailHttp.send(null); } function EmailStateChanged() { if (emailHttp.readyState==4) { document.getElementById("email_check").innerHTML=emailHttp.responseText; } } function validate_required(field,alerttxt) { with (field) { if (value==null||value==""||value==" ") { alert(alerttxt); return false; } else { return true; } } } function validate_email(field,alerttxt) { with (field) { apos=value.indexOf("@"); dotpos=value.lastIndexOf("."); if (apos<1||dotpos-apos<2) { alert(alerttxt); return false; } else { return true; } } } function validate_form(thisform) { with (thisform) { if(validate_required(account_name,"Please enter name of new account!")==false) { account_name.focus(); return false; } if(validate_required(email,"Please enter your e-mail!")==false) { email.focus(); return false; } if(validate_email(email,"Invalid e-mail format!")==false) { email.focus(); return false; } if(verifpass==1) { if(validate_required(passor,"Please enter password!")==false) { passor.focus(); return false; } if (validate_required(passor2,"Please repeat password!")==false) { passor2.focus(); return false; } if(passor2.value!=passor.value) { alert(\'Repeated password is not equal to password!\'); return false; } } if(verifya==1) { if (validate_required(verify,"Please enter verification code!")==false) { verify.focus();return false; } } if(rules.checked==false) { alert(\'To create account you must accept server rules!\'); return false; } } } '; $main_content .= 'To play on '.htmlspecialchars($config['server']['serverName']).' you need an account. All you have to do to create your new account is to enter your email address, password to new account, verification code from picture and to agree to the terms presented below. If you have done so, your account name, password and e-mail address will be shown on the following page and your account and password will be sent to your email address along with further instructions.

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)
Please review the following terms and state your agreement below.
'.htmlspecialchars($config['server']['serverName']).' Rules
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 .= '


    '; } }