Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Dekaron > Dekaron Private Server
You last visited: Today at 17:13

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[HELP]Reg Page - Font Color

Discussion on [HELP]Reg Page - Font Color within the Dekaron Private Server forum part of the Dekaron category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Aug 2008
Posts: 3
Received Thanks: 0
[HELP]Reg Page - Font Color

Hello everyone.

I need add white color font to reg page but i don't know how.
I used this reg script (from )

Code:
<?php

// fill in your mssql info here
$mssql = array(
		'host' => "localhost",
		'user' => "sa",
		'pass' => "server"
	);

echo "<center>";

if($_POST['activ'] == '1') {
	
		$con = mssql_connect($mssql['host'],$mssql['user'],$mssql['pass']);

		$result1 = mssql_query("SELECT * FROM account.dbo.USER_PROFILE WHERE user_id = '".$_POST['accname']."'",$con);
		$result2 = mssql_query("SELECT * FROM account.dbo.Tbl_user WHERE user_id = '".$_POST['accname']."'",$con);
		$result3 = mssql_query("SELECT * FROM account.dbo.Tbl_user WHERE user_mail = '".$_POST['accmail']."'",$con);

		$row1 = mssql_num_rows($result1);
		$row2 = mssql_num_rows($result2);
		$row3 = mssql_num_rows($result3);
		
		$dk_time=strftime("%y%m%d%H%M%S");
     	list($usec1, $sec1) = explode(" ",microtime());
     	$dk_user_no=$dk_time.substr($usec1,2,2);


		if(empty($_POST['accname']) || empty($_POST['accpass1']) || empty($_POST['accpass2'])|| empty($_POST['accname']) || empty($_POST['accmail'])) {
			echo "<br>You didnt fill in all fields<a href='javascript:history.back()'>Go Back</a>";
		} elseif($row1 > '0' || $row2 > '0') {
			echo "<br>This Account name already exists.<a href='javascript:history.back()'>Go Back</a>";
		} elseif($row3 > '0') {
			echo "<br>This E-Mail is already in use.<a href='javascript:history.back()'>Go Back</a>";
		} elseif($_POST['accpass1'] != $_POST['accpass2']) {
			echo "<br>The passwords did not match<a href='javascript:history.back()'>Go Back</a>";
		} elseif($_POST['accpass1'] == $_POST['accname']) {
			echo "<br>Account name and password are the same.<a href='javascript:history.back()'>Go Back</a>";
		} elseif(!preg_match("/^[0-9a-zA-Z]{3,15}$/i", $_POST['accname'])) {
			echo "<br>Enter a account name only with 0-9 , a-z and A-Z.<a href='javascript:history.back()'>Go Back</a>";
		} elseif(!preg_match("/^[0-9a-zA-Z]{3,15}$/i", $_POST['accpass1'])) {
			echo "<br>Enter a password only with 0-9 , a-z and A-Z.<a href='javascript:history.back()'>Go Back</a>";
		} elseif(!preg_match("/^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/i",$_POST['accmail'])) {
			echo "<br>Your e-Mail is not correct.<a href='javascript:history.back()'>Go Back</a>";
		} elseif(strlen($_POST['accname']) < 3 || strlen($_POST['accname']) > 15) {
			echo "<br>The Accountname must at least 3 indications long and may maximally 15 indications long.<a href='javascript:history.back()'>Go Back</a>";
		} elseif(strlen($_POST['accpass1']) < 3 || strlen($_POST['accpass1']) > 15) {
			echo "<br>The Password must at least 3 indications long and may maximally 15 indications long.<a href='javascript:history.back()'>Go Back</a>";
		} else {

			$accpass = md5($_POST['accpass1']);

			mssql_query("INSERT INTO account.dbo.USER_PROFILE (user_no,user_id,user_pwd,resident_no,user_type,login_flag,login_tag,ipt_time,login_time,logout_time,user_ip_addr,server_id) VALUES ('$dk_user_no','".$_POST['accname']."','".$accpass."','801011000000','1','0','Y','".$date."',null,null,null,'000')",$con);
			mssql_query("INSERT INTO account.dbo.Tbl_user (user_no,user_id,user_pwd,user_mail,user_answer,user_question) VALUES ('$dk_user_no','".$_POST['accname']."','".$_POST['accpass1']."','".$_POST['accmail']."','0','0')",$con);

			echo "<center><b><u>The account was successfully created. Have fun !</b></u></center><br><br>";
			echo "<center>Here is your login info again:</center>";
			echo "<center>Your account name is: <b>".$_POST['accname']."</b></center>";
			echo "<center>Your password is: <b>".$_POST['accpass1']."</b></center>";
			echo "DO NOT LOOSE THIS INFO, YOU MAY WRITE IS DOWN AND HIDE IT";
		}

} else {

	$con = mssql_connect($mssql['host'],$mssql['user'],$mssql['pass']);
	$result1 = mssql_query("SELECT * FROM account.dbo.USER_PROFILE",$con);
	$row1 = mssql_num_rows($result1);
	
	echo "<center><b><u>This time we have ".$row1." Registed Accounts on our Server<br>Join us.</b></u></center><br>";
	echo "<form action='".$_SEVER['PHP_SELF']."' method='POST'>";
	echo "<center><table>";
	echo "<tr><td colspan='2' align='center'><b><u>Your Account Info</u></b></td></tr>";
	echo "<tr><td>Account Name</td><td><input type='text' name='accname' maxlength='12'></td></tr>";
	echo "<tr><td>Password</td><td><input type='password' name='accpass1' maxlength='12'></td></tr>";
	echo "<tr><td>Again pass.</td><td><input type='password' name='accpass2' maxlength='12'></td></tr>";
	echo "<tr><td>&nbsp;</td><td>&nbsp;</td></tr>";
	echo "<tr><td colspan='2' align='center'><b><u>Other account info</u></b></td></tr>";
	echo "<tr><td>Email</td><td><input type='text' name='accmail' maxlength='50'></td></tr>";
	echo "<tr><td>&nbsp;</td><td>&nbsp;</td></tr>";
	echo "<tr><td colspan='2' align='center'>
		<input type='hidden' name='activ' value='1'>
		<input type='submit' value='Create Account'></td></tr>";
	echo "</table></center>";
	echo "</form>";

}

