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

[Modern Acc] buypoints.php config

mesosot

Member
Joined
Aug 16, 2007
Messages
356
Reaction score
5
after i had finished the shop system i have added doapay scripts buy ZNote



Uploaded with ImageShack.us

i wanna ask how i add paypal scripts ?? to it ? im trying to setup this but what i have to add to buypoints.php or something Paypal Scripts
 
http://otland.net/f118/modern-aac-automatic-daopay-script-87125/

Config section

PHP:
$products = array(1 => '25p', 2 => '50p', 3 => '100p', 4 => '200p'); ## your product names(s)
$product_points = array(1 => 25, 2 => 50, 3 => 100, 4 => 200); ## how many points should they get?
$product_cost = array(1 => '1EUR', 2 => '2EUR', 3 => '3EUR', 4 => '5EUR'); ## cost of the products
$use_more_app_id = false; ## Set to true if you have products with other application id.
$application_ids = array(1 => 58533, 2 => 58535, 3 => 58554, 4 => 65422); ## Dont touch this if $use_more_app_id is set to false.
$application_id = 58533; ## Use this if you use 1 application id for all produtcs.
 
http://otland.net/f118/modern-aac-automatic-daopay-script-87125/

Config section

PHP:
$products = array(1 => '25p', 2 => '50p', 3 => '100p', 4 => '200p'); ## your product names(s)
$product_points = array(1 => 25, 2 => 50, 3 => 100, 4 => 200); ## how many points should they get?
$product_cost = array(1 => '1EUR', 2 => '2EUR', 3 => '3EUR', 4 => '5EUR'); ## cost of the products
$use_more_app_id = false; ## Set to true if you have products with other application id.
$application_ids = array(1 => 58533, 2 => 58535, 3 => 58554, 4 => 65422); ## Dont touch this if $use_more_app_id is set to false.
$application_id = 58533; ## Use this if you use 1 application id for all produtcs.

what is that???
 
Back
Top