Jump to content

fenixplayscz

Inactive Member
  • Posts

    236
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

Posts posted by fenixplayscz

  1. Try this

     

    <?php
    if(isset($_POST['idrecover']) && $_POST['idrecover']=="Recuperar") {
        if (checkMail($_POST['idemail'])) {
            $email = mysql_real_escape_string($_POST['idemail']);
            $getUser = "SELECT login FROM account.account WHERE email='" . $email . "'";
            $qryUser = mysql_query($getUser);
    
            if (mysql_num_rows($qryUser) > 0) {
                // Set empty array
                $foundLogins = array();
                // get all User IDs with the given email
                while ($row = mysql_fetch_array($qryUser)) {
                    $foundLogins[] = $row['login'];
                }
                // config email
                $from = "[email protected]"; // email (from)
                $to = "[email protected]"; // email (to)
                $subject = "Subject"; // Subject
    
                $message = "Found the following IDs with the email " . $email . ": ";
                $comma_separated = implode(",", $foundLogins);
                $finalMessage = $message.$comma_separated."</br>";
    
                // set email header
                $headers = array();
                $headers[] = "MIME-Version: 1.0";
                $headers[] = "Content-type: text/plain; charset=iso-8859-1";
                $headers[] = "From: Sender Name <$from>";
                $headers[] = "Reply-To: Recipient Name <$from>";
                $headers[] = "Subject: {$subject}";
                $headers[] = "X-Mailer: PHP/" . phpversion();
    
                // send mail
                if (!mail($to, $subject, $finalMessage, implode("\r\n", $headers))) {
                    echo "Email could not send";
                } else {
                    echo "Email send";
                }
            } else {
                echo "No entries found with this email";
            }
        } else {
            echo "email not valid";
        }
    } else {
        echo "fill the formular";
    }
    ?>

     

  2. if you have in ActorInstaceData.cpp

     

    in void CActorInstance::SetAcce(DWORD eAcce, float fSpecular)

    this

                SetModelInstance(CRaceData::PART_ACCE, CRaceData::PART_ACCE, 0);
                AttachModelInstance(0, "Bip01 Spine2", CRaceData::PART_ACCE);

    change to this

    SetModelInstance(CRaceData::PART_ACCE, CRaceData::PART_ACCE, 0, CRaceData::PART_MAIN);

  3. Try this

     

    <?php 
    if(isset($_POST['idrecover']) && $_POST['idrecover']=="Recuperar") {
        
        if(checkMail($_POST['idemail'])) {
          
          $email = mysql_real_escape_string($_POST['idemail']);
    
          
          $query = "SELECT login FROM account.account WHERE email='".$email."' LIMIT 100";
          $result = mysql_query($query);
    	  
    		echo'<p class="meldung">xxxxxx';
    		$absender = $serverSettings['titel']." Recuperação";
    		$email = $serverSettings['pass_mail'];
    		$empfaenger = $_POST['idemail'];
          if(mysql_num_rows($result)>0) {
          
            //$qryPass =  mysql_query($getUser);
    		while($row = mysql_fetch_assoc($result)) {
    			$mail_body = "
              
              Hellou!! This is realy funny, but dont Work.
              
              
              ID: ".$row['login']." ----------->>>> i wanna see all logins in Here!!!!";
    		}          
              $titel = "Recuperação de Password ".$serverSettings['titel'];
              
              $header .= "X-Priority: 3\n";
              $header .= "X-Mailer: mtVision Homepage Mailer\n";
              $header .= "MIME-Version: 1.0\n";
              $header .= "From: ".$absender." <".$serverSettings['pass_mail'].">\n";
              $header .= "Reply-To: ".$serverSettings['pass_mail']."\n";
              //$header .= "Content-Transfer-Encoding: 8bit\n"; 
              $header .= "Content-Type: text/plain; charset=iso-8859-1\n";
              
              if(!mail($empfaenger, $titel, $mail_body, $header)) {
                echo'<p class="meldung">xxxxxx';
              }
            
          }
          else {
            echo'<p class="meldung">xxxxxx';
          }
          
        }
        else {
          echo'<p class="meldung">xxxxxx';
        }
        
      }
    
    ?>

     

  4. Hello, i make max yang to long long, show yang in inventory is working but, when i (drop,pickup,sell,buy) or something like this, binary show me 0 yang, but when i logout and again login to character yang is still same, or increased from sell, or buy item or else, i checked all functions in core,binary all elk,money,gold and changed to long long but still dont work, and my shops is crazy :D

    So when i reach yang 2kkk+ binary show 0.. :D

    560d8d8c68d71_Vstiek.thumb.PNG.9cba71c62

    if someone know how to fix problem with 0 yang, and shops please help me :)

     

  5. Hello i all edited, i have max alignment 100 000, yea i changed data type, but there is one problem, when i change 

    TITLE_NAME_LIST  

    in localeinfo.py, from 8 to 26 (my PVP_LEVEL is 26 max) , and pack root, my client give me this error

     

    err.jpg

     

     

     

    FIXED!!!

  6. Thanks for reply, but i tried add name like this, but dont work, i think its need add something in binary for reading skilldesc add some type for L Skill? or idk, but i dont find something for skilldesc

     

    1    WARRIOR    Trojcestný střih    Trojnásobný střih    Trojnásobný úder    L Skill    Udeř bleskurychle nepřítele.    Průrazný útok třikrát    Útok na vícero cílů          ATTACK_SKILL|NEED_TARGET|WEAPON_LIMITATION    SWORD|TWO_HANDED    samyeon    1    4            Celková hodnota útoků %.0f-%.ze    (1.1*MinATK + (0.1*MinATK + 1.5*STR)*SkillPoint) * 3    (1.1*MaxATK + (0.1*MaxATK + 1.5*STR)*SkillPoint) * 3        

     

×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.