echo "</center>";

?>
TerminatorPL is offline  
Old 02/07/2010, 17:46   #2
 
eLO21's Avatar
 
elite*gold: 0
Join Date: Sep 2007
Posts: 1,511
Received Thanks: 983
Napisz do mnie to Ci pomogę :P GG 4344927
eLO21 is offline  
Old 02/08/2010, 00:01   #3
 
elite*gold: 0
Join Date: Nov 2008
Posts: 74
Received Thanks: 2
Learn html dude not hard.
Dyrizy is offline  
Old 02/08/2010, 00:38   #4
 
EliteWarrior's Avatar
 
elite*gold: 0
Join Date: Mar 2008
Posts: 257
Received Thanks: 13
It is not in that file its in another .php file look inside of it and search for ''color'' or ''fontcolor'' or whatever and u find it. And when u find use valid font color just go to and then select color code and paste it easy ^^ To this guy above learn what html is and what php is that script is definatly no html lmao. Good luck
EliteWarrior is offline  
Old 02/08/2010, 03:13   #5
 
elite*gold: 20
Join Date: Jan 2008
Posts: 1,346
Received Thanks: 354
I don't know HTML but try this anyways, i think it should work o.O. And if it does there probably also a better way of doing it, but like i said i don't know HTML .

Code:
<?php

// fill in your mssql info here
$mssql = array(
		'host' => "localhost",
		'user' => "sa",
		'pass' => "server"
	);

echo "<center style="color : white;">";

