Register for your free account! | Forgot your password?

Go Back   elitepvpers > Popular Games > Metin2 > Metin2 Private Server
You last visited: Today at 21:45

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

Advertisement



[S]PSC Auto Cashin Script

Discussion on [S]PSC Auto Cashin Script within the Metin2 Private Server forum part of the Metin2 category.

Closed Thread
 
Old   #1
 
elite*gold: 3
Join Date: Jan 2010
Posts: 1,714
Received Thanks: 854
[S]PSC Auto Cashin Script

Moin Leute,
ich bin auf der Suche nach einem PaySafe Auto-Cashin Script.
Neja hab schon viel Gegoogelt aber nur müll gefunden.

Ich wollte das Cashin Script bei mir auf der HP ein bauen aber dazu eben die Funktion dazu wen die PaySafe den angegebenen Betrag hat das es für den angegebenen betrag auch die Coins auf läd.

Nun meine Frage kennt jemand vllt solch ein script?
Würde auch ein Paar Euros Zahlen.
.Sh4rk is offline  
Old 08/01/2010, 15:35   #2
 
Joey.'s Avatar
 
elite*gold: 49
Join Date: Jul 2010
Posts: 5,412
Received Thanks: 1,663
Kuck mal auf Master Boss's Shop.

Der hat da eins.
Joey. is offline  
Old 08/01/2010, 15:37   #3

 
Bananenwerfer's Avatar
 
elite*gold: 0
Join Date: Mar 2010
Posts: 3,786
Received Thanks: 1,863
Wenn du schon Googlest,

wie wärs dann vllt. auch ma mit SuFu benutzen weil du findet man 99,99% immer was
Bananenwerfer is offline  
Old 08/01/2010, 15:41   #4
 
elite*gold: 0
Join Date: Jun 2010
Posts: 1,567
Received Thanks: 974
Cash in script ist gemeint:

Member gibt 'ne psc nr & pw ein > es wird danach geprüft ob die daten stimmen, danach ändert er das password das er angegeben hat & es wird in der db geloggt, wenn die angaben stimmten, bekommt der jenige der bestellt hat 'n gewissen betrag coins gutgeschrieben für den er nen gewissen preis gezahlt hat.

sowas findeste nich kostenlos, but - look in sapphires shopscript x)
αίίR7 :3 is offline  
Old 08/01/2010, 16:07   #5
 
elite*gold: 3
Join Date: Jan 2010
Posts: 1,714
Received Thanks: 854
Danke MSI.aiiR7 wenigstens du liest hier noch richtig.
Also du meinst sapphires shopscript?
Kenn ich nicht aber werd ma Googlen :P
Thank you
.Sh4rk is offline  
Old 08/01/2010, 16:19   #6
 
Mr.GrimmeL's Avatar
 
elite*gold: 41
Join Date: Feb 2010
Posts: 6,038
Received Thanks: 1,035
Doch die gibts auch kostenlos bzw findest du da die codes für das script.
Mr.GrimmeL is offline  
Old 08/01/2010, 16:28   #7
 
elite*gold: 3
Join Date: Jan 2010
Posts: 1,714
Received Thanks: 854
Also ich hab jetzt so viel Codes und Snippes davon geht kein einziger
Schick mir mal den richtigen
.Sh4rk is offline  
Old 08/01/2010, 16:33   #8
 
elite*gold: 0
Join Date: Jun 2010
Posts: 1,567
Received Thanks: 974
Quote:
Originally Posted by kduwa View Post
Danke MSI.aiiR7 wenigstens du liest hier noch richtig.
Also du meinst sapphires shopscript?
Kenn ich nicht aber werd ma Googlen :P
Thank you
kd

Quote:
Originally Posted by .Office View Post
Doch die gibts auch kostenlos bzw findest du da die codes für das script.
not

Quote:
Originally Posted by kduwa View Post
Also ich hab jetzt so viel Codes und Snippes davon geht kein einziger
Schick mir mal den richtigen
yes - paysafecard doat com die heinis haben ihre scripte umgebaut so dass man sie direkt bei denen "kaufen" muss o. 'neue script's dafür schreiben muss, bin leider atm auch noch nich im besitz eines solchem - denke in 'ner woche hab ich ne positive rückmeldung.
αίίR7 :3 is offline  
Old 08/01/2010, 16:36   #9
 
