Register for your free account! | Forgot your password?

Go Back   elitepvpers > Other Online Games > Browsergames > DarkOrbit
You last visited: Today at 08:15

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

Advertisement



[Private Server] ICOn8 Project

Discussion on [Private Server] ICOn8 Project within the DarkOrbit forum part of the Browsergames category.

Closed Thread
 
Old 04/24/2013, 23:05   #166
 
elite*gold: 0
Join Date: Apr 2013
Posts: 53
Received Thanks: 147
ok let's go
xokixoki is offline  
Old 04/24/2013, 23:05   #167
 
elite*gold: 0
Join Date: Jun 2011
Posts: 52
Received Thanks: 9
someone can make a video with xampp?
-duende- is offline  
Old 04/24/2013, 23:07   #168
 
fsdfsafasfsfsadfsd's Avatar
 
elite*gold: 0
Join Date: Apr 2012
Posts: 555
Received Thanks: 163
Quote:
Originally Posted by DrS™ View Post
I have ehough experience .. I'm one of little people who create a emulator from zero for a Habbo Retro ..


I know how it's work .. It's the same .. CMS, DB, SWF , Emulator and Servers ..

I trying all files and optimize all this ****.
praise the lord Good luck with it
fsdfsafasfsfsadfsd is offline  
Old 04/24/2013, 23:28   #169
 
elite*gold: 0
Join Date: Jun 2011
Posts: 424
Received Thanks: 238
Bad .htacces..

lkInGx is offline  
Old 04/24/2013, 23:31   #170
 
elite*gold: 73
Join Date: May 2012
Posts: 517
Received Thanks: 548
Just edit it
DrSkyfall™ is offline  
Old 04/24/2013, 23:32   #171
 
elite*gold: 0
Join Date: Apr 2013
Posts: 53
Received Thanks: 147
yes.
xokixoki is offline  
Old 04/24/2013, 23:35   #172
 
Professional*'s Avatar
 
elite*gold: 0
Join Date: Dec 2012
Posts: 987
Received Thanks: 815
Quote:
Originally Posted by linkpad View Post
Well so there is a tutoriel for make it working with wampserver (normal version) :

1. go to , make a database called do_es and import the file do_es.sql
2. Go to the do_es database and click on the SQL button and execute this :