if($_POST['activ'] == '1') {
	
		$con = mssql_connect($mssql['host'],$mssql['user'],$mssql['pass']);

		$result1 = mssql_query("SELECT * FROM account.dbo.USER_PROFILE WHERE user_id = '".$_POST['accname']."'",$con);
		$result2 = mssql_query("SELECT * FROM account.dbo.Tbl_user WHERE user_id = '".$_POST['accname']."'",$con);
		$result3 = mssql_query("SELECT * FROM account.dbo.Tbl_user WHERE user_mail = '".$_POST['accmail']."'",$con);

		$row1 = mssql_num_rows($result1);
		$row2 = mssql_num_rows($result2);
		$row3 = mssql_num_rows($result3);
		
		$dk_time=strftime("%y%m%d%H%M%S");
     	list($usec1, $sec1) = explode(" ",microtime());
     	$dk_user_no=$dk_time.substr($usec1,2,2);


		if(empty($_POST['accname']) || empty($_POST['accpass1']) || empty($_POST['accpass2'])|| empty($_POST['accname']) || empty($_POST['accmail'])) {
			echo "<br>You didnt fill in all fields<a href='javascript:history.back()'>Go Back</a>";
		} elseif($row1 > '0' || $row2 > '0') {
			echo "<br>This Account name already exists.<a href='javascript:history.back()'>Go Back</a>";
		} elseif($row3 > '0') {
			echo "<br>This E-Mail is already in use.<a href='javascript:history.back()'>Go Back</a>";
		} elseif($_POST['accpass1'] != $_POST['accpass2']) {
			echo "<br>The passwords did not match<a href='javascript:history.back()'>Go Back</a>";
		} elseif($_POST['accpass1'] == $_POST['accname']) {
			echo "<br>Account name and password are the same.<a href='javascript:history.back()'>Go Back</a>";
		} elseif(!preg_match("/^[0-9a-zA-Z]{3,15}$/i", $_POST['accname'])) {
			echo "<br>Enter a account name only with 0-9 , a-z and A-Z.<a href='javascript:history.back()'>Go Back</a>";
		} elseif(!preg_match("/^[0-9a-zA-Z]{3,15}$/i", $_POST['accpass1'])) {
			echo "<br>Enter a password only with 0-9 , a-z and A-Z.<a href='javascript:history.back()'>Go Back</a>";
		} elseif(!preg_match("/^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/i",$_POST['accmail'])) {
			echo "<br>Your e-Mail is not correct.<a href='javascript:history.back()'>Go Back</a>";
		} elseif(strlen($_POST['accname']) < 3 || strlen($_POST['accname']) > 15) {
			echo "<br>The Accountname must at least 3 indications long and may maximally 15 indications long.<a href='javascript:history.back()'>Go Back</a>";
		} elseif(strlen($_POST['accpass1']) < 3 || strlen($_POST['accpass1']) > 15) {
			echo "<br>The Password must at least 3 indications long and may maximally 15 indications long.<a href='javascript:history.back()'>Go Back</a>";
		} else {

			$accpass = md5($_POST['accpass1']);

			mssql_query("INSERT INTO account.dbo.USER_PROFILE (user_no,user_id,user_pwd,resident_no,user_type,login_flag,login_tag,ipt_time,login_time,logout_time,user_ip_addr,server_id) VALUES ('$dk_user_no','".$_POST['accname']."','".$accpass."','801011000000','1','0','Y','".$date."',null,null,null,'000')",$con);
			mssql_query("INSERT INTO account.dbo.Tbl_user (user_no,user_id,user_pwd,user_mail,user_answer,user_question) VALUES ('$dk_user_no','".$_POST['accname']."','".$_POST['accpass1']."','".$_POST['accmail']."','0','0')",$con);

			echo "<center><b><u>The account was successfully created. Have fun !</b></u></center><br><br>";
			echo "<center>Here is your login info again:</center>";
			echo "<center>Your account name is: <b>".$_POST['accname']."</b></center>";
			echo "<center>Your password is: <b>".$_POST['accpass1']."</b></center>";
			echo "DO NOT LOOSE THIS INFO, YOU MAY WRITE IS DOWN AND HIDE IT";
		}

} else {

	$con = mssql_connect($mssql['host'],$mssql['user'],$mssql['pass']);
	$result1 = mssql_query("SELECT * FROM account.dbo.USER_PROFILE",$con);
	$row1 = mssql_num_rows($result1);
	
	echo "<center><b><u>This time we have ".$row1." Registed Accounts on our Server<br>Join us.</b></u></center><br>";
	echo "<form action='".$_SEVER['PHP_SELF']."' method='POST'>";
	echo "<center><table>";
	echo "<tr><td colspan='2' align='center'><b><u>Your Account Info</u></b></td></tr>";
	echo "<tr><td>Account Name</td><td><input type='text' name='accname' maxlength='12'></td></tr>";
	echo "<tr><td>Password</td><td><input type='password' name='accpass1' maxlength='12'></td></tr>";
	echo "<tr><td>Again pass.</td><td><input type='password' name='accpass2' maxlength='12'></td></tr>";
	echo "<tr><td>&nbsp;</td><td>&nbsp;</td></tr>";
	echo "<tr><td colspan='2' align='center'><b><u>Other account info</u></b></td></tr>";
	echo "<tr><td>Email</td><td><input type='text' name='accmail' maxlength='50'></td></tr>";
	echo "<tr><td>&nbsp;</td><td>&nbsp;</td></tr>";
	echo "<tr><td colspan='2' align='center'>
		<input type='hidden' name='activ' value='1'>
		<input type='submit' value='Create Account'></td></tr>";
	echo "</table></center>";
	echo "</form>";

}

