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

Gesior Paypal

oualid6496

Well-Known Member
Joined
Aug 24, 2014
Messages
408
Solutions
4
Reaction score
78
Location
Dordrecht, The Netherlands
So I was testing out the paypal system of @Gesior.pl , I changed premium points to coins (tibia coins) but that didn't seem to be working. But im pretty sure that 'coins' are tibia coins. Does anyone know what's wrong? Why people don't receive tibia coins when they donate?

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

$paypals[0]['mail'] = '[email protected]'; // your paypal login
$paypals[0]['name'] = '50 premium points on XXXXX for 0.01 EURO';
$paypals[0]['money_amount'] = '0.01';
$paypals[0]['money_currency'] = 'EUR'; // USD, EUR, more codes: https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_api_nvp_currency_codes
$paypals[0]['coins'] = 50;
 
So I was testing out the paypal system of @Gesior.pl , I changed premium points to coins (tibia coins) but that didn't seem to be working. But im pretty sure that 'coins' are tibia coins. Does anyone know what's wrong? Why people don't receive tibia coins when they donate?

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

$paypals[0]['mail'] = '[email protected]'; // your paypal login
$paypals[0]['name'] = '50 premium points on XXXXX for 0.01 EURO';
$paypals[0]['money_amount'] = '0.01';
$paypals[0]['money_currency'] = 'EUR'; // USD, EUR, more codes: https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_api_nvp_currency_codes
$paypals[0]['coins'] = 50;
Because sources..
 
Because sources..
What do you mean because of sources? There has to be points added in the database to the table coins just like how it was with premium_points. I am using an admin panel that can add coins to someone's account and if that's possible shouldn't it also be possible to do the same when someone donates through paypal?
 
What do you mean because of sources? There has to be points added in the database to the table coins just like how it was with premium_points. I am using an admin panel that can add coins to someone's account and if that's possible shouldn't it also be possible to do the same when someone donates through paypal?
stores is not coded into the sources. (atleast hte official github)
 
Back
Top