What's new

PHP Nowy wygl?d przy zak?adaniu nowej postaci

Status
Not open for further replies.

Etzel

I'm what I'm
Joined
Apr 1, 2012
Messages
48
Reaction score
7
Age
28
Autor kodu: Etzel
Wygl?d taki jest na serwerze Hexana.net
Wygl?da to tak:
showjm.jpg

Aby otrzyma? taki wygl?d wystarczy wszystko co znajduje si? po komentarzu //## CREATE CHARACTER on account ### w pliku accountmanagement.php podmieni? na:
PHP:
if($action == "createcharacter")
	{
		if(count($config['site']['worlds']) > 1)
		{
			if(isset($_REQUEST['world']))
				$world_id = (int) $_REQUEST['world'];
		}
		else
			$world_id = 0;
		if(!isset($world_id))
		{
			$main_content .= 'Before you can create character you must select world: ';
			foreach($config['site']['worlds'] as $id => $world_n)
				$main_content .= '<br />- <a href="?subtopic=accountmanagement&action=createcharacter&world='.$id.'">'.$world_n.'</a>';
			$main_content .= '<br /><h3><a href="?subtopic=accountmanagement">BACK</a></h3>';
		}
		else
		{
			$main_content .= '<script type="text/javascript">
				var nameHttp;
				function checkName()
				{
					if(document.getElementById("newcharname").value=="")
					{
						document.getElementById("name_check").innerHTML = \'<b><font color="red">Please enter new character name.</font></b>\';
						return;
					}
					nameHttp=GetXmlHttpObject();
					if (nameHttp==null)
					{
						return;
					}
					var newcharname = document.getElementById("newcharname").value;
					var url="ajax/check_name.php?name=" + newcharname + "&uid="+Math.random();
					nameHttp.onreadystatechange=NameStateChanged;
					nameHttp.open("GET",url,true);
					nameHttp.send(null);
				}
				function NameStateChanged()
				{
					if (nameHttp.readyState==4)
					{
						document.getElementById("name_check").innerHTML=nameHttp.responseText;
					}
				}
			</script>';
			$newchar_name = stripslashes(ucwords(strtolower(trim($_POST['newcharname']))));
			$newchar_sex = $_POST['newcharsex'];
			$newchar_vocation = $_POST['newcharvocation'];
			$newchar_town = $_POST['newchartown'];
			if($_POST['savecharacter'] != 1)
			{
				$main_content .= 'Please choose a name <!-- Style of create account edited by Gienekn -->';
				if(count($config['site']['newchar_vocations'][$world_id]) > 1)
					$main_content .= ', vocation';
				$main_content .= ' and sex for your character. <br/>In any case the name must not violate the naming conventions stated in the <a href="?subtopic=tibiarules" target="_blank" >'.$config['server']['serverName'].' Rules</a>, or your character might get deleted or name locked.';
				if($account_logged->getPlayersList()->count() >= $config['site']['max_players_per_account'])
					$main_content .= '<b><font color="red"> You have maximum number of characters per account on your account. Delete one before you make new.</font></b>';
				$main_content .= '<br/><br/><form action="?subtopic=accountmanagement&action=createcharacter" method="post" ><input type="hidden" name="world" value="'.$world_id.'" ><input type="hidden" name=savecharacter value="1" ><div class="TableContainer" >  <table class="Table3" cellpadding="0" cellspacing="0" >    <div class="CaptionContainer" >      <div class="CaptionInnerContainer" ><span class="CaptionEdgeLeftTop" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif);" /></span><span class="CaptionEdgeRightTop" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif);" /></span><span class="CaptionBorderTop" style="background-image:url('.$layout_name.'/images/content/table-headline-border.gif);" ></span><span class="CaptionVerticalLeft" style="background-image:url('.$layout_name.'/images/content/box-frame-vertical.gif);" /></span><div class="Text" >Create Character</div>        <span class="CaptionVerticalRight" style="background-image:url('.$layout_name.'/images/content/box-frame-vertical.gif);" /></span><span class="CaptionBorderBottom" style="background-image:url('.$layout_name.'/images/content/table-headline-border.gif);" ></span><span class="CaptionEdgeLeftBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif);" /></span><span class="CaptionEdgeRightBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif);" /></span></div>    </div><tr>      <td>        <div class="InnerTableContainer" >          <table style="width:100%;" ><tr><td><div class="TableShadowContainerRightTop" >  <div class="TableShadowRightTop" style="background-image:url('.$layout_name.'/images/content/table-shadow-rt.gif);" ></div></div><div class="TableContentAndRightShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-rm.gif);" >  <div class="TableContentContainer" >
				<table class="TableContent" width="100%" ><tr class="LabelH" ><td style="width: 170px; height:32px;" class="bold">Name:</td><td><input id="newcharname" name="newcharname" onkeyup="checkName();" value="'.$newchar_name.'" size="30" maxlength="29" ></td></tr><tr><td style="background-color:'.$config['site']['lightborder'].';width: 170px;height:32px;" class="bold"><b>Sex:</b></td><td style="background-color:'.$config['site']['lightborder'].';">';
				$main_content .= '<input type="radio" name="newcharsex" value="1" id="malell" ';
				if($newchar_sex == 1)
					$main_content .= 'checked="checked" ';
				$main_content .= '><label for="malell">Male</label>';
				$main_content .= '<input type="radio" name="newcharsex" value="0" id="femalell" ';
				if($newchar_sex == "0")
					$main_content .= 'checked="checked" ';
				$main_content .= '><label for="femalell">Female</label><br/></td></tr>';
				$main_content .= '<tr><td style="width: 170px;height:32px;"><b>Vocation:</b></td><td><select name="newcharvocation">';
				foreach($config['site']['newchar_vocations'][$world_id] as $char_vocation_key => $sample_char)
					{
						$main_content .= '<option value="'.$char_vocation_key.'">';
					
						$main_content .= ''.$vocation_name[$world_id][0][$char_vocation_key].'</option>';
					}
					$main_content .= '</td></tr>';
					$main_content .= '<tr><td style="background-color:'.$config['site']['lightborder'].';width: 170px;height:32px;"><b>Residence:</b></td><td style="background-color:'.$config['site']['lightborder'].';"><select name="newchartown">';
					foreach($config['site']['newchar_towns'][$world_id] as $town_id)
				
					{
						$main_content .= '<option value="'.$town_id.'">';
						
						$main_content .= ''.$towns_list[$world_id][$town_id].'</option>';
					}
					$main_content .= '</td></tr>';
				$main_content .= '</table></div></div></table></div>';
				if(count($config['site']['newchar_towns'][$world_id]) > 1 || count($config['site']['newchar_vocations'][$world_id]) > 1)
					$main_content .= '<div class="InnerTableContainer" >          <table style="width:100%;" ><tr>';
				if(count($config['site']['newchar_towns'][$world_id]) > 1 || count($config['site']['newchar_vocations'][$world_id]) > 1)
					$main_content .= '</tr></table></div>';
				$main_content .= '</table></div></td></tr><br/><table style="width:100%;" ><tr align="center" ><td><table border="0" cellspacing="0" cellpadding="0" ><tr><td style="border:0px;" ><div class="BigButton" style="background-image:url('.$layout_name.'/images/buttons/sbutton.gif)" ><div onMouseOver="MouseOverBigButton(this);" onMouseOut="MouseOutBigButton(this);" ><div class="BigButtonOver" style="background-image:url('.$layout_name.'/images/buttons/sbutton_over.gif);" ></div><input class="ButtonText" type="image" name="Submit" alt="Submit" src="'.$layout_name.'/images/buttons/_sbutton_submit.gif" ></div></div></td><tr></form></table></td><td><table border="0" cellspacing="0" cellpadding="0" ><form action="?subtopic=accountmanagement" method="post" ><tr><td style="border:0px;" ><div class="BigButton" style="background-image:url('.$layout_name.'/images/buttons/sbutton.gif)" ><div onMouseOver="MouseOverBigButton(this);" onMouseOut="MouseOutBigButton(this);" ><div class="BigButtonOver" style="background-image:url('.$layout_name.'/images/buttons/sbutton_over.gif);" ></div><input class="ButtonText" type="image" name="Back" alt="Back" src="'.$layout_name.'/images/buttons/_sbutton_back.gif" ></div></div></td></tr></form></table></td></tr></table>';
			}
			else
			{      
				if(strlen($newchar_name > 20))
					$newchar_errors[] = 'Character name can not be logner then 20 characters.';
				if(empty($newchar_name))
					$newchar_errors[] = 'Please enter a name for your character!';
				if(empty($newchar_sex) && $newchar_sex != "0")
					$newchar_errors[] = 'Please select the sex for your character!';
				if(count($config['site']['newchar_vocations'][$world_id]) > 1)
				{
					if(empty($newchar_vocation))
						$newchar_errors[] = 'Please select a vocation for your character.';
				}
				else
					$newchar_vocation = $config['site']['newchar_vocations'][$world_id][0];
				if(count($config['site']['newchar_towns'][$world_id]) > 1)
				{
					if(empty($newchar_town))
						$newchar_errors[] = 'Please select a town for your character.';
				}
				else
					$newchar_town = $config['site']['newchar_towns'][$world_id][0];
				if(empty($newchar_errors))
				{
					if(!check_name_new_char($newchar_name))
						$newchar_errors[] = 'This name contains invalid letters, words or format. Please use only a-Z, - , \' and space.';
					if($newchar_sex != 1 && $newchar_sex != "0")
						$newchar_errors[] = 'Sex must be equal <b>0 (female)</b> or <b>1 (male)</b>.';
					if(!in_array($newchar_town, $config['site']['newchar_towns'][$world_id]))
						$newchar_errors[] = 'Please select valid town.';
					if(count($config['site']['newchar_vocations'][$world_id]) > 1)
					{
						$newchar_vocation_check = FALSE;
						foreach($config['site']['newchar_vocations'][$world_id] as $char_vocation_key => $sample_char)
							if($newchar_vocation == $char_vocation_key)
								$newchar_vocation_check = TRUE;
						if(!$newchar_vocation_check)
							$newchar_errors[] = 'Unknown vocation. Please fill in form again.';
					}
					else
						$newchar_vocation = 0;
				}
				if(empty($newchar_errors))
				{
					$check_name_in_database = $ots->createObject('Player');
					$check_name_in_database->find($newchar_name);
					if($check_name_in_database->isLoaded())
						$newchar_errors[] .= 'This name is already used. Please choose another name!';
					$number_of_players_on_account = $account_logged->getPlayersList()->count();
					if($number_of_players_on_account >= $config['site']['max_players_per_account'])
						$newchar_errors[] .= 'You have too many characters on your account <b>('.$number_of_players_on_account.'/'.$config['site']['max_players_per_account'].')</b>!';
				}
				if(empty($newchar_errors))
				{
					$char_to_copy_name = $config['site']['newchar_vocations'][$world_id][$newchar_vocation];
					$char_to_copy = new OTS_Player();
					$char_to_copy->find($char_to_copy_name);
					if(!$char_to_copy->isLoaded())
						$newchar_errors[] .= 'Wrong characters configuration. Try again or contact with admin. ADMIN: Edit file config/config.php and set valid characters to copy names. Character to copy'.$char_to_copy_name.'</b> doesn\'t exist.';
				}
				if(empty($newchar_errors))
				{
					if($newchar_sex == "0")
						$char_to_copy->setLookType(136);
					$player = $ots->createObject('Player');
					$player->setName($newchar_name);
					$player->setAccount($account_logged);
					$player->setGroup($char_to_copy->getGroup());
					$player->setSex($newchar_sex);
					$player->setVocation($char_to_copy->getVocation());
					$player->setConditions($char_to_copy->getConditions());
					$player->setRank($char_to_copy->getRank());
					$player->setLookAddons($char_to_copy->getLookAddons());
					$player->setTownId($newchar_town);
					$player->setExperience($char_to_copy->getExperience());
					$player->setLevel($char_to_copy->getLevel());
					$player->setMagLevel($char_to_copy->getMagLevel());
					$player->setHealth($char_to_copy->getHealth());
					$player->setHealthMax($char_to_copy->getHealthMax());
					$player->setMana($char_to_copy->getMana());
					$player->setManaMax($char_to_copy->getManaMax());
					$player->setManaSpent($char_to_copy->getManaSpent());
					$player->setSoul($char_to_copy->getSoul());
					$player->setDirection($char_to_copy->getDirection());
					$player->setLookBody($char_to_copy->getLookBody());
					$player->setLookFeet($char_to_copy->getLookFeet());
					$player->setLookHead($char_to_copy->getLookHead());
					$player->setLookLegs($char_to_copy->getLookLegs());
					$player->setLookType($char_to_copy->getLookType());
					$player->setCap($char_to_copy->getCap());
					$player->setPosX(0);
					$player->setPosY(0);
					$player->setPosZ(0);
					$player->setLossExperience($char_to_copy->getLossExperience());
					$player->setLossMana($char_to_copy->getLossMana());
					$player->setLossSkills($char_to_copy->getLossSkills());
					$player->setLossItems($char_to_copy->getLossItems());
					$player->save();
					unset($player);
					$player = $ots->createObject('Player');
					$player->find($newchar_name);
					if($player->isLoaded())
					{
						$player->setCustomField('world_id', (int) $world_id);
						$player->setSkill(0,$char_to_copy->getSkill(0));
						$player->setSkill(1,$char_to_copy->getSkill(1));
						$player->setSkill(2,$char_to_copy->getSkill(2));
						$player->setSkill(3,$char_to_copy->getSkill(3));
						$player->setSkill(4,$char_to_copy->getSkill(4));
						$player->setSkill(5,$char_to_copy->getSkill(5));
						$player->setSkill(6,$char_to_copy->getSkill(6));
						$player->save();
						$loaded_items_to_copy = $SQL->query("SELECT * FROM player_items WHERE player_id = ".$char_to_copy->getId()."");
						foreach($loaded_items_to_copy as $save_item)
							$SQL->query("INSERT INTO `player_items` (`player_id` ,`pid` ,`sid` ,`itemtype`, `count`, `attributes`) VALUES ('".$player->getId()."', '".$save_item['pid']."', '".$save_item['sid']."', '".$save_item['itemtype']."', '".$save_item['count']."', '".$save_item['attributes']."');");
						$main_content .= '<div class="TableContainer" >  <table class="Table1" cellpadding="0" cellspacing="0" >    <div class="CaptionContainer" >      <div class="CaptionInnerContainer" >        <span class="CaptionEdgeLeftTop" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif);" /></span>        <span class="CaptionEdgeRightTop" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif);" /></span>        <span class="CaptionBorderTop" style="background-image:url('.$layout_name.'/images/content/table-headline-border.gif);" ></span>        <span class="CaptionVerticalLeft" style="background-image:url('.$layout_name.'/images/content/box-frame-vertical.gif);" /></span>        <div class="Text" >Character Created</div>        <span class="CaptionVerticalRight" style="background-image:url('.$layout_name.'/images/content/box-frame-vertical.gif);" /></span>        <span class="CaptionBorderBottom" style="background-image:url('.$layout_name.'/images/content/table-headline-border.gif);" ></span>        <span class="CaptionEdgeLeftBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif);" /></span>        <span class="CaptionEdgeRightBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif);" /></span>      </div>    </div>    <tr>      <td>        <div class="InnerTableContainer" >          <table style="width:100%;" ><tr><td>The character <b>'.$newchar_name.'</b> has been created.<br/>Please select the outfit when you log in for the first time.<br/><br/><b>See you on '.$config['server']['serverName'].'!</b></td></tr>          </table>        </div>  </table></div></td></tr><br/><center><table border="0" cellspacing="0" cellpadding="0" ><form action="?subtopic=accountmanagement" method="post" ><tr><td style="border:0px;" ><div class="BigButton" style="background-image:url('.$layout_name.'/images/buttons/sbutton.gif)" ><div onMouseOver="MouseOverBigButton(this);" onMouseOut="MouseOutBigButton(this);" ><div class="BigButtonOver" style="background-image:url('.$layout_name.'/images/buttons/sbutton_over.gif);" ></div><input class="ButtonText" type="image" name="Back" alt="Back" src="'.$layout_name.'/images/buttons/_sbutton_back.gif" ></div></div></td></tr></form></table></center>';
					}
					else
					{
						echo "Error. Can\'t create character. Probably problem with database. Try again or contact with admin.";
						exit;
					}
				}
				else
				{
					$main_content .= '<div class="SmallBox" >  <div class="MessageContainer" >    <div class="BoxFrameHorizontal" style="background-image:url('.$layout_name.'/images/content/box-frame-horizontal.gif);" /></div>    <div class="BoxFrameEdgeLeftTop" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif);" /></div>    <div class="BoxFrameEdgeRightTop" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif);" /></div>    <div class="ErrorMessage" >      <div class="BoxFrameVerticalLeft" style="background-image:url('.$layout_name.'/images/content/box-frame-vertical.gif);" /></div>      <div class="BoxFrameVerticalRight" style="background-image:url('.$layout_name.'/images/content/box-frame-vertical.gif);" /></div>      <div class="AttentionSign" style="background-image:url('.$layout_name.'/images/content/attentionsign.gif);" /></div><b>The Following Errors Have Occurred:</b><br/>';
					foreach($newchar_errors as $newchar_error)
						$main_content .= '<li>'.$newchar_error;
					$main_content .= '</div>    <div class="BoxFrameHorizontal" style="background-image:url('.$layout_name.'/images/content/box-frame-horizontal.gif);" /></div>    <div class="BoxFrameEdgeRightBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif);" /></div>    <div class="BoxFrameEdgeLeftBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif);" /></div>  </div></div><br/>';
					$main_content .= 'Please choose a name <!-- Style of create account edited by Gienekn -->';
				if(count($config['site']['newchar_vocations'][$world_id]) > 1)
					$main_content .= ', vocation';
				$main_content .= ' and sex for your character. <br/>In any case the name must not violate the naming conventions stated in the <a href="?subtopic=tibiarules" target="_blank" >'.$config['server']['serverName'].' Rules</a>, or your character might get deleted or name locked.';
				if($account_logged->getPlayersList()->count() >= $config['site']['max_players_per_account'])
					$main_content .= '<b><font color="red"> You have maximum number of characters per account on your account. Delete one before you make new.</font></b>';
				$main_content .= '<br/><br/><form action="?subtopic=accountmanagement&action=createcharacter" method="post" ><input type="hidden" name="world" value="'.$world_id.'" ><input type="hidden" name=savecharacter value="1" ><div class="TableContainer" >  <table class="Table3" cellpadding="0" cellspacing="0" >    <div class="CaptionContainer" >      <div class="CaptionInnerContainer" ><span class="CaptionEdgeLeftTop" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif);" /></span><span class="CaptionEdgeRightTop" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif);" /></span><span class="CaptionBorderTop" style="background-image:url('.$layout_name.'/images/content/table-headline-border.gif);" ></span><span class="CaptionVerticalLeft" style="background-image:url('.$layout_name.'/images/content/box-frame-vertical.gif);" /></span><div class="Text" >Create Character</div>        <span class="CaptionVerticalRight" style="background-image:url('.$layout_name.'/images/content/box-frame-vertical.gif);" /></span><span class="CaptionBorderBottom" style="background-image:url('.$layout_name.'/images/content/table-headline-border.gif);" ></span><span class="CaptionEdgeLeftBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif);" /></span><span class="CaptionEdgeRightBottom" style="background-image:url('.$layout_name.'/images/content/box-frame-edge.gif);" /></span></div>    </div><tr>      <td>        <div class="InnerTableContainer" >          <table style="width:100%;" ><tr><td><div class="TableShadowContainerRightTop" >  <div class="TableShadowRightTop" style="background-image:url('.$layout_name.'/images/content/table-shadow-rt.gif);" ></div></div><div class="TableContentAndRightShadow" style="background-image:url('.$layout_name.'/images/content/table-shadow-rm.gif);" >  <div class="TableContentContainer" >
				<table class="TableContent" width="100%" ><tr class="LabelH" ><td style="width: 170px; height:32px;" class="bold">Name:</td><td><input id="newcharname" name="newcharname" onkeyup="checkName();" value="'.$newchar_name.'" size="30" maxlength="29" ></td></tr><tr><td style="width: 170px;height:32px;" class="bold"><b>Sex:</b></td><td>';
				$main_content .= '<input type="radio" name="newcharsex" value="1" id="malell" ';
				if($newchar_sex == 1)
					$main_content .= 'checked="checked" ';
				$main_content .= '><label for="malell">Male</label>';
				$main_content .= '<input type="radio" name="newcharsex" value="0" id="femalell" ';
				if($newchar_sex == "0")
					$main_content .= 'checked="checked" ';
				$main_content .= '><label for="femalell">Female</label><br/></td></tr>';
				$main_content .= '<tr><td style="width: 170px;height:32px;"><b>Vocation:</b></td><td><select name="newcharvocation">';
				foreach($config['site']['newchar_vocations'][$world_id] as $char_vocation_key => $sample_char)
					{
						$main_content .= '<option value="'.$char_vocation_key.'">';
					
						$main_content .= ''.$vocation_name[$world_id][0][$char_vocation_key].'</option>';
					}
					$main_content .= '</td></tr>';
					$main_content .= '<tr><td style="width: 170px;height:32px;"><b>Residence:</b></td><td><select name="newchartown">';
					foreach($config['site']['newchar_towns'][$world_id] as $town_id)
				
					{
						$main_content .= '<option value="'.$town_id.'">';
						
						$main_content .= ''.$towns_list[$world_id][$town_id].'</option>';
					}
					$main_content .= '</td></tr>';
				$main_content .= '</table></div></div></div>';
					if(count($config['site']['newchar_towns'][$world_id]) > 1 || count($config['site']['newchar_vocations'][$world_id]) > 1)
						$main_content .= '</tr></table></div>';
					$main_content .= '</table></div></td></tr><br/><table style="width:100%;" ><tr align="center" ><td><table border="0" cellspacing="0" cellpadding="0" ><tr><td style="border:0px;" ><div class="BigButton" style="background-image:url('.$layout_name.'/images/buttons/sbutton.gif)" ><div onMouseOver="MouseOverBigButton(this);" onMouseOut="MouseOutBigButton(this);" ><div class="BigButtonOver" style="background-image:url('.$layout_name.'/images/buttons/sbutton_over.gif);" ></div><input class="ButtonText" type="image" name="Submit" alt="Submit" src="'.$layout_name.'/images/buttons/_sbutton_submit.gif" ></div></div></td><tr></form></table></td><td><table border="0" cellspacing="0" cellpadding="0" ><form action="?subtopic=accountmanagement" method="post" ><tr><td style="border:0px;" ><div class="BigButton" style="background-image:url('.$layout_name.'/images/buttons/sbutton.gif)" ><div onMouseOver="MouseOverBigButton(this);" onMouseOut="MouseOutBigButton(this);" ><div class="BigButtonOver" style="background-image:url('.$layout_name.'/images/buttons/sbutton_over.gif);" ></div><input class="ButtonText" type="image" name="Back" alt="Back" src="'.$layout_name.'/images/buttons/_sbutton_back.gif" ></div></div></td></tr></form></table></td></tr></table>';
				}
			}
		}
	}
}
?>

