• 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!

Windows Shop gesior paypal

Sehoxe

New Member
Joined
Feb 15, 2010
Messages
53
Reaction score
1
Hello im using Gesior account maker and i wanna know how can i make more payments options, like 50 points for 6 USD, 100 points for 10 USD etc


paypal.jpg


Code:
<?php
$paypal_report_url = 'http://anderion.net/paypal_report.php';
$paypal_return_url = 'http://anderion.net/?subtopic=shopsystem';
$paypal_image = 'https://www.paypal.com/en_US/i/btn/btn_donate_LG.gif';
$paypal_payment_type = '_xclick'; // '_xclick' (Buy Now) or '_donations'

$paypals[0]['mail'] = 'ghjaskldfjsad'; // your paypal login
$paypals[0]['name'] = '100 premium points on server Accuracy.net for 10.00 USD';
$paypals[0]['money_amount'] = '10';
$paypals[0]['money_currency'] = 'USD'; // USD, EUR, more codes: [url]https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_api_nvp_currency_codes[/url]
$paypals[0]['premium_points'] = 100;
 
Last edited:
Example:
Code:
<?php
$paypal_report_url = 'http://anderion.net/paypal_report.php';
$paypal_return_url = 'http://anderion.net/?subtopic=shopsystem';
$paypal_image = 'https://www.paypal.com/en_US/i/btn/btn_donate_LG.gif';
$paypal_payment_type = '_xclick'; // '_xclick' (Buy Now) or '_donations'

$paypals[0]['mail'] = 'ghjaskldfjsad'; // your paypal login
$paypals[0]['name'] = '100 premium points on server Accuracy.net for 10.00 USD';
$paypals[0]['money_amount'] = '10';
$paypals[0]['money_currency'] = 'USD'; // USD, EUR, more codes: https://cms.paypal.com/us/cgi-bin/?c...currency_codes
$paypals[0]['premium_points'] = 100;

$paypals[1]['mail'] = 'ghjaskldfjsad'; // your paypal login
$paypals[1]['name'] = '200 premium points on server Accuracy.net for 20.00 USD';
$paypals[1]['money_amount'] = '20';
$paypals[1]['money_currency'] = 'USD'; // USD, EUR, more codes: https://cms.paypal.com/us/cgi-bin/?c...currency_codes
$paypals[1]['premium_points'] = 200;
 
Back
Top