Mr.GrimmeL's Avatar
 
elite*gold: 41
Join Date: Feb 2010
Posts: 6,038
Received Thanks: 1,035
Index
php Code
PHP Code:
<form action='index.php' method='POST'>
PIN: <input id="pin1" type="text" name=%2526quot%253Bpin1%2526quot%253B autocomplete="off" value="" maxlength="4" size="1" /> -
    <input id="pin2" type="text" name=%2526quot%253Bpin2%2526quot%253B autocomplete="off" value="" maxlength="4" size="1" /> -
    <input id="pin3" type="text" name=%2526quot%253Bpin3%2526quot%253B autocomplete="off" value="" maxlength="4" size="1" /> -
    <input id="pin4" type="text" name=%2526quot%253Bpin4%2526quot%253B autocomplete="off" value="" maxlength="4" size="1" /><br />

Passwort: <input type='password' name=%2526quot%253Bpass%2526quot%253B%252F%2526gt%253B%2526lt%253Bbr /><br />
<input type='submit' value='Check' />
</form>

<?php
include_once("class.psc.php");

ini_set("display_errors"0);

if(isset(
$_POST["pin1"]))    {
    if(!empty(
$_POST["pin1"]) && !empty($_POST["pin2"]) && !empty($_POST["pin3"]) && !empty($_POST["pin4"]))    {
        
$psc = new psc;
        
$psc->check($_POST["pin1"], $_POST["pin2"], $_POST["pin3"], $_POST["pin4"],$_POST["pass"]);
    }
    else    {
        echo 
"<b><font color='red'>Alle 4 PIN-Felder müssen ausgefüllt werden!</font></b>";
    }
}
?>
class.psc.php
PHP-Code:

PHP Code:
<?php
class psc    {

        
//Fehlermeldungen
    
var $error = array(
        
=> "Der eingegebene Text stimmt nicht mit dem angezeigten überein.",
        
=> "Bei deinem PIN-Code und/oder Passwort ist ein Fehler aufgetreten. Bitte überprüfe die korrekte Eingabe des PIN-Code oder Passwort.",
        
//3 => "",
        //4 => "",
        //5 => ""    
    
);    
    
    
    
    Public function 
getQ($url$post$img False)    {
        
$ch curl_init(); 
        
        
        foreach(
$post as $key=>$value) { $post_string .= $key.'='.$value.'&'; }
        
rtrim($post_string,'&');
        
        
        
curl_setopt($ch,CURLOPT_URL,$url);
        
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
        
curl_setopt ($chCURLOPT_SSL_VERIFYPEER0);
        
curl_setopt ($chCURLOPT_AUTOREFERER0);
        
curl_setopt ($chCURLOPT_REFERER'https://customer.cc.at.paysafecard.com/psccustomer/GetWelcomePanelServlet'); 
        
        
curl_setopt ($chCURLOPT_POSTcount($post)); 
        
curl_setopt ($chCURLOPT_POSTFIELDS$post_string);
        
            
            
//Ausfrufen der Aktionen 
        
$source curl_exec($ch);
        
            
//Session beenden 
        
curl_close($ch); 
        
        if(
$img)    {
            
$fp fopen("tmp/captcha.jpg""wb"); 
            
fwrite($fp$source); 
            
fclose($fp);
            
            return 
"<img src='tmp/captcha.jpg'>"
        }
        else    {
            return 
$source;
        }
    }
    