Zabraniam publikowania tego na innych forach bez podania linku do tej strony, oraz zamieszczeniu autora.
 

Frigo

Active User
Joined
May 25, 2008
Messages
109
Reaction score
6
Odp: Nowy wygl?d przy zak?adaniu nowej postaci

U mnie nie dzia?a, nie mam nic w Residence przez co wyskakuje b??d.
(MegaEvo Edited by Help3R + Gesior pod 0.3.6)
 

Placek

Blue Waffle
Joined
Sep 30, 2008
Messages
6,793
Reaction score
672
Age
9
Odp: Nowy wygl?d przy zak?adaniu nowej postaci

Nic specjalnego, zwyczajna prosta tabelka troche inna niz zazwyczaj. Nic wielkiego nie zmienia nawet, ale ladnie wyglada, dlatego moze ktos sobie zmieni na takie cos. :)
 

rafiik18

Banned
Joined
Feb 6, 2011
Messages
167
Reaction score
11
Odp: Nowy wygl?d przy zak?adaniu nowej postaci

No i szkoda ?e na forum br skrypt jest identyczny tylko po portugalsku panie "Webmasterze". 0/10 za to k?amanie ?e jeste? autorem skryptu.
 

Etzel

I'm what I'm
Joined
Apr 1, 2012
Messages
48
Reaction score
7
Age
28
Odp: Nowy wygl?d przy zak?adaniu nowej postaci

