Advertisement
Guest User

Untitled

a guest
Nov 21st, 2018
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.54 KB | None | 0 0
  1. <?php
  2. require ('steamauth/steamauth.php');
  3. # You would uncomment the line beneath to make it refresh the data every time the page is loaded
  4. // unset($_SESSION['steam_uptodate']);
  5. ?>
  6. <!DOCTYPE html>
  7. <html>
  8. <head>
  9. <link rel="stylesheet" type="text/css" href="payment.css">
  10. </head>
  11. <title>page</title>
  12. <body>
  13. <table class="trow1" width="100%">
  14. <tr>
  15. <td class="thead"><span><strong>Welcome to the ARc Store</strong></span></td>
  16. </tr>
  17. <tr>
  18. <td class="trow1">
  19. <strong>FAQ Section:</strong><br>&nbsp;<br>
  20. <strong>Q: How do I use the store ingame?</strong><br>&nbsp;<br>
  21. A: Goto Engram List and find and learn the "Reward Vault" Engram. Gather the materials required and construct a Reward Vault for placement on a wall. You can then interact with the vaults inventory. Click on "Reward Menu" to see available packs and make your selections then click on "purchase" to obtain your items in your Rewards Vault. If a dino purchase is made, you must equip the dino into your hotbar like an item and press the number on the hotbar for activation. NOTES: Dinos stored in the vault have a shelf life and WILL EXPIRE. YOU MUST DEPLOY THEM OR THEY WILL DECAY. You also can NOT place anything INSIDE this special vault, this is only for obtaining your purchases. <br>&nbsp;<br>
  22. <strong>Q: How can I get ARc Points?</strong><br>&nbsp;<br>
  23. A: ARc Points here on our cluster are not free. You will need to buy them with real-world money (see next question below if you are wondering the reason). Simply login below with your STEAM login credentials to start the process. Point ratio is $1 USD per 8 points, with a minimum of 27 points purchased per transaction.<br>&nbsp;<br>
  24. <strong>Q: This is $#%!, having us BUY these points, this is outrageous!!</strong><br>&nbsp;<br>
  25. A: We apologize you feel this way but unfortunately servers do not run on well-wishes and good intentions. We need capital to keep them up and we reward our players that are willing to donate their hard-earned money with these points.<br>&nbsp;<br>
  26. <strong>Q: Are my points cross-ark compatible?</strong><br>&nbsp;<br>
  27. A: No. They are only valid on the server that you are currently on at the time of purchase. However, anything you purchase from the store with the exception of dino parts (i.e. Spino Sails, Basilosaurus Blubber, etc.) is cross-ark transfer compatible.<br>&nbsp;<br>
  28. <strong>Q: What is Stripe and I cant use PayPal?</strong> <br>&nbsp;<br>
  29. A: Stripe is used heavily in across many online platforms to process payments. Stripe is more secure than PayPal merchant processing and offers the ability to input credit cards directly without having to make an account.<br>&nbsp;<br>
  30. <strong>Q: Can I still use PayPal?</strong><br>&nbsp;<br>
  31. A: Yes! All you need to do is use your PayPal issued debit card. You can request one from your PayPal control panel.<br>&nbsp;<br>
  32. </tr>
  33. <tr>
  34. <td class="thead">
  35. <?php
  36. if(!isset($_SESSION['steamid'])) {
  37.  
  38. echo "Welcome Guest! Please Login by clicking the button below to get started with your ARc Point Purchase<br><br>";
  39. loginbutton(); //login button
  40.  
  41. }
  42. else
  43. {
  44. // include ('steamauth/userInfo.php');
  45.  
  46. // //Protected content
  47. // echo "Welcome back " . $steamprofile['personaname'] . "</br>";
  48. // echo "here is your avatar: </br>" . '<img src="'.$steamprofile['avatarfull'].'" title="" alt="" /><br>'; // Display their avatar!
  49.  
  50. // logoutbutton();
  51.  
  52. header('location:purchasepoints.php');
  53. }
  54. ?>
  55. </td>
  56. </tr>
  57. </table>
  58. </body>
  59. </html>
  60. <!--Version 4.0-->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement