antiblock
Rodnia | Alpha & Omega

Arcadox626

Membro
  • Content Count

    120
  • Joined

  • Last visited

Everything posted by Arcadox626

  1. por favor me ajudem coloquei um item no item shop certinho ele entro no sql dai qnd vo compra apareçe "O item especificado não existe." alguem poderia me ajudar
  2. alguem me ajuda ai to usando um item shop q ja existe ai na cyber e qnd eu clico na categoria da esse erro Parse error: syntax error, unexpected '=' in C:xampphtdocsSitepagesiscategorie.php on line 195 Aqui a linha <div class="priceValue"><?php echo= $iteme->buc; ?> buc doar:<span class="price"> <?php echo $iteme->pret; ?>MD</span></div> desde já obrigado nao intendo quase nada de php
  3. Alguem sabe quais quest pode NÃO apagar da pasta letter metin2?
  4. obrigado pela dica vou guardar essa caso alguem resolva e testar essa q vc me recomendou xD
  5. Por favor me ajudem ai to fazendo um site peguei um pronto e to arrumando coloquei o ip tudo certinho dai vo faze uma conta da erro por favor me ajuda ta ai a php Download: https://www.mediafire.com/?uc4739odn4hlq80 Scan: https://www.virustotal.com/pt/file/d2bac362c1b21fbbae765c721626400caf4da45c022653c1a7096ca376892b2e/analysis/1398204444/ Por favor me ajudem desde já agradeco
  6. olha aki o script do registro <div id="main_content"> <h2></h2> <div id="main_content_mid"> <div id="main_con"> <?PHP $regCoins = 0; // Startcoins $laufZeit = 365; //Tage autoloot,safebox $calcLZ = (60*60*24)*365; $expireStamp = time()+$calcLZ; $expireDate = date("Y-m-d H:i:s",$expireStamp); if($serverSettings['register_on'] && (!isset($_SESSION['user_admin']) && !checkInt($_SESSION['user_admin']) && !$_SESSION['user_admin']>=0)) { if(isset($_POST['submit']) && $_POST['submit']=="registrieren") { if((checkAnum($_POST['account']) && strlen($_POST['account'])>=8 && strlen($_POST['account'])<=16) && checkAnum($_POST['pass']) && strlen($_POST['pass'])>=8 && strlen($_POST['pass2'])<=16 && !empty($_POST['pass2']) && (checkName($_POST['uname']) && strlen($_POST['uname'])>=3 && strlen($_POST['uname'])<=20) && $_POST['pass']==$_POST['pass2'] && checkMail($_POST['email']) && strlen($_POST['email'])<=40 && $_POST['captcha']==$_SESSION['captcha_id'] && $_POST['email']==$_POST['email2'] && (checkAnum($_POST['sicherheitsa']) && strlen($_POST['sicherheitsa'])>=3 && strlen($_POST['sicherheitsa'])<=16) && checkInt($_POST['sicherheitsf']) && (checkAnum($_POST['loeschcode']) && strlen($_POST['loeschcode'])==7)) { $hashSF = md5($_POST['sicherheitsa']); $sfNum = mysql_real_escape_string($_POST['sicherheitsf']); $lcode = mysql_real_escape_string($_POST['loeschcode']); $zuFall = rand(99999,999999999); $userpass=mysql_real_escape_string($_POST['pass']); $aktivHash = ($serverSettings['mail_activation']) ? md5($zuFall):''; $accountStatus = ($serverSettings['mail_activation']) ? 'BLOCK':'OK'; $sqlCmd = "INSERT INTO account.account (login,password,real_name,email,social_id,question1,answer1,create_time,status,coins,autoloot_expire,safebox_expire,web_aktiviert) VALUES ('".$_POST['account']."',PASSWORD('".$userpass."'),'".mysql_real_escape_string($_POST['uname'])."','".mysql_real_escape_string($_POST['email'])."','".$lcode."','".$sfNum."','".$hashSF."','".$sqlZeit."','".$accountStatus."','".$regCoins."','".$expireDate."','".$expireDate."','".$aktivHash."')"; $sqlQry = mysql_query($sqlCmd,$sqlServ); if($sqlQry) { $absender = $serverSettings['titel']." Registration"; $email = $serverSettings['reg_mail']; $empfaenger = $_POST['email']; $mail_body = "Hallo ".$_POST['uname'].", deine Registration auf ".$serverSettings['titel']." war erfolgreich! Um auch auf dem Server spielen zu können, musst du deinen Account aktivieren. Das kannst du über den folgenden Link tun: ".$serverSettings['url']."/index.php?s=login&do=aktivieren&hash=".$aktivHash." Deine Daten sind: Account: ".$_POST['account']." Passwort: ".$userpass." Löschcode: ".$lcode." Sicherheitsfrage: ".$sFrage[$sfNum]." Antwort: ".$_POST['sicherheitsa']." Viel Spaß beim Spielen, Dein ".$serverSettings['titel']."-Team Diese E-Mail wurde automatisch generiert. Bitte keine Antworten an diese Adresse schicken."; $titel = "Registrierung auf ".$serverSettings['titel']; $header = "X-Priority: 3n"; $header .= "X-Mailer: ".$serverSettings['titel']." Homepage Mailern"; $header .= "MIME-Version: 1.0n"; $header .= "From: ".$absender." <".$serverSettings['reg_mail'].">n"; $header .= "Reply-To: ".$serverSettings['reg_mail']."n"; $header .= "Content-Type: text/plain; charset=iso-8859-1n"; if($serverSettings['mail_activation']) { mail($empfaenger, $titel, $mail_body, $header); echo'<p class="meldung">Account erfolgreich angelegt. Bitte überprüfen Sie Ihr Postfach, um die Registrierung zu bestätigen.</p>'; } else { echo'<p class="meldung">Account erfolgreich angelegt. Sie können sich nun anmelden.</p>'; } } else { echo'<p class="meldung">Registrierung fehlgeschlagen: Der Account existiert bereits.</p>'; } } else { echo'<p class="meldung">Registrierung fehlgeschlagen: bitte alle Felder richtig angeben</p>'; } } ?> <p>Alle Felder sind Pflichtfelder und müssen ausgefüllt werden.<?PHP if($serverSettings['mail_activation']) { echo'<br/><b>Der Account wird per E-Mail aktiviert, also eine richtige E-Mail eingeben!</b>'; } ?></p> <form action="index.php?s=register" method="POST"> <table> <tr> <th class="topLine">Account:</th> <td class="tdunkel"><input type="text" name="account" maxlength="16" size="16"/> 8-16 Zeichen (nur a-Z,0-9)</td> </tr> <tr> <th class="topLine">Name:</th> <td class="thell"><input type="text" name="uname" maxlength="16" size="16"/> 3-20 Zeichen (nur a-Z,0-9)</td> </tr> <tr> <th class="topLine">Password:</th> <td class="tdunkel"><input type="password" name="pass" maxlength="16" size="16"/> 8-16 Zeichen (nur a-Z,0-9)</td> </tr> <tr> <th class="topLine">Password wiederholen:</th> <td class="thell"><input type="password" name="pass2" maxlength="16" size="16"/></td> </tr> <tr> <th class="topLine">E-Mail:</th> <td class="tdunkel"><input type="text" name="email" maxlength="50" size="25"/> max. 40 Zeichen</td> </tr> <tr> <th class="topLine">E-Mail wiederholen:</th> <td class="thell"><input type="text" name="email2" maxlength="50" size="25"/></td> </tr> <tr> <th class="topLine">Löschcode:</th> <td class="tdunkel"><input type="text" name="loeschcode" maxlength="7" size="7"/> 7 Zeichen (nur a-Z,0-9)</td> </tr> <tr> <th class="topLine">Sicherheitsfrage:</th> <td class="thell"> <select name="sicherheitsf"> <?PHP foreach($sFrage AS $fragew => $frage) { echo'<option value="'.$fragew.'">'.$frage.'</option>'; } ?> </select> <input type="text" name="sicherheitsa" maxlength="16" size="16"/> 3-16 Zeichen (nur a-Z,0-9) </td> </tr> <tr> <th class="topLine">Captcha:</th> <td class="tdunkel"><img src="./captcha/captcha.php" title="Captcha"/> <input type="text" name="captcha" maxlength="5" size="5"/></td> </tr> <tr> <th class="topLine" style="text-align:center;" colspan="2"><input type="submit" name="submit" value="registrieren"/> <input type="reset" value="zurücksetzen"/></th> </tr> </table> </form> <?PHP } else { echo'<p class="meldung">Die Registration ist deaktiviert oder Sie sind bereits angemeldet. Es kann kein weiterer Account erstellt werden.</p>'; } ?> </div> </div> <div id="main_content_bot"></div> </div>
  7. ok mais acho q nao seja o website peguei ele aki da cyber e nao reclamaram de nenhum bug n sei se é so aki ou outra pessoa teve o msm problema e nao se manifestou,, vc sabe alguma web boa com item shop e tals pra mim mecher?
  8. Continua a dar erro, mesmo assim obrigado
  9. Sim 100% ate porque nao apareçe nenhum aviso na pagina de registro ela so recarrega e nao acontece nada na account
  10. por enquanto vo fica com hamachi mais a frente vou coloca dedicado dai vou te problemas denovo xDa minha config esta assim <?PHP DEFINE('SQL_HOST', '25.197.45.100'); DEFINE('SQL_USER', 'ArkMetin2'); DEFINE('SQL_PASS', '126088'); DEFINE('SQL_HP_HOST', '25.197.45.100'); DEFINE('SQL_HP_USER', 'ArkMetin2'); DEFINE('SQL_HP_PASS', '126088'); DEFINE('SQL_HP_DB', 'account'); $serverSettings['titel_page']="ArkMetin2"; // Webseiten-Titel $serverSettings['titel']="ArkMetin2"; // Servername $serverSettings['url']="25.197.45.200:26"; // URL zur Seite (ohne letzten "/") $serverSettings['server_ip']=""; // Server-IP $serverSettings['register_on']=true; // Registration aktiviert (ja = true / nein = false) $serverSettings['mail_activation']=false; // Mailaktivierung (ja = true / nein = false) $serverSettings['page_entries']=30; // Einträge pro Seite $serverSettings['reg_mail']='[email protected]'; // E-Mail-Absender bei Registration $serverSettings['pass_mail']='[email protected]'; // E-Mail-Absender bei Passwortreset require("daten.inc.php"); ?>
  11. Coloquei o ip do mysql acabado em 100 é hamachi e pra mim logar no mysql usa-se 100 tem q colocar diferente?
  12. Não registra recarrega a page e nao acontece nada com a account do mysql
  13. Fui Adicionar deu erro Assertion failed function loadstatescript files questnpc.cpp line 99. Por Favor alguem me ajuda minhas files sao 2010 fiz tudo certinho
  14. Alguem sabe aonde fica a game-core de uma server files por favor me ajudem
  15. Cavalo nao esta a funcionar toma dc quando invoca