Code:
ALTER TABLE  `cuentas` ADD  `slot2` VARCHAR( 999 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL , ADD  `slot3` VARCHAR( 999 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, CHANGE  `inventario`  `inventario` VARCHAR( 999 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT  '|RM1,100;2,150;3,200;10,250;11,300;12,300;13,500;14,100;15,30' COMMENT 'minerales|...'
3. Go to your www folder, and paste all file from do_es folder and crossdomain.xml to www (so you don't have anymore a do_es folder !)

4. go to www and edit externalSignup.php, delete all and paste this :

PHP Code:
<?php require_once('Connections/DO.php'); ?>
<?php 
include('includes/variables.php'); ?>
<?php 
include('includes/head.tpl'); ?>
<?php
// *** Redirect if username exists
$MM_flag="MM_insert";
if (isset(
$_POST[$MM_flag])) {
  
$loginUsername $_POST['signup_username'];
  
$LoginRS__query "SELECT usuario FROM cuentas WHERE usuario='" $loginUsername "'";
  
mysql_select_db($database_DO$DO);
  
$LoginRS=mysql_query($LoginRS__query$DO) or die(mysql_error());
  
$loginFoundUser mysql_num_rows($LoginRS);

  
//Lista de errores
  
if($loginFoundUser){
    
$error_usuario "El nombre de usuario ya esta cogido.";
  
$error "true";
  }
  if(
$_POST['signup_username'] == ""){
     
$error_usuario "El nombre de usuario esta vacio.";
  
$error "true";
  }
  if(
strlen($_POST['signup_username'])<4){
    
$error_usuario "El nombre de usuario debe tener entre 4 y 20 caracteres.";
  
$error "true";
  }
   if(
strlen($_POST['signup_username'])>20){
    
$error_usuario "El nombre de usuario debe tener entre 4 y 20 caracteres.";
  
$error "true";
  }
  if(
$_POST['signup_password'] == ""){
     
$error_contraseña "La contraseña esta vacia.";
  
$error "true";
  }
  if(
$_POST['signup_passwordRepeat'] == ""){
     
$error_rcontraseña "La contraseña esta vacia.";
  
$error "true";
  }
   if(
strlen($_POST['signup_password'])<4){
    
$error_contraseña "Las contraseñas deben tener entre 4 y 20 caracteres.";
  
$error "true";
  }
   if(
strlen($_POST['signup_password'])>20){
    
$error_contraseña "Las contraseñas deben tener entre 4 y 20 caracteres.";
  
$error "true";
  }
   if(
$_POST['signup_password'] != $_POST['signup_passwordRepeat']){
     
$error_contraseña "Las contraseñas no coinciden.";
  
$error "true";
  }
   if(
$_POST['signup_email'] == ""){
    
$error_email "El email esta vacio.";
  
$error "true";
  }
  if (!
mb_eregi("^[^@]{1,64}@[^@]{1,255}$"$_POST['signup_email'])) 
  {
    
$error_email "Tu email parece ser incorrecto. Por favor, facilita una dirección de email válida.";
  
$error "true";
  }
  if(empty(
$_POST['signup_termsAndCondition'])){
     
$error_tos "Debes aceptar los terminos y condiciones de uso.";
  
$error "true";
  }
}



if (isset( 
$_SERVER['PHP_POST']))
{
  
$editFormAction $_SERVER['PHP_POST'];
}
else
{
  
$editFormAction null;
}

if (isset(
$_SERVER['QUERY_STRING'])) {
  
$editFormAction .= "?" htmlentities($_SERVER['QUERY_STRING']);
}

if ((isset(
$_POST["MM_insert"])) && ($_POST["MM_insert"] == "signup_signup")) {
if(isset(
$error) == "true"){
}else{
  
$fecha_nacimiento $_POST['signup_birthdayDay'].$_POST['signup_birthdayMonth'].$_POST['signup_birthdayYear'];
  
$insertSQL sprintf("INSERT INTO cuentas (usuario, password, email, servidor, fecha_nacimiento, pais, fecha_creacion) VALUES (%s, %s, %s, %s, %s, %s, %s)",
                       
GetSQLValueString($_POST['signup_username'], "text"),
                       
GetSQLValueString(md5($_POST['signup_password']), "text"),
                       
GetSQLValueString($_POST['signup_email'], "text"),
                       
GetSQLValueString($_POST['signup_servidor'], "int"),
                       
GetSQLValueString($fecha_nacimiento"text"),
                       
GetSQLValueString($_POST['signup_pais'], "text"),
             
GetSQLValueString($_POST['fecha_creacion'], "text"));
             

  
mysql_select_db($database_DO$DO);
  
$Result1 mysql_query($insertSQL$DO) or die(mysql_error());
  
$query_Cuenta sprintf("SELECT * FROM cuentas WHERE usuario = '%s'"$_POST['signup_username']);
  
$Cuenta mysql_query($query_Cuenta$DO) or die(mysql_error());
  
$row_Cuenta mysql_fetch_assoc($Cuenta);
  
  
$insertSQL2 sprintf("INSERT INTO settings (userID) VALUES (%s)",
             
GetSQLValueString($row_Cuenta['id'], "int"));
             
  
$Result2 mysql_query($insertSQL2$DO) or die(mysql_error());
  
$insertGoTo null;
  if (isset(
$_SERVER['QUERY_STRING'])) {
    
$insertGoTo .= (strpos($insertGoTo'?')) ? "&" "?";
    
$insertGoTo .= $_SERVER['QUERY_STRING'];
  }
  echo 
'<script language="javascript">window.location="index.php"</script>;';
}
}
?>
<style type="text/css" media="screen">    @import "css/darkorbit.css"; </style>
<style type="text/css" media="screen">    @import "css/do_registration.css"; </style>

<script src="js/function.js" type="text/javascript"></script>
<script>


function choose(welche) {
        document.registerform.firma.value = welche;
        document.forms['registerform'].submit();
}


</script>

<script type="text/javascript">if (top.location.host != self.location.host) top.location = self.location;</script><!-- affiliateHeadTag -->

</head>

<body>

<!-- affiliateStartTag -->


    <div class="reg_main">
        <div class="reg_bg">
            <script type="text/javascript" language="javascript" src="http://sharedservices.l3.cdn.bigpoint.net/shared/js/bigpoint_base.js"></script><div style="position: relative;" class="signup_container">
<table class="signup">
<tr>
<td>
<table class="signup signup_left">
<tr>
<td colspan="2" class="signup_label label_description">
<b>¡Maniobras de caza cargadas de acción y emocionantes misiones te esperan en DarkOrbit!</b><br><br><b>DarkOrbit no es el típico juego de batallas espaciales.</b><br>DarkOrbit es un juego multijugador cargado de acción en tiempo real.<br><br>¡Estás al servicio de tu empresa, piloto espacial!<br><br><ul><li>Enfréntate en la guerra de empresas: Tierra, Marte y Venus</li><li>Elige tu nave espacial: 10 naves configurables</li><li>Peligrosas batallas espaciales: lucha solo o en alianza</li><li>Recopila valiosas materias primas</li><li>Equípate: gran armamento y gran arsenal</li><li>Persigue a tus adversarios por el espacio</li></ul><br>Asciende en tu empresa y conquista nuevos sectores en galaxias desconocidas. En DarkOrbit no paras de experimentar <b>acción</b>, un juego emocionante contra <b>miles de adversarios reales.</b> Y tienes cada mes la posibilidad de ganar <b>¡10.000 euros!</b><br><br><b>¡Arranca el motor, piloto espacial!</b></td>
</tr>
</table>
</td>
<td>
<form name="signup_signup" action="<?php echo $editFormAction?>" method="POST">
  <input type="hidden" name="locale" value="es" />
  <table class="signup signup_right">
<tr>
<td class="signup_label label_username">
Usuario</td>
<td>
<input type="text" id="signup_username" maxlength="20" name="signup_username" value="" class="input_text"/><br />
<?php if (isset($error_usuario)) { echo $error_usuario; } ?></td>
</tr>
<tr>
<td class="signup_label label_password">
Contraseña</td>
<td>
<input type="password" maxlength="20" name="signup_password" class="input_text"/>
<br /><?php if (isset($error_contraseña)) { echo $error_contraseña; } ?></td>
</tr>
<tr>
<td class="signup_label label_passwordRepeat">
Confirmar contraseña</td>
<td>
<input type="password" maxlength="20" name="signup_passwordRepeat" class="input_text"/><br /><?php if (isset($error_rcontraseña)) { echo $error_rcontraseña; } ?></td>
</tr>
<tr>
<td class="signup_label label_email">
E-Mail</td>
<td>
<input type="text" name="signup_email" class="input_textLong" /><br /><?php if (isset($error_email)) { echo $error_email; } ?></td>
</tr>
<tr>
<td class="signup_label label_instances">
Servidor de juego</td>
<td>
<select name="signup_servidor" class="input_selectInstance" id="signup_servidor" tabindex="32767" onChange="changeInstance(this.value);" >
  <option value="1">España 1</option>
</select></td>
</tr>
<tr>
<td class="signup_label label_birthday">
Fecha de nacimiento</td>
<td>
<select name="signup_birthdayDay" class="input_selectDay">
<option value="01-" selected="selected">01</option>
<option value="02-">02</option>
<option value="03-">03</option>
<option value="04-">04</option>
<option value="05-">05</option>
<option value="06-">06</option>
<option value="07-">07</option>
<option value="08-">08</option>
<option value="09-">09</option>
<option value="10-">10</option>
<option value="11-">11</option>
<option value="12-">12</option>
<option value="13-">13</option>
<option value="14-">14</option>
<option value="15-">15</option>
<option value="16-">16</option>
<option value="17-">17</option>
<option value="18-">18</option>
<option value="19-">19</option>
<option value="20-">20</option>
<option value="21-">21</option>
<option value="22-">22</option>
<option value="23-">23</option>
<option value="24-">24</option>
<option value="25-">25</option>
<option value="26-">26</option>
<option value="27-">27</option>
<option value="28-">28</option>
<option value="29-">29</option>
<option value="30-">30</option>
<option value="31-">31</option>
</select>.<select name="signup_birthdayMonth" class="input_selectMonth">
<option value="01-" selected="selected">01</option>
<option value="02-">02</option>
<option value="03-">03</option>
<option value="04-">04</option>
<option value="05-">05</option>
<option value="06-">06</option>
<option value="07-">07</option>
<option value="08-">08</option>
<option value="09-">09</option>
<option value="10-">10</option>
<option value="11-">11</option>
<option value="12-">12</option>
</select>.<select name="signup_birthdayYear" class="input_selectYear">
<option value="2011">2011</option>
<option value="2010">2010</option>
<option value="2009">2009</option>
<option value="2008">2008</option>
<option value="2007">2007</option>
<option value="2006">2006</option>
<option value="2005">2005</option>
<option value="2004">2004</option>
<option value="2003">2003</option>
<option value="2002">2002</option>
<option value="2001">2001</option>
<option value="2000">2000</option>
<option value="1999">1999</option>
<option value="1998">1998</option>
<option value="1997">1997</option>
<option value="1996">1996</option>
<option value="1995">1995</option>
<option value="1994">1994</option>
<option value="1993">1993</option>
<option value="1992">1992</option>
<option value="1991">1991</option>
<option value="1990">1990</option>
<option value="1989">1989</option>
<option value="1988">1988</option>
<option value="1987">1987</option>
<option value="1986">1986</option>
<option value="1985">1985</option>
<option value="1984">1984</option>
<option value="1983">1983</option>
<option value="1982">1982</option>
<option value="1981">1981</option>
<option value="1980">1980</option>
<option value="1979">1979</option>
<option value="1978">1978</option>
<option value="1977">1977</option>
<option value="1976">1976</option>
<option value="1975">1975</option>
<option value="1974">1974</option>
<option value="1973">1973</option>
<option value="1972">1972</option>
<option value="1971">1971</option>
<option value="1970" selected="selected">1970</option>
<option value="1969">1969</option>
<option value="1968">1968</option>
<option value="1967">1967</option>
<option value="1966">1966</option>
<option value="1965">1965</option>
<option value="1964">1964</option>
<option value="1963">1963</option>
<option value="1962">1962</option>
<option value="1961">1961</option>
<option value="1960">1960</option>
<option value="1959">1959</option>
<option value="1958">1958</option>
<option value="1957">1957</option>
<option value="1956">1956</option>
<option value="1955">1955</option>
<option value="1954">1954</option>
<option value="1953">1953</option>
<option value="1952">1952</option>
<option value="1951">1951</option>
<option value="1950">1950</option>
<option value="1949">1949</option>
<option value="1948">1948</option>
<option value="1947">1947</option>
<option value="1946">1946</option>
<option value="1945">1945</option>
<option value="1944">1944</option>
<option value="1943">1943</option>
<option value="1942">1942</option>
<option value="1941">1941</option>
<option value="1940">1940</option>
<option value="1939">1939</option>
<option value="1938">1938</option>
<option value="1937">1937</option>
<option value="1936">1936</option>
<option value="1935">1935</option>
<option value="1934">1934</option>
<option value="1933">1933</option>
<option value="1932">1932</option>
<option value="1931">1931</option>
<option value="1930">1930</option>
<option value="1929">1929</option>
<option value="1928">1928</option>
<option value="1927">1927</option>
<option value="1926">1926</option>
<option value="1925">1925</option>
<option value="1924">1924</option>
<option value="1923">1923</option>
<option value="1922">1922</option>
<option value="1921">1921</option>
<option value="1920">1920</option>
<option value="1919">1919</option>
<option value="1918">1918</option>
<option value="1917">1917</option>
<option value="1916">1916</option>
<option value="1915">1915</option>
<option value="1914">1914</option>
<option value="1913">1913</option>
<option value="1912">1912</option>
</select></td>
</tr>
<tr>
<td class="signup_label label_country">
País</td>
<td>
<select id="signup_pais" name="signup_pais" onChange="loadProvinces(this.value);" class="input_selectCountry" >
<option value="Alemania">Alemania</option>
<option value="Argentina">Argentina</option>
<option value="Brasil">Brasil</option>
<option value="Chile">Chile</option>
<option value="Colombia">Colombia</option>
<option value="Ecuador">Ecuador</option>
<option value="España" selected="selected">España</option>
<option value="Estados Unidos">Estados Unidos</option>
<option value="Francia">Francia</option>
<option value="Italia">Italia</option>
<option value="México">México</option>
<option value="Perú">Perú</option>
<option value="Portugal">Portugal</option>
<option value="Venezuela">Venezuela</option>
</select></td>
</tr>
<input type="hidden" id="signup_winnings" name="signup_winnings" value="0" /><tr>
<td colspan="2">
<table class="signup signup_input">
    <tr>
        <td class="align_checkbox">
            <div class="">
                <input name="signup_termsAndCondition" type="checkbox" class="input_checkbox " value="1"  />
            </div>        </td>
        <td class="signup_label label_checkbox">
            <a class="signup_link" href="info.php?action=info&subAction=termsOfUse" target="_blank" style="text-decoration:underline">
    Acepto los TOS</a>.        </td>
    </tr>
</table><br /><?php if (isset($error_tos)) { echo $error_tos; } ?></td>
</tr>
<tr>
<td class="align_buttonRegister">
<input type="button" name="signup_button_back" id="signup_button_back" value="Atrás" class="input_button signup_back" onClick="location.href='index.php'"/></td>
<td class="align_buttonRegister">
<input type="submit" name="signup_submit" id="signup_submit" value="Registrarse" class="input_button signup_submit"  /></td>
</tr>
</table>
<input type="hidden" name="lang" value="es" />
<input type="hidden" name="MM_insert" value="signup_signup">
<input name="fecha_creacion" type="hidden" id="fecha_creacion" value="<?php echo date('d-m-Y'); ?>" />
</form>
</td>
</tr>
</table>

<div id="attentionLayer" style="visibility: hidden;" class="signup_attentionLayer">
  <div class="signup_attentionHeader">
    <a href="javascript: closeAttentionLayer();" class="signup_attentionClose"></a>
    <span class="signup_attentionTitle" >Atención</span>
  </div>
  <div class="singup_attentionMessages signup_attentionMessages">
    <p class="singup_attentionMessage signup_attentionMessage">Queremos informarte que los usuarios que viven en los siguientes estados no pueden participar en los concursos con premios en efectivo: Arkansas, Arizona, Connecticut, Florida, Delaware, Indiana, Iowa, Illinois, Luisiana, Maryland, Montana, Nebraska, Dakota del Sur, Carolina del Sur, Tennessee y Vermont. Esta limitación también se aplica a los usuarios que residen en una zona donde la participación en concursos con premios en efectivo está prohibida por la ley.</p><br />
  <table class="signup signup_input"><tr><td class="align_checkbox"><div class=""><input type="checkbox" id="signup_attentionCheck" name="signup_attentionCheck" value="1" class="input_checkbox" onChange="BPJS.$('signup_winnings').value = this.value; closeAttentionLayer();" /></div></td><td class="signup_label label_attentionCheck">Information read and accepted</td></tr></table>  </div>
</div>
<script language="javscript" type="text/javascript">
//<![CDATA[
function closeAttentionLayer() {
  document.getElementById('attentionLayer').style.visibility = 'hidden';}//]]>
</script>

<div id="infoLayer" class="signup_infoLayer" style="visibility: hidden">
  <div id="infoMessage" class="singup_infoMessages signup_infoMessages"></div>
</div>
<script language="javscript" type="text/javascript">
//<![CDATA[
function closeInfoLayer() {
  document.getElementById('infoLayer').style.visibility = 'hidden';}//]]>
</script>

</div>
        </div>
    </div>
    <div class="reg_foot"></div>

<script>
</script>

<!-- affiliateEndTag -->
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="https://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="1" height="1"><param name="allowScriptAccess" value="always" /><param name="movie" value="http://bpid.bigpoint.net/bpid.swf" /><param name="FlashVars" value="plv=%2FGameAPI.php%3Faction%3Dcore.bpid%26bpid%3D" /><param name="wmode" value="transparent" /><embed src="http://bpid.bigpoint.net/bpid.swf" width="1" height="1" allowScriptAccess="always" swLiveConnect="true" type="application/x-shockwave-flash" FlashVars="plv=%2FGameAPI.php%3Faction%3Dcore.bpid%26bpid%3D" wmode="transparent" /></object>
<script type="text/javascript">var _gaq = _gaq || [];_gaq.push(['_gat._anonymizeIp']);_gaq.push(['_setDomainName', 'none']);_gaq.push(['_setAllowLinker', true]);_gaq.push(['_setAllowHash', false]);_gaq.push(['_setCustomVar', 1, 'aid', '0', 2]);_gaq.push(['_setCustomVar', 2, 'aip', '', 2]);_gaq.push(['_setCustomVar', 3, 'ait', '', 2]);_gaq.push(['_setCustomVar', 4, 'areaID', 'external.signup', 2]);_gaq.push(['_setAccount', 'UA-1848713-1']);_gaq.push(['_trackPageview', '/index.es?action=externalSignup&areaID=external.signup']);_gaq.push(['_setAccount', 'UA-17685913-1']);_gaq.push(['_trackPageview', '/index.es?action=externalSignup&areaID=external.signup']);(function() {var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;ga.src = 'http://www.google-analytics.com/ga.js';var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);})();</script>

</body>
</html>
5. open internalCompanyChoose.php delete all and paste this :

PHP Code:
<?php require_once('Connections/DO.php'); ?>
<?php
if (!isset($_SESSION)) {
  @
session_start();
}
$MM_authorizedUsers "";
$MM_donotCheckaccess "true";

// *** Restrict Access To Page: Grant or deny access to this page
function isAuthorized($strUsers$strGroups$UserName$UserGroup) { 
  
// For security, start by assuming the visitor is NOT authorized. 
  
$isValid False

  
// When a visitor has logged into this site, the Session variable MM_Username set equal to their username. 
  // Therefore, we know that a user is NOT logged in if that Session variable is blank. 
  
if (!empty($UserName)) { 
    
// Besides being logged in, you may restrict access to only certain users based on an ID established when they login. 
    // Parse the strings into arrays. 
    
$arrUsers Explode(","$strUsers); 
    
$arrGroups Explode(","$strGroups); 
    if (
in_array($UserName$arrUsers)) { 
      
$isValid true
    } 
    
// Or, you may restrict access to only certain users based on their username. 
    
if (in_array($UserGroup$arrGroups)) { 
      
$isValid true
    } 
    if ((
$strUsers == "") && true) { 
      
$isValid true
    }
  } 
  return 
$isValid
}

$MM_restrictGoTo "index.php";
if (!((isset(
$_SESSION['MM_Username'])) && (isAuthorized("",$MM_authorizedUsers$_SESSION['MM_Username'], $_SESSION['MM_UserGroup'])))) {   
  
$MM_qsChar "?";
  
$MM_referrer $_SERVER['PHP_POST'];
  if (
strpos($MM_restrictGoTo"?")) $MM_qsChar "&";
  if (isset(
$QUERY_STRING) && strlen($QUERY_STRING) > 0
  
$MM_referrer .= "?" $QUERY_STRING;
  
$MM_restrictGoTo $MM_restrictGoTo$MM_qsChar "accesscheck=" urlencode($MM_referrer);
  
header("Location: "$MM_restrictGoTo);
  echo 
"<p>Espere por favor...</p>";
  exit;
}
?>
<?php
if (isset( $_SERVER['PHP_POST']))
{
  
$editFormAction $_SERVER['PHP_POST'];
}
else
{
  
$editFormAction null;
}
if (isset(
$_SERVER['QUERY_STRING'])) {
  
$editFormAction .= "?" htmlentities($_SERVER['QUERY_STRING']);
}

if ((isset(
$_POST["MM_update"])) && ($_POST["MM_update"] == "cambiarEmpresaMMO")) {
  
$updateSQL sprintf("UPDATE cuentas SET empresa=%s WHERE id=%s",
                       
GetSQLValueString($_POST['empresaMMO'], "text"),
                       
GetSQLValueString($_POST['id'], "int"));

  
mysql_select_db($database_DO$DO);
  
$Result1 mysql_query($updateSQL$DO) or die(mysql_error());

  
$updateGoTo "indexInternal.php";
  if (isset(
$_SERVER['QUERY_STRING'])) {
    
$updateGoTo .= (strpos($updateGoTo'?')) ? "&" "?";
    
$updateGoTo .= $_SERVER['QUERY_STRING'];
  }
  @
header(sprintf("Location: %s"$updateGoTo));
}

if ((isset(
$_POST["MM_update"])) && ($_POST["MM_update"] == "cambiarEmpresaEIC")) {
  
$updateSQL2 sprintf("UPDATE cuentas SET empresa=%s WHERE id=%s",
                       
GetSQLValueString($_POST['empresaEIC'], "text"),
                       
GetSQLValueString($_POST['id'], "int"));

  
mysql_select_db($database_DO$DO);
  
$Result2 mysql_query($updateSQL2$DO) or die(mysql_error());

  
$updateGoTo "indexInternal.php";
  if (isset(
$_SERVER['QUERY_STRING'])) {
    
$updateGoTo .= (strpos($updateGoTo'?')) ? "&" "?";
    
$updateGoTo .= $_SERVER['QUERY_STRING'];
  }
  @
header(sprintf("Location: %s"$updateGoTo));
}

if ((isset(
$_POST["MM_update"])) && ($_POST["MM_update"] == "cambiarEmpresaVRU")) {
  
$updateSQL3 sprintf("UPDATE cuentas SET empresa=%s WHERE id=%s",
                       
GetSQLValueString($_POST['empresaVRU'], "text"),
                       
GetSQLValueString($_POST['id'], "int"));

  
mysql_select_db($database_DO$DO);
  
$Result3 mysql_query($updateSQL3$DO) or die(mysql_error());

  
$updateGoTo "indexInternal.php";
  if (isset(
$_SERVER['QUERY_STRING'])) {
    
$updateGoTo .= (strpos($updateGoTo'?')) ? "&" "?";
    
$updateGoTo .= $_SERVER['QUERY_STRING'];
  }
  @
header(sprintf("Location: %s"$updateGoTo));
}

$colname_Cuenta "-1";
if (isset(
$_SESSION['MM_Username'])) {
  
$colname_Cuenta = (get_magic_quotes_gpc()) ? $_SESSION['MM_Username'] : addslashes($_SESSION['MM_Username']);
}
mysql_select_db($database_DO$DO);
$query_Cuenta sprintf("SELECT * FROM cuentas WHERE usuario = '%s'"$colname_Cuenta);
$Cuenta mysql_query($query_Cuenta$DO) or die(mysql_error());
$row_Cuenta mysql_fetch_assoc($Cuenta);
$totalRows_Cuenta mysql_num_rows($Cuenta);
?>
<?php   
if(empty($row_Cuenta['empresa']) || $row_Cuenta['empresa'] == ""){
  }else{
  echo 
"<script>window.location='indexInternal.php'</script>";
  }
?>
<?php 
include("includes/head.tpl"); ?>
<?php 
include("includes/variables.php"); ?>
    <style type="text/css" media="screen">  @import "css/darkorbit.css"; </style>
    <link rel="stylesheet" media="all" href="css/internalCompanyChoose.css" />
        
    <script src="js/function.js" type="text/javascript"></script>
    <script type="text/javascript">
        // remote scripting library
        // (c) copyright 2005 modernmethod, inc
        var sajax_debug_mode = false;
        var sajax_request_type = "POST";
        var sajax_target_id = "";
        var sajax_failure_redirect = "";

        function sajax_debug(text) {
            if (sajax_debug_mode)
                alert(text);
        }

         function sajax_init_object() {
             sajax_debug("sajax_init_object() called..")

             var A;

             var msxmlhttp = new Array(
                'Msxml2.XMLHTTP.5.0',
                'Msxml2.XMLHTTP.4.0',
                'Msxml2.XMLHTTP.3.0',
                'Msxml2.XMLHTTP',
                'Microsoft.XMLHTTP');
            for (var i = 0; i < msxmlhttp.length; i++) {
                try {
                    A = new ActiveXObject(msxmlhttp[i]);
                } catch (e) {
                    A = null;
                }
            }

            if(!A && typeof XMLHttpRequest != "undefined")
                A = new XMLHttpRequest();
            if (!A)
                sajax_debug("Could not create connection object.");
            return A;
        }

        var sajax_requests = new Array();

        function sajax_cancel() {
            for (var i = 0; i < sajax_requests.length; i++)
                sajax_requests[i].abort();
        }

        function sajax_do_call(func_name, args) {
            var i, x, n;
            var uri;
            var post_data;
            var target_id;

            sajax_debug("in sajax_do_call().." + sajax_request_type + "/" + sajax_target_id);
            target_id = sajax_target_id;
            if (typeof(sajax_request_type) == "undefined" || sajax_request_type == "")
                sajax_request_type = "GET";

            uri = "/sajaxAPI.php?sid=33c7d82f5d06f7acfe1bde79fdc71455";
            if (sajax_request_type == "GET") {

                if (uri.indexOf("?") == -1)
                    uri += "?rs=" + escape(func_name);
                else
                    uri += "&rs=" + escape(func_name);
                uri += "&rst=" + escape(sajax_target_id);
                uri += "&rsrnd=" + new Date().getTime();

                for (i = 0; i < args.length-1; i++)
                    uri += "&rsargs[]=" + escape(args[i]);

                post_data = null;
            }
            else if (sajax_request_type == "POST") {
                post_data = "rs=" + escape(func_name);
                post_data += "&rst=" + escape(sajax_target_id);
                post_data += "&rsrnd=" + new Date().getTime();

                for (i = 0; i < args.length-1; i++)
                    post_data = post_data + "&rsargs[]=" + escape(args[i]);
            }
            else {
                alert("Illegal request type: " + sajax_request_type);
            }

            x = sajax_init_object();
            if (x == null) {
                if (sajax_failure_redirect != "") {
                    location.href = sajax_failure_redirect;
                    return false;
                } else {
                    sajax_debug("NULL sajax object for user agent:\n" + navigator.userAgent);
                    return false;
                }
            } else {
                x.open(sajax_request_type, uri, true);
                // window.open(uri);

                sajax_requests[sajax_requests.length] = x;

                if (sajax_request_type == "POST") {
                    x.setRequestHeader("Method", "POST " + uri + " HTTP/1.1");
                    x.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
                }

                x.onreadystatechange = function() {
                    if (x.readyState != 4)
                        return;

                    sajax_debug("received " + x.responseText);

                    var status;
                    var data;
                    var txt = x.responseText.replace(/^\s*|\s*$/g,"");
                    status = txt.charAt(0);
                    data = txt.substring(2);

                    if (status == "") {
                        // let's just assume this is a pre-response bailout and let it slide for now
                    } else if (status == "-")
                        alert("Error: " + data);
                    else {
                        if (target_id != "")
                            document.getElementById(target_id).innerHTML = eval(data);
                        else {
                            try {
                                var callback;
                                var extra_data = false;
                                if (typeof args[args.length-1] == "object") {
                                    callback = args[args.length-1].callback;
                                    extra_data = args[args.length-1].extra_data;
                                } else {
                                    callback = args[args.length-1];
                                }
                                callback(eval(data), extra_data);
                            } catch (e) {
                                sajax_debug("Caught error " + e + ": Could not eval " + data );
                            }
                        }
                    }
                }
            }

            sajax_debug(func_name + " uri = " + uri + "/post = " + post_data);
            x.send(post_data);
            sajax_debug(func_name + " waiting..");
            delete x;
            return true;
        }

        
        // wrapper for searchUser
        function x_searchUser() {
            sajax_do_call("searchUser",
                x_searchUser.arguments);
        }

        
        // wrapper for getInstances
        function x_getInstances() {
            sajax_do_call("getInstances",
                x_getInstances.arguments);
        }

        
        // wrapper for updateAutoUpdate
        function x_updateAutoUpdate() {
            sajax_do_call("updateAutoUpdate",
                x_updateAutoUpdate.arguments);
        }

        
        // wrapper for changeBookmarkStatus
        function x_changeBookmarkStatus() {
            sajax_do_call("changeBookmarkStatus",
                x_changeBookmarkStatus.arguments);
        }

        
        // wrapper for closeNewsUpdate
        function x_closeNewsUpdate() {
            sajax_do_call("closeNewsUpdate",
                x_closeNewsUpdate.arguments);
        }

        
        // wrapper for closeGuestLayer
        function x_closeGuestLayer() {
            sajax_do_call("closeGuestLayer",
                x_closeGuestLayer.arguments);
        }

        
        // wrapper for changeCash_UK
        function x_changeCash_UK() {
            sajax_do_call("changeCash_UK",
                x_changeCash_UK.arguments);
        }

        </script>
    <script type="text/javascript" charset="UTF-8">
/* <![CDATA[ */
try { if (undefined == xajax.config) xajax.config = {}; } catch (e) { xajax = {}; xajax.config = {}; };
xajax.config.requestURI = "/xajaxAPI.php?sid=33c7d82f5d06f7acfe1bde79fdc71455";
xajax.config.statusMessages = false;
xajax.config.waitCursor = true;
xajax.config.version = "xajax 0.5";
xajax.config.legacy = false;
xajax.config.defaultMode = "asynchronous";
xajax.config.defaultMethod = "POST";
/* ]]> */
</script>
<script type="text/javascript" src="http://darkorbit.l3.cdn.bigpoint.net/js/xajax_js/xajax_core.js?__cv=7d18ea9cdeb1f1b391cff64cb943d300" charset="UTF-8"></script>
<script type="text/javascript" charset="UTF-8">
/* <![CDATA[ */
window.setTimeout(
 function() {
  var scriptExists = false;
  try { if (xajax.isLoaded) scriptExists = true; }
  catch (e) {}
  if (!scriptExists) {
   alert("Error: the xajax Javascript component could not be included. Perhaps the URL is incorrect?\nURL: http://darkorbit.l3.cdn.bigpoint.net/js/xajax_js/xajax_core.js?__cv=7d18ea9cdeb1f1b391cff64cb943d300");
  }
 }, 2000);
/* ]]> */
</script>

<script type='text/javascript' charset='UTF-8'>
/* <![CDATA[ */
xajax_showQuestDetails = function() { return xajax.request( { xjxfun: 'showQuestDetails' }, { parameters: arguments } ); };
xajax_acceptQuest = function() { return xajax.request( { xjxfun: 'acceptQuest' }, { parameters: arguments } ); };
xajax_abortQuest = function() { return xajax.request( { xjxfun: 'abortQuest' }, { parameters: arguments } ); };
xajax_disableTradeLayer = function() { return xajax.request( { xjxfun: 'disableTradeLayer' }, { parameters: arguments } ); };
xajax_saveTempResolution = function() { return xajax.request( { xjxfun: 'saveTempResolution' }, { parameters: arguments } ); };
xajax_clientResolutionChanged = function() { return xajax.request( { xjxfun: 'clientResolutionChanged' }, { parameters: arguments } ); };
xajax_saveOldClientUsage = function() { return xajax.request( { xjxfun: 'saveOldClientUsage' }, { parameters: arguments } ); };
xajax_buySkylabRobot = function() { return xajax.request( { xjxfun: 'buySkylabRobot' }, { parameters: arguments } ); };
xajax_skillTreePurchaseSkillReset = function() { return xajax.request( { xjxfun: 'skillTreePurchaseSkillReset' }, { parameters: arguments } ); };
xajax_skillTreePurchaseLevelUp = function() { return xajax.request( { xjxfun: 'skillTreePurchaseLevelUp' }, { parameters: arguments } ); };
xajax_nanoTechFactoryShowBuff = function() { return xajax.request( { xjxfun: 'nanoTechFactoryShowBuff' }, { parameters: arguments } ); };
xajax_pilotSheet = function() { return xajax.request( { xjxfun: 'pilotSheet' }, { parameters: arguments } ); };
xajax_pilotInvite = function() { return xajax.request( { xjxfun: 'pilotInvite' }, { parameters: arguments } ); };
xajax_pilotInviteIncentives = function() { return xajax.request( { xjxfun: 'pilotInviteIncentives' }, { parameters: arguments } ); };
xajax_tooltipAjaxHandler = function() { return xajax.request( { xjxfun: 'tooltipAjaxHandler' }, { parameters: arguments } ); };
/* ]]> */
</script>


    <script type="text/javascript" src="http://darkorbit.l3.cdn.bigpoint.net/js/scriptaculous/prototype.js?__cv=b96240995f0075a55546ed3038010100"></script>
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
        <link rel="SHORTCUT ICON" href="favicon.ico"  type="image/x-icon">
    
    <script language="javascript">

    var SID='dosid=33c7d82f5d06f7acfe1bde79fdc71455';
    var rid = 'e702228c39cd5228cd1dbac892b60c45';
    var errorMsg = 'Por favor, ¡desactiva tu bloqueador de popups!';
    var windowSpacemap = null;

            var playerWantsOldClient = false;
    
    
    var determinedClientResolution = {id: '4', width: 1280, height: 900};

    function openFlashClient(resolution, factionID)
    {
        try {
            if (typeof(window.opener) == 'object' && window.opener.thisIsReal) {
                window.opener.focus();
                return;
            }
        } catch (e) {}

        if(playerWantsOldClient) {
            // open client in old-fashioned way...
            var map = 'internalMap';
        } else {
            // open new client with determined resolution
            resolution = determinedClientResolution;
            var map = 'internalMapRevolution';
        }

        factionString = '';
        if (factionID >= 1 && factionID <= 3) {
            factionString = '&factionID='+factionID;
        }

        var offset = {width: 0, height: 0};

        if(windowSpacemap == null || windowSpacemap.closed) {
            // if there no window with name "windowSpacemap" or its closed, it would be reloaded
            url = 'indexInternal.es?action=' + map + '&' + SID + factionString;
            windowSpacemap = window.open('', 'spacemap', 'width=' + (resolution.width + offset.width) + ',height=' + (resolution.height + offset.height) + ',menubar=no,location=no,status=yes,toolbar=no');
            // if location empty, then load client
            if (windowSpacemap.location.search.length == 0) {
                    // load spacemap (url)
                    windowSpacemap.location = url;
            }
        }
        // focus the spacemap / get it in front
        windowSpacemap.focus();

        //alert('PopUp-Size: ' + String(resolution.width + offset.width) + 'x' + String(resolution.height + offset.height));

        if (!windowSpacemap) {
            alert(translate(errorMsg));
        }
        try {
            windowSpacemap.thisIsReal = true;
            window.opener = windowSpacemap;
        } catch (e) {}
    }
    

    
    function switchOldClientUsage(boolValue)
    {
        playerWantsOldClient = boolValue;
        xajax_saveOldClientUsage((boolValue ? 1 : 0));
    }
    

    
    
    function checkResolution()
    {
        var clientWidth = window.screen.width;
        var clientHeight = window.screen.height;

        var resolutions = {'0' : {id : '0', width : 820, height : 600},'1' : {id : '1', width : 1024, height : 576},'2' : {id : '2', width : 1024, height : 720},'3' : {id : '3', width : 1280, height : 720},'4' : {id : '4', width : 1280, height : 900},'5' : {id : '5', width : 750, height : 600}};

        var setResId = 4;
        var setResWidth = 1280;
        var setResHeight = 900;
        // AID-related size-offset
        var offset = {width: 0, height: 0};
        // Default-screen-related size-offset
        var staticOffset = {width: 0, height: 100};

        // find best resolution
        var fallbackResId = '0';
        var resId = -1;
        var h = -1;
        var w = -1;
        var possibleResolutions = '';


        for(var rid in resolutions) {
            var res = resolutions[rid];
            var totalHeight = res.height + offset.height + staticOffset.height
            var totalWidth = res.width + offset.width + staticOffset.width
            if(totalHeight <= clientHeight && totalWidth <= clientWidth) {
                // this resolution would fit on the clients screen
                if(res.width > w || (res.width >= w && res.height > h)) {
                    resId = rid;
                    h = res.height;
                    w = res.width;
                    if (possibleResolutions == '') {
                        possibleResolutions += rid;
                    } else {
                        possibleResolutions += ','+rid;
                    }
                }
            }
        }

        if(resId != -1) {
            if(setResId != -1 && resolutions[setResId].height < h) {
                // users setting is smaller than optimum, but fits anyway...
                resId = setResId;
            }
        } else {
            // resolution too small or something
            // else went wrong - use fallback
            resId = fallbackResId;
        }
        determinedClientResolution = resolutions[resId];

        //alert('Detected resolution: ' + String(clientWidth) + 'x' + String(clientHeight) + ' --- determined resolution: ' + String(determinedClientResolution.width) + 'x' + String(determinedClientResolution.height));
        xajax_saveTempResolution(String(resId), possibleResolutions);
    }
    checkResolution();
    
    
    
    function openMiniMap(wdt, hgt, factionID) {
        // this function is now used as a hook
        // for the old client...
        openFlashClient({id: '-1', width: wdt, height: hgt}, factionID);
    }
    
    </script>
<script type="text/javascript">if (top.location.host != self.location.host) top.location = self.location;</script><!-- affiliateHeadTag -->
<link rel="meta" href="http://int14.darkorbit.bigpoint.com/sharedpages/icra/labels.php" type="application/rdf+xml" title="ICRA labels" />
<meta http-equiv="pics-Label" content='(pics-1.1 "http://www.icra.org/pics/vocabularyv03/" l gen true for "http://int14.darkorbit.bigpoint.com" r (n 0 s 0 v 0 l 1 oa 0 ob 0 oc 0 od 1 oe 0 of 0 og 0 oh 0 c 1))' />

</head>
<body>

<!-- affiliateStartTag -->
<!-- Login Tag (-1) --> 


<script type="text/javascript">

function changeImage(divID) {
    for(i=1;i<=3;i++) {
        if (i == divID) {
            $("logo_"+i).style.backgroundImage = 'url(do_img/global/companyChoose/logo_'+i+'_active.gif)';
            $("text_"+i).style.color = '#FFFFFF';
        } else {
            $("logo_"+i).style.backgroundImage = '';
            $("text_"+i).style.color = '#909090';
        }
    }
}

function closeAll() {
    for(i=1;i<=3;i++) {
        $("logo_"+i).style.backgroundImage = '';
        $("text_"+i).style.color = '#909090';
    }
}

function showFirstEntry(factionID) {
    openMiniMap(820,653,factionID);
}

</script>

<div id="container_main" class="fliess10px-weiss">

    <div id="headline">SELECCIONA TU EMPRESA</div>
<form action="<?php echo $editFormAction?>" method="POST" name="cambiarEmpresaMMO" id="cambiarEmpresaMMO">
    <a href="<?php echo $editFormAction?>" onFocus="this.blur();">
    <div id="company_1" onMouseOver="changeImage(1);" onMouseOut="closeAll();">
        <div id="logo_1" onMouseOver="changeImage(1);">
          
        </div>
        <div id="text_1" class="faction_info">La Mars-Mining-Operation se encarga de explotar los recursos de energía del universo. Los beneficios lo son todo.<br /><br /> ¿Eres tan poco escrupuloso como tu empresa? Entonces, este es tu sitio. Sigue tu objetivo y entra en los anales de la historia del universo.</div>
        <div id="button_1" class="font_choose"><input type="image" src="do_img/global/companyChoose/seleccionar.png"/>
        </div>
        <input name="empresaMMO" type="hidden" id="empresaMMO" value="1" />
    <input name="id" type="hidden" value="<?php echo $row_Cuenta['id']; ?>" />
    <input type="hidden" name="MM_update" value="cambiarEmpresaMMO" />
    </div>
    </a>
</form>
<form method="post" name="cambiarEmpresaEIC" id="cambiarEmpresaEIC">
    <a href="<?php echo $editFormAction?>" onFocus="this.blur();">
    <div id="company_2" onMouseOver="changeImage(2);" onMouseOut="closeAll();">
        <div id="logo_2" onMouseOver="changeImage(2);"></div>
        <div id="text_2" class="faction_info">Aquí gobierna el hombre. Como piloto para la Earth-Industries-Corporation formas parte de una comunidad. <br /><br /> Se te conceden ciertos privilegios, pero debes luchar por el objetivo de tu empresa. En equipo serás el mejor piloto espacial de todos los tiempos.</div>
        <div id="button_2" class="font_choose"><input type="image" src="do_img/global/companyChoose/seleccionar.png"/></div>
    <input name="empresaEIC" type="hidden" id="empresaEIC" value="2" />
    <input name="id" type="hidden" value="<?php echo $row_Cuenta['id']; ?>" />
    <input type="hidden" name="MM_update" value="cambiarEmpresaEIC" />
    </div>
    </a>
</form>
<form method="post" name="cambiarEmpresaVRU" id="cambiarEmpresaVRU">
    <a href="<?php echo $editFormAction?>" onFocus="this.blur();">
    <div id="company_3" onMouseOver="changeImage(3);" onMouseOut="closeAll();">
        <div id="logo_3" onMouseOver="changeImage(3);"></div>
        <div id="text_3" class="faction_info">La Venus Resource Unlimited se preocupa por su gente. Asimismo, se encargan de proteger la galaxia y los habitantes que viven en ella. <br /><br />Trabaja duro y consigue ocupar un lugar en los anales de la historia como un glorioso piloto espacial.</div>
        <div id="button_3" class="font_choose"><input type="image" src="do_img/global/companyChoose/seleccionar.png"/></div>
    <input name="empresaVRU" type="hidden" id="empresaVRU" value="3" />
    <input name="id" type="hidden" value="<?php echo $row_Cuenta['id']; ?>" />
    <input type="hidden" name="MM_update" value="cambiarEmpresaVRU" />
    </div>
    </a>
  </form>
</div>

<!-- affiliateEndTag -->
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="https://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="1" height="1"><param name="allowScriptAccess" value="always" /><param name="movie" value="http://bpid.bigpoint.net/bpid.swf" /><param name="FlashVars" value="plv=%2FGameAPI.php%3Faction%3Dcore.bpid%26bpid%3D" /><param name="wmode" value="transparent" /><embed src="http://bpid.bigpoint.net/bpid.swf" width="1" height="1" allowScriptAccess="always" swLiveConnect="true" type="application/x-shockwave-flash" FlashVars="plv=%2FGameAPI.php%3Faction%3Dcore.bpid%26bpid%3D" wmode="transparent" /></object>
<script type="text/javascript">var _gaq = _gaq || [];_gaq.push(['_gat._anonymizeIp']);_gaq.push(['_setDomainName', 'none']);_gaq.push(['_setAllowLinker', true]);_gaq.push(['_setAllowHash', false]);_gaq.push(['_setCustomVar', 1, 'aid', '0', 2]);_gaq.push(['_setCustomVar', 2, 'aip', '', 2]);_gaq.push(['_setCustomVar', 3, 'ait', '', 2]);_gaq.push(['_setCustomVar', 4, 'areaID', 'internal.companyChoose', 2]);_gaq.push(['_setAccount', 'UA-1848713-1']);_gaq.push(['_trackPageview', '/indexInternal.es?action=internalCompanyChoose&areaID=internal.companyChoose']);_gaq.push(['_setAccount', 'UA-17685913-1']);_gaq.push(['_trackPageview', '/indexInternal.es?action=internalCompanyChoose&areaID=internal.companyChoose']);(function() {var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;ga.src = 'http://www.google-analytics.com/ga.js';var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);})();</script>

</body>
</html>
<?php
mysql_free_result
($Cuenta);
?>


WHYYYYYYYYYYYY???????
Professional* is offline  
Thanks
1 User
Old 04/24/2013, 23:37   #173
 
elite*gold: 0
Join Date: Jun 2011
Posts: 424
Received Thanks: 238
Quote:
Originally Posted by Professional* View Post


WHYYYYYYYYYYYY???????
db uses the default one and remove the patch
lkInGx is offline  
Old 04/24/2013, 23:42   #174
 
elite*gold: 0
Join Date: Mar 2013
Posts: 9
Received Thanks: 0
alter bin ich der einzigste der ÜBERHAUPTKEINPLAN hat wie das funktioniert ?
Prototyppp is offline  
Old 04/24/2013, 23:43   #175
 
arvatadryan's Avatar
 
elite*gold: 9
Join Date: Sep 2010
Posts: 433
Received Thanks: 199
linkpad i got this

#1060 - Duplicate column name 'slot2'

when im trying execute this

ALTER TABLE `cuentas` ADD `slot2` VARCHAR( 999 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL , ADD `slot3` VARCHAR( 999 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, CHANGE `inventario` `inventario` VARCHAR( 999 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '|RM1,100;2,150;3,200;10,250;11,300;12,300;13,500; 14,100;15,30' COMMENT 'minerales|...'
arvatadryan is offline  
Old 04/24/2013, 23:44   #176
 
elite*gold: 0
Join Date: Jan 2011
Posts: 1,130
Received Thanks: 3,260
Quote:
Originally Posted by periaz View Post
@player_elite : Do you use wamp or xampp ? can you take a screenshot of your folder www (or htdocs) pls !!
Thank you
Personally, I use Wamp.
I helped 5 guys for now. Sorry for other but I must go sleeping. But tomorrow -Pesho
shooteram is offline  
Old 04/24/2013, 23:46   #177
 
elite*gold: 0
Join Date: Jun 2011
Posts: 424
Received Thanks: 238
Quote:
Originally Posted by lkInGx View Post
Bad .htacces..

Help..
lkInGx is offline  
Old 04/24/2013, 23:48   #178
 
dushkov's Avatar
 
elite*gold: 0
Join Date: Oct 2010
Posts: 41
Received Thanks: 1
All the npc are following me, there isn't "hangar", can't change ship or grade.. so much buggued, i put it in junk. x)
dushkov is offline  
Old 04/24/2013, 23:51   #179
 
elite*gold: 0
Join Date: Apr 2013
Posts: 53
Received Thanks: 147
Quote:
Originally Posted by dushkov View Post
All the npc are following me, there isn't "hangar", can't change ship or grade.. so much buggued, i put it in junk. x)
if you want to change your ship, go to the do_es database,
in cuentas, search for your account and change the "nave" and "gfx" values.
nave for the ship, gfx for the design. (gfx = number of the swf file)
and for the grade, change the value nammed "rango" (21 for the admin)
xokixoki is offline  
Old 04/24/2013, 23:54   #180
 
dushkov's Avatar
 
elite*gold: 0
Join Date: Oct 2010
Posts: 41
Received Thanks: 1
i tried it, but when i'm logging in + on map, the old grad and ship are coming back in db..
dushkov is offline  
Closed Thread




All times are GMT +1. The time now is 08:15.


Powered by vBulletin®
Copyright ©2000 - 2025, 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 ©2025 elitepvpers All Rights Reserved.