14

Click here to load reader

Paygol automatic sms payments in Wow World of Warcraft

Embed Size (px)

DESCRIPTION

You will learn how to receive automatic sms payments in Wow World of Warcraft without doing anything manual. Users can enjoy their coins right away and start buying in the item shop.

Citation preview

Page 1: Paygol automatic sms payments in Wow World of Warcraft

You will learn how to:

SMS payments in Wow

●create a multi-price service for World of Warcraft● receive automatic payments in-game● test your service●Note:download files from this link●https://sourceforge.net/projects/sms-wow/files/

Page 2: Paygol automatic sms payments in Wow World of Warcraft

You will learn how to receive automatic sms payments in your Wow without doing anything manual. This script will allow you to automate every payment you receive so users can enjoy their web points right away.

If you still don't have a PayGol account please start by creating one from this link www.paygol.com/register

Introduction

Page 3: Paygol automatic sms payments in Wow World of Warcraft

● Upload the paygol.php file to your server.● Create a new service of type Multi-price and fill all the fields.

For this example we will create the following options:-An input field where player can enter his character or username-And the next prices with their web points:100 web points = €1200 web points = €2300 web points = €3

Follow these steps:

Page 4: Paygol automatic sms payments in Wow World of Warcraft

Here you can see a picture about how your service creator will look like:

Don't forget to save (click on the yellow save button) all changes for these options button

Page 5: Paygol automatic sms payments in Wow World of Warcraft

On field URL Background add the full path where the paygol.php file is located (e.g.:http://www.myserver.com/paygol.php). This file will be called after every payment has been processed, sending you several parameters (e.g. character or username of the payer, amount of web points) to make all the process automatic.

Select as much countries as you want for this service, all countries will be automatically activated in just a few seconds.

You can select one of our buttons or you can add one of yours later on.

Page 6: Paygol automatic sms payments in Wow World of Warcraft

Edit your paygol.php file and replace the "xxxx" by the real data to connect to your database, you will see something like this:

//set host, username and password for DB$dbhost = "xxxx";$dbuser = "xxxx";$dbpass = "xxxx";$dbname = "xxxx";

Page 7: Paygol automatic sms payments in Wow World of Warcraft

Pay attention on the lines:$custom = $_GET[custom];$points = $_GET[points];

$custom is the variable where the username or character of the payer will be stored.

$points is the total of web points that user paid for.

Page 8: Paygol automatic sms payments in Wow World of Warcraft

Adding the pay buttonClick on the tool button you see below and paste the piece of HTML code into your web page.

Page 9: Paygol automatic sms payments in Wow World of Warcraft

On this section you will see 2 different ways to use your service, with Pop-up and Post. For this example we will use Pop-up. Copy all the code into a HTML page.... test.html for example.

Page 10: Paygol automatic sms payments in Wow World of Warcraft

Trying your service

For this example we will type the character name thefighter and we have selected the option 300 web points €3

So, in your IPN (Url Background) you will receive the next parameters:$_GET[custom] will contain the character in this case thefighter$_GET[points] will contain the number of web points, in this case 300

Page 11: Paygol automatic sms payments in Wow World of Warcraft

Trying your service

On this step , user must send the required text message(s) to complete the payment and get access to the desired service (points, download, access, coins)

Page 12: Paygol automatic sms payments in Wow World of Warcraft

Testing your service

Go to My services and change the status of your service from Testing

Page 13: Paygol automatic sms payments in Wow World of Warcraft

Now press the small red arrow, choose demo using post or popup mode.

Payment screen will display now in test mode (Blue tube indicates test mode)Notice the name of the payment screen is the one you entered when you created the service.

We used Test Service as our service name.

Test Service £1.00, instruction states: Send GOL 813725 to phone number 88080

You are supposed to send this and receive a pin code , you don't need to do this in test mode.

Your test pin code will be 123456, you must enter this pin on the field and press OK

Wait for valid confirmation, after this you will be redirected to your designated Success URL.

When you are sure everything is working as you want then go back to your service and set it as Enabled.

Page 14: Paygol automatic sms payments in Wow World of Warcraft

That's all!

At this point your game would be fully working accepting automatic sms payments with PayGol.