• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Buying Automatic Paypal System §GesiorAAC§

Amiroslo

Excellent OT User
Joined
Jul 28, 2009
Messages
6,801
Solutions
6
Reaction score
809
Automatic Paypal System §ModernAAC§

Hello,
I want a Automatic Paypal System for ModernAAC. Im using 0.3.6pl1 8.54
And if someone can make it so the money sends as a gift so they dont charge back :)
TY!

Send me ur offer by EURs
I use Paypal to send money!
 
Last edited:
Theres full of those paypal scripts, But about making it as a gift , idk if that is possible and i think they still can claim the money back :p
 
well i want only automatic one, lowest price ill buy it :D
 
@Stopping chargebacks:

Sorry to be crude, but being a server owner of over 2 and a half consecutive years, I can tell you: There is no for-sure way to prevent chargebacks.
You can include Terms & Conditions. You can dispute it on PayPal. But if a buyer charges back with a credit card company. Kiss your money goodbye. And also look forward to paying a $20 service fee per transaction.
A credit card company will look at your dispute information, and sorry to be crude and have a lack of a better way of enunciating this, they will say, "F*** you, we're going to protect our client." and take the money back anyway.

Red

@PayPal Scripts for Gesior:

http://otland.net/f118/paypal-script-release-24188/
http://otland.net/f118/gesior-aac-fixed-paypal-script-free-101818/

Hope this helps,
Red
 
ty but i want a system that makes u to chose to donate, 3eur, 5eur or 10eur
not only 10eur!
so if anyone can make it for free ty, if u want money msg me ur offer!
 
ipn.php

PHP:
$paylist = array("5.00" => 7, "10.00" => 15, "20.00" => 32);

the numbers in red are the money you can choose etc etc
 
but i need a full AUTOMATIC one!
a working one!
cant find an AUTOMATIC one!
 
It is automatic already. Just enable the damn IPN...
 
and how to enable the damn ipn? -.-
 
what is notification url?
To start receiving IPN messages, enter the notification URL and select Receive IPN messages below. To temporarily stop receiving IPN messages, select Do not receive IPN messages below. PayPal continues to generate and store IPN messages until you select Receive IPN messages again (or turn off IPN).
 
Notice: Undefined index: debug in /home/otsmanager/www/public_html/paypal/ipn/ipn.php on line 2 Notice: Undefined index: payer_email in /home/otsmanager/www/public_html/paypal/ipn/ipn.php on line 11 Scammer...
:S?
how to fix that

my ipn.php
Code:
<?php
if ($_REQUEST['debug']) {
ini_set("display_errors", True);
error_reporting(E_ALL);
}
$mysql_host = 'localhost'; //Leave at localhost  
$mysql_user = 'xxxx'; //DB User  
$mysql_pass = 'xxxxx'; //DB Pass  
$mysql_db = 'xxxxx'; //DB Name  
$file = 'paypal.log'; //Paypal Log Name will be placed in the same location as your ipn.php file 
$payer_email = $_REQUEST['payer_email']; 
$ip = $_SERVER['REMOTE_ADDR'];
if($ip != "66.211.170.66" && $ip != "216.113.188.202" && $ip != "216.113.188.203" && $ip != "216.113.188.202") {
	print "Scammer...";
$hak = fopen("scammer.log", "a");
fwrite($hak, "$ip \r\n");
fclose($hak);
die(0);
}
$time = date("F j, Y, g:i a"); 
$paylist = array("2.00" => 4, "5.00" => 12, "10.00" => 25);

// connect db  

$db = mysql_connect($mysql_host, $mysql_user, $mysql_pass);

$custom = stripslashes(ucwords(strtolower(trim($_REQUEST['custom']))));  
$receiver_email = $_REQUEST['receiver_email'];  
$payment_status = $_REQUEST['payment_status'];  
$mc_gross = $_REQUEST['mc_gross']; 
mysql_select_db($mysql_db, $db);  
if ($_REQUEST['debug']){
print $payment_status . '\n';
print (isset($paylist[$mc_gross])) ? 1 : 0 . '\n';
print $receiver_email . '\n';
print $custom . '\n';
}
if ($payment_status == "Completed" && $receiver_email == "[email protected]" && isset($paylist[$mc_gross])) {  

$query = "SELECT premium_points FROM accounts WHERE accounts.name = '$custom'";  

$result = mysql_query($query);  

$prem = mysql_fetch_array($result);  
$somecode = "'$time' '$custom' '$payer_email' '$mc_gross' '$ip'\r\n";

// figure out how much to give
$give = $paylist[$mc_gross];
$points = $prem['premium_points'] + $give;  
// $points = mysql_query($prem)  
$qry2 = "UPDATE accounts SET premium_points = '$points' WHERE accounts.name = '$custom'";  
// Log Paypal Transaction 
$hak = fopen($file, "a"); 
fwrite($hak, $somecode); 
fclose($hak); 

$result2 = mysql_query($qry2);  
}  
else  
 {   
 echo("Error.");  
 }  
?>
+ i added a wrong ipn, how to change it?
 
Last edited:
When I added the ipn on the paypal site I added the wrong link, how to change it?
 
Jesus christ, not to be mean.. but if you cant even do this you dont deserve those donations ;p
 
Back
Top