-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathdonatordone.php
More file actions
32 lines (30 loc) · 1.62 KB
/
Copy pathdonatordone.php
File metadata and controls
32 lines (30 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
/**************************************************************************************************
| Software Name : Ravan Scripts Online Mafia Game
| Software Author : Ravan Soft Tech
| Software Version : Version 2.0.1 Build 2101
| Website : http://www.ravan.info/
| E-mail : support@ravan.info
|**************************************************************************************************
| The source files are subject to the Ravan Scripts End-User License Agreement included in License Agreement.html
| The files in the package must not be distributed in whole or significant part.
| All code is copyrighted unless otherwise advised.
| Do Not Remove Powered By Ravan Scripts without permission .
|**************************************************************************************************
| Copyright (c) 2010 Ravan Scripts . All rights reserved.
|**************************************************************************************************/
include "globals.php";
if($_GET['action'] == "cancel")
{
print "You have cancelled your donation. Please donate later...";
}
else if($_GET['action'] == "done")
{
if(!$_GET['tx'])
{
die ("Get a life.");
}
print "Thank you for your payment to {$set['game_name']}. Your transaction has been completed, and a receipt for your purchase has been emailed to you. You may log into your account at <a href='http://www.paypal.com'>www.paypal.com</a> to view details of this transaction. Your donator pack should be credited within a few minutes, if not, contact an admin for assistance.";
}
$h->endpage();
?>