echo "</center>";

?>

or try


Code:
<?php

// fill in your mssql info here
$mssql = array(
		'host' => "localhost",
		'user' => "sa",
		'pass' => "server"
	);

echo "<center>";

if($_POST['activ'] == '1') {
	
		$con = mssql_connect($mssql['host'],$mssql['user'],$mssql['pass']);

		$result1 = mssql_query("SELECT * FROM account.dbo.USER_PROFILE WHERE user_id = '".$_POST['accname']."'",$con);
		$result2 = mssql_query("SELECT * FROM account.dbo.Tbl_user WHERE user_id = '".$_POST['accname']."'",$con);
		$result3 = mssql_query("SELECT * FROM account.dbo.Tbl_user WHERE user_mail = '".$_POST['accmail']."'",$con);

		$row1 = mssql_num_rows($result1);
		$row2 = mssql_num_rows($result2);
		$row3 = mssql_num_rows($result3);
		
		$dk_time=strftime("%y%m%d%H%M%S");
     	list($usec1, $sec1) = explode(" ",microtime());
     	$dk_user_no=$dk_time.substr($usec1,2,2);


		if(empty($_POST['accname']) || empty($_POST['accpass1']) || empty($_POST['accpass2'])|| empty($_POST['accname']) || empty($_POST['accmail'])) {
			echo "<br style="color : white;">You didnt fill in all fields<a href='javascript:history.back()'>Go Back</a>";
		} elseif($row1 > '0' || $row2 > '0') {
			echo "<br style="color : white;">This Account name already exists.<a href='javascript:history.back()'>Go Back</a>";
		} elseif($row3 > '0') {
			echo "<br style="color : white;">This E-Mail is already in use.<a href='javascript:history.back()'>Go Back</a>";
		} elseif($_POST['accpass1'] != $_POST['accpass2']) {
			echo "<br style="color : white;">The passwords did not match<a href='javascript:history.back()'>Go Back</a>";
		} elseif($_POST['accpass1'] == $_POST['accname']) {
			echo "<br style="color : white;">Account name and password are the same.<a href='javascript:history.back()'>Go Back</a>";
		} elseif(!preg_match("/^[0-9a-zA-Z]{3,15}$/i", $_POST['accname'])) {
			echo "<br style="color : white;">Enter a account name only with 0-9 , a-z and A-Z.<a href='javascript:history.back()'>Go Back</a>";
		} elseif(!preg_match("/^[0-9a-zA-Z]{3,15}$/i", $_POST['accpass1'])) {
			echo "<br style="color : white;">Enter a password only with 0-9 , a-z and A-Z.<a href='javascript:history.back()'>Go Back</a>";
		} elseif(!preg_match("/^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/i",$_POST['accmail'])) {
			echo "<br style="color : white;">Your e-Mail is not correct.<a href='javascript:history.back()'>Go Back</a>";
		} elseif(strlen($_POST['accname']) < 3 || strlen($_POST['accname']) > 15) {
			echo "<br style="color : white;">The Accountname must at least 3 indications long and may maximally 15 indications long.<a href='javascript:history.back()'>Go Back</a>";
		} elseif(strlen($_POST['accpass1']) < 3 || strlen($_POST['accpass1']) > 15) {
			echo "<br style="color : white;">The Password must at least 3 indications long and may maximally 15 indications long.<a href='javascript:history.back()'>Go Back</a>";
		} else {

			$accpass = md5($_POST['accpass1']);

			mssql_query("INSERT INTO account.dbo.USER_PROFILE (user_no,user_id,user_pwd,resident_no,user_type,login_flag,login_tag,ipt_time,login_time,logout_time,user_ip_addr,server_id) VALUES ('$dk_user_no','".$_POST['accname']."','".$accpass."','801011000000','1','0','Y','".$date."',null,null,null,'000')",$con);
			mssql_query("INSERT INTO account.dbo.Tbl_user (user_no,user_id,user_pwd,user_mail,user_answer,user_question) VALUES ('$dk_user_no','".$_POST['accname']."','".$_POST['accpass1']."','".$_POST['accmail']."','0','0')",$con);

			echo "<center style="color : white;"><b><u>The account was successfully created. Have fun !</b></u></center><br><br>";
			echo "<center style="color : white;">Here is your login info again:</center>";
			echo "<center style="color : white;">Your account name is: <b>".$_POST['accname']."</b></center>";
			echo "<center style="color : white;">Your password is: <b>".$_POST['accpass1']."</b></center>";
			echo "DO NOT LOOSE THIS INFO, YOU MAY WRITE IS DOWN AND HIDE IT";
		}

} else {

	$con = mssql_connect($mssql['host'],$mssql['user'],$mssql['pass']);
	$result1 = mssql_query("SELECT * FROM account.dbo.USER_PROFILE",$con);
	$row1 = mssql_num_rows($result1);
	
	echo "<center style="color : white;"><b><u>This time we have ".$row1." Registed Accounts on our Server<br>Join us.</b></u></center><br>";
	echo "<form action='".$_SEVER['PHP_SELF']."' method='POST'>";
	echo "<center style="color : white;"><table>";
	echo "<tr><td colspan='2' align='center'><b><u >Your Account Info</u></b></td></tr>";
	echo "<tr><td>Account Name</td><td><input type='text' name='accname' maxlength='12'></td></tr>";
	echo "<tr><td>Password</td><td><input type='password' name='accpass1' maxlength='12'></td></tr>";
	echo "<tr><td>Again pass.</td><td><input type='password' name='accpass2' maxlength='12'></td></tr>";
	echo "<tr><td>&nbsp;</td><td>&nbsp;</td></tr>";
	echo "<tr><td colspan='2' align='center'><b><u>Other account info</u></b></td></tr>";
	echo "<tr><td>Email</td><td><input type='text' name='accmail' maxlength='50'></td></tr>";
	echo "<tr><td>&nbsp;</td><td>&nbsp;</td></tr>";
	echo "<tr><td colspan='2' align='center'>
		<input type='hidden' name='activ' value='1'>
		<input type='submit' value='Create Account'></td></tr>";
	echo "</table></center>";
	echo "</form>";

}