    Public function 
check($pin1$pin2$pin3$pin4$captcha$pass "")    {
        
        
$post = array(
        
                
//Hidden Values
            
"j_id17" => urlencode("j_id17"),
            
"j_id17:next" => urlencode("Weiter"),
            
//"javax.faces.ViewState" => urlencode(""),
        
                //Captcha
            
"j_id17:verifyCaptcha" => urlencode($captcha),
        
                
//Pin 1, 2, 3, 4
            
"j_id17:rn1" => urlencode($pin1),
            
"j_id17:rn2" => urlencode($pin2),
            
"j_id17:rn3" => urlencode($pin3),
            
"j_id17:rn4" => urlencode($pin4),
            
        
                
//Pass
            
"j_id17:j_id23" => urlencode($pass)
        
        );
        

        
$src $this->getQ("https://customer.cc.at.paysafecard.com/psccustomer/GetWelcomePanelServlet?&language=de"$post);
        
$src2 $this->getQ("https://customer.cc.at.paysafecard.com/seam/resource/captcha"""True);
                
        for(
$i 0$i count($this->error); $i++)    {
            if(
substr_count($src$this->error[$i]))    {
                die(
"<font color='red'>$this->error[$i]</font>");
            }    
        }
    }
}
?>
Mr.GrimmeL is offline  
Thanks
1 User
Old 08/01/2010, 16:48   #10
 
elite*gold: 0
Join Date: Jun 2010
Posts: 1,567
Received Thanks: 974
Quote:
Originally Posted by .Office View Post
Index
php Code
PHP Code:
<form action='index.php' method='POST'>
PIN: <input id="pin1" type="text" name=%2526quot%253Bpin1%2526quot%253B autocomplete="off" value="" maxlength="4" size="1" /> -
    <input id="pin2" type="text" name=%2526quot%253Bpin2%2526quot%253B autocomplete="off" value="" maxlength="4" size="1" /> -
    <input id="pin3" type="text" name=%2526quot%253Bpin3%2526quot%253B autocomplete="off" value="" maxlength="4" size="1" /> -
    <input id="pin4" type="text" name=%2526quot%253Bpin4%2526quot%253B autocomplete="off" value="" maxlength="4" size="1" /><br />

Passwort: <input type='password' name=%2526quot%253Bpass%2526quot%253B%252F%2526gt%253B%2526lt%253Bbr /><br />
<input type='submit' value='Check' />
</form>

<?php
include_once("class.psc.php");

ini_set("display_errors"0);

if(isset(
$_POST["pin1"]))    {
    if(!empty(
$_POST["pin1"]) && !empty($_POST["pin2"]) && !empty($_POST["pin3"]) && !empty($_POST["pin4"]))    {
        
$psc = new psc;
        
$psc->check($_POST["pin1"], $_POST["pin2"], $_POST["pin3"], $_POST["pin4"],$_POST["pass"]);
    }
    else    {
        echo 
"<b><font color='red'>Alle 4 PIN-Felder müssen ausgefüllt werden!</font></b>";
    }
}
?>
class.psc.php
PHP-Code:

PHP Code:
<?php
class psc    {

        
//Fehlermeldungen
    
var $error = array(
        
=> "Der eingegebene Text stimmt nicht mit dem angezeigten überein.",
        
=> "Bei deinem PIN-Code und/oder Passwort ist ein Fehler aufgetreten. Bitte überprüfe die korrekte Eingabe des PIN-Code oder Passwort.",
        
//3 => "",
        //4 => "",
        //5 => ""    
    
);    
    
    
    
    Public function 
getQ($url$post$img False)    {
        
$ch curl_init(); 
        
        
        foreach(
$post as $key=>$value) { $post_string .= $key.'='.$value.'&'; }
        
rtrim($post_string,'&');
        
        
        
curl_setopt($ch,CURLOPT_URL,$url);
        
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
        
curl_setopt ($chCURLOPT_SSL_VERIFYPEER0);
        
curl_setopt ($chCURLOPT_AUTOREFERER0);
        
curl_setopt ($chCURLOPT_REFERER'https://customer.cc.at.paysafecard.com/psccustomer/GetWelcomePanelServlet'); 
        
        
curl_setopt ($chCURLOPT_POSTcount($post)); 
        
curl_setopt ($chCURLOPT_POSTFIELDS$post_string);
        
            
            
//Ausfrufen der Aktionen 
        
$source curl_exec($ch);
        
            
//Session beenden 
        
curl_close($ch); 
        
        if(
$img)    {
            
$fp fopen("tmp/captcha.jpg""wb"); 
            
fwrite($fp$source); 
            
fclose($fp);
            
            return 
"<img src='tmp/captcha.jpg'>"
        }
        else    {
            return 
$source;
        }
    }
    
