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

Daopay links

Minimii

New Member
Joined
Dec 3, 2008
Messages
749
Reaction score
3
Location
Sweden, Piteå
How do I make more daopay links? I mean on my server you can buy 5 points atm but how can I make you buy 1-4 points also? I've created the pages on daopay but I don't know how to do in buypoints.php Anyone that can explain?=)
 
just make an copy of your buypoints.php and name it like buypoints2.php
and then edit so it will be 1-4points and also change all the payment links
and then you put the new link under the "5 points" link if you understand what i mean

It will be like this in "buy points" section

click here to buy 5 points for 5 euro

click here to buy 1 point for 1 euro

edit: i dont know if that will work but it should work
 
Its more easier:

You see this line:
Code:
$config['daopay'][0]['appcode'] = XXXXXX; #
$config['daopay'][0]['prodcode'] = 'XXXX'; #
$config['daopay'][0]['addpoints'] = '5'; #
$config['daopay'][0]['cost'] = "1 euro inc. VAT"; #

Just replace a [1] for the [0] and then configure everything again so it should look like this then:
Code:
$config['daopay'][1]['appcode'] = XXXXXX; #
$config['daopay'][1]['prodcode'] = 'XXXX'; #
$config['daopay'][1]['addpoints'] = '10'; #
$config['daopay'][1]['cost'] = "2 euro inc. VAT"; #

Then you can make it with [2] and [3] etc...
And then you have to add the links to the other links...

Rep++

Your's ballack13
 
Its more easier:

You see this line:
Code:
$config['daopay'][0]['appcode'] = XXXXXX; #
$config['daopay'][0]['prodcode'] = 'XXXX'; #
$config['daopay'][0]['addpoints'] = '5'; #
$config['daopay'][0]['cost'] = "1 euro inc. VAT"; #

Just replace a [1] for the [0] and then configure everything again so it should look like this then:
Code:
$config['daopay'][1]['appcode'] = XXXXXX; #
$config['daopay'][1]['prodcode'] = 'XXXX'; #
$config['daopay'][1]['addpoints'] = '10'; #
$config['daopay'][1]['cost'] = "2 euro inc. VAT"; #

Then you can make it with [2] and [3] etc...
And then you have to add the links to the other links...

Rep++

Your's ballack13

Yea I did like that yesterday and it worked =)
 
Back
Top