echo "</center>";

?>
bottomy is offline  
Reply


Similar Threads Similar Threads
Archlord Chat (Font Color)
04/07/2010 - Archlord - 16 Replies
Hi Guys! In the game i can see sometimes people writing in a different font type or in a different color. I look for a while in the internet to find something about it but with no success. My question is if anyone of you knows how to do this. Thanks deathkeeper
Can i change my game font to turkish font?
03/26/2010 - Metin2 Private Server - 4 Replies
Hello, I installed a PvP server, but in game chat(normal chat) as an example in Turkish characters, ş,ı,ğ characters are not displayed.When I use them i get a strange symbol on normal chat window But there is no problem on whisper chat.I can use Turkish characters in whisper chat. I wonder can i change my game font to turkish font? Thank you in advance for your help.
Horse Color (This Program Tells You Your Horse's EXACT Color Values)
10/21/2009 - CO2 Exploits, Hacks & Tools - 35 Replies
CURRENTLY: WORKING (Patch 5157) Alright guys, finally got around to updating and fixing this program... the way it works now is, just run the program, equip the horse you want to look at, and it'll show you it's Color Stats... in future versions I will be making it so u can equip one horse, then another, and it'll tell you what each horse's value is AND what would be the result if u combined them... and maybe even a little further into the future I will release a program that'll allow you to...
Color for yellow font
05/10/2009 - EO PServer Hosting - 0 Replies
for the record i meant code which ani and ini file has the code for yellow font? lol
Changing in-game font/font size
09/30/2006 - Conquer Online 2 - 6 Replies
Can anyone kind link me to how to do that please, my eyes are killing me :bandit:



All times are GMT +2. The time now is 17:13.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.