    Public function 
check($pin1$pin2$pin3$pin4$captcha$pass "")    {
        
        
$post = array(
        
                
//Hidden Values
            
"j_id17" => urlencode("j_id17"),
            
"j_id17:next" => urlencode("Weiter"),
            
//"javax.faces.ViewState" => urlencode(""),
        
                //Captcha
            
"j_id17:verifyCaptcha" => urlencode($captcha),
        
                
//Pin 1, 2, 3, 4
            
"j_id17:rn1" => urlencode($pin1),
            
"j_id17:rn2" => urlencode($pin2),
            
"j_id17:rn3" => urlencode($pin3),
            
"j_id17:rn4" => urlencode($pin4),
            
        
                
//Pass
            
"j_id17:j_id23" => urlencode($pass)
        
        );
        

        
$src $this->getQ("https://customer.cc.at.paysafecard.com/psccustomer/GetWelcomePanelServlet?&language=de"$post);
        
$src2 $this->getQ("https://customer.cc.at.paysafecard.com/seam/resource/captcha"""True);
                
        for(
$i 0$i count($this->error); $i++)    {
            if(
substr_count($src$this->error[$i]))    {
                die(
"<font color='red'>$this->error[$i]</font>");
            }    
        }
    }
}
?>

doof nur, dass es nicht geht x)
αίίR7 :3 is offline  
Thanks
2 Users
Old 08/01/2010, 16:49   #11
 
Mr.GrimmeL's Avatar
 
elite*gold: 41
Join Date: Feb 2010
Posts: 6,038
Received Thanks: 1,035
Das war auch nur so als bsp. das man so was bei google findet

Da gibts noch andere nur keine Lust hier jedes zu kopieren.
Mr.GrimmeL is offline  
Old 08/01/2010, 16:54   #12
 
Boing88's Avatar
 
elite*gold: 0
Join Date: Feb 2010
Posts: 147
Received Thanks: 0
hmm ich suche auch soetwas und hab mir jetzt von PixeL den cash-in runtergeladen...
aber ich habe keinplan wo ich die dateien reintun soll in meinen xxamp ordner -.-

gibt es kein howto für sowas? könnte dann dochmal jemand machen wie man einen funktionierenden IS mit cash-in und auto coins auszahlung einrichtet

das würde bestimmt massig thx regnen
Boing88 is offline  
Old 08/01/2010, 17:48   #13
 
elite*gold: 3
Join Date: Jan 2010
Posts: 1,714
Received Thanks: 854
Hmm ich find das script nicht
Und jetzt hat mir so einer ne pm geschickt mit nem Link zu rapidshare von einer exe XD ka was des is aber werds ma checken. :P
.Sh4rk is offline  
Old 08/01/2010, 17:50   #14
 
eXidal's Avatar
 
elite*gold: 0
Join Date: Dec 2009
Posts: 1,525
Received Thanks: 383
PSC hat wie gesgt die ID's geändert.
Wer im Quelltext nachguckt und das Script ein bisschen verändert, wird fündig
eXidal is offline  
Old 08/01/2010, 17:51   #15
 
elite*gold: 3
Join Date: Jan 2010
Posts: 1,714
Received Thanks: 854
Neja hatte vor halben jahr mal das Jaqueline.cc Shop Script inkl. PSC - AutoCashin
das ging auch aber das Problem is ich find es nimmer.
.Sh4rk is offline  
Closed Thread


Similar Threads Similar Threads
[Release]PSC Auto-Cashin-Script
09/03/2010 - Metin2 PServer Guides & Strategies - 74 Replies
Hi http://www.paysafecard.com/fileadmin/templates/im ages/paysafecard-logo.gif Ich release heute ein Auto-Cashin-Script für PaySafeCards. Ich möchte betonen,dass nicht ich dieses Script geschrieben habe, sondern Sapphire. Herzlichen Dank an dieser Stelle. Das Script ist eine Public-Version. Kurz Info zur Funktionsweise:



All times are GMT +1. The time now is 21:46.


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