Ciekawe na jakim forum jest skrypt, sprawd? czy na pewno jest s?owo w s?owo, nie wiem czy gdzie? mo?e by? ten skrypt ale ja jestem jego autorem. Piszesz takie g?upoty a nie masz ?adnych dowod?w.
 

Hubcio-PL

Active User
Joined
Jun 15, 2008
Messages
52
Reaction score
0
Odp: Nowy wygl?d przy zak?adaniu nowej postaci

Z otlandu :) Dopiero go tam widzia?em :p
 

Etzel

I'm what I'm
Joined
Apr 1, 2012
Messages
48
Reaction score
7
Age
28
Odp: Nowy wygl?d przy zak?adaniu nowej postaci

Z otlandu :) Dopiero go tam widzia?em :p

Popatrz na date publikacji to po 1 a po 2 popatrz na nick -.- Mam taki sam nick tam i tutaj czy to tak trudno pomy?le?, ka?dy doszukuj? si? tylko jaki? problem?w, nie do??, ?e udost?pni?em skrypt za darmo to jeszcze ?le...
 

Sandstormowski

Advanced User
Joined
Jul 22, 2011
Messages
409
Reaction score
29
Age
22
Odp: Nowy wygl?d przy zak?adaniu nowej postaci

Extra :D,przyda si? :p
Repp:p
 

Ruuvessi

New User
Joined
Oct 13, 2010
Messages
2
Reaction score
0
Odp: Nowy wygl?d przy zak?adaniu nowej postaci

U mnie si? nic nie zmienia.. -.-

Dwarf Layout + ACC G?sior 0.3.6
 

Bez Cenzury

Active User
Joined
Jul 22, 2012
Messages
89
Reaction score
3
Odp: Nowy wygl?d przy zak?adaniu nowej postaci

No wreszcie dzi?kuje bardzo!.
Oczywi?cie rep polecia?.;)
 
Status
Not open for further replies.
Top