Thread: EverythingRS Voting Donate Hiscores Heatmaps Installation & More [ANY BASE]

Page 3 of 135 FirstFirst 123451353103 ... LastLast
Results 21 to 30 of 1345
  1. #21  
    Registered Member
    Join Date
    May 2016
    Posts
    639
    Thanks given
    260
    Thanks received
    66
    Rep Power
    56
    Quote Originally Posted by Genesis View Post
    If you have any suggestions be sure to let me know
    i will if i see anything.

    Quote Originally Posted by Genesis View Post
    If you have any suggestions be sure to let me know
    hmu on skype i got a few questions i sent u a pm
    Reply With Quote  
     

  2. Thankful user:


  3. #22  
    Aganoth Developer

    Aust1n's Avatar
    Join Date
    Aug 2012
    Posts
    1,857
    Thanks given
    280
    Thanks received
    406
    Rep Power
    60
    Looks great, nice release!




    Reply With Quote  
     

  4. Thankful user:


  5. #23  
    Registered Member
    Join Date
    May 2017
    Posts
    91
    Thanks given
    36
    Thanks received
    4
    Rep Power
    33
    o.O
    thanks a lot, will use most likely
    Reply With Quote  
     

  6. Thankful user:


  7. #24  
    Banned

    Join Date
    Nov 2013
    Age
    24
    Posts
    765
    Thanks given
    286
    Thanks received
    264
    Rep Power
    0
    Good stuff, Genesis. This is a great feature to offer to many rsps owners.
    Reply With Quote  
     

  8. Thankful user:


  9. #25  
    Rune-Server Affiliate
    Genesis's Avatar
    Join Date
    Sep 2010
    Posts
    4,151
    Thanks given
    1,508
    Thanks received
    1,980
    Rep Power
    4944
    Quote Originally Posted by Aust1n View Post
    Looks great, nice release!
    Quote Originally Posted by Setup View Post
    Good stuff, Genesis. This is a great feature to offer to many rsps owners.
    Thanks guys!

    Quote Originally Posted by welpp View Post
    o.O
    thanks a lot, will use most likely
    If you need help with setup let me know
    Reply With Quote  
     

  10. Thankful users:


  11. #26  
    GravityScape & SimpliCity Developer.

    RSWSkiller's Avatar
    Join Date
    Dec 2013
    Age
    27
    Posts
    754
    Thanks given
    184
    Thanks received
    68
    Rep Power
    172
    will use all 3 u released, will thanks and rep all 3 topics :3
    thanks
    Reply With Quote  
     

  12. Thankful user:


  13. #27  
    Inferno Founder

    Jin_'s Avatar
    Join Date
    May 2017
    Posts
    1,852
    Thanks given
    16
    Thanks received
    333
    Rep Power
    400
    Quote Originally Posted by Genesis View Post
    EverythingRS - Free Donation Installation

    EverythingRS is a free API system. Here's a quick tutorial on how to get started with voting.

    Getting started

    • First off download our everythingrs-api.jar from here and include it into your project.
    • You will also need our website script which you can find here. Unzip it and drag + drop the "services" folder onto your website.


    Registration and secret key

    • After adding the everything-rs.jar into your project and dragging the services folder onto your website create an account at https://everythingrs.com, once the account is created you must register onto the toplist as we use the toplist data in many of our api's.
    • Now go to your dashboard and you should see your secret key


    Activating your website script

    • Go into the services folder that is on your website. And copy and paste the secret key into services/donate/secretKey.php , Replace the "change_me" with the secret key you now have.
    • If you registered onto the toplist and placed your secret key, you should now see that the page looks entirely different if you refresh.


    Setting up your donation with Paypal

    In order for the donation script to work, you must set it up with your Paypal.

    • To set up your donation script to receive Paypal payments, go to your Auto Donate dashboard here
    • Input your Paypal email, location of your donation script, the location of your ipn.php, and then hit submit
    • Your ipn.php should be at http://example.com/services/donate/ipn.php




    Adding and removing items

    Adding and removing items from your Auto Donate is simple.

    • Go to your Auto Donate dashboard here
    • Under "Add new product", fill out the form information, then hit submit
    • To remove an item just click "Remove" next to the item that you are trying to remove




    (Optional) Creating a Sale

    We promote sales on our front page. This is a good way for new players to find deals on servers before joining, and for servers to earn new customers.

    • To create a sale go to your Sales dashboard here
    • Choose the item that you want to put on sale
    • Set the expiration date, and what % off you want to make the item
    • Read our notification and confirm that you commit to the sale.




    Lets take a look at your new donation page

    You can find your donation script at: your_website/services/donate/



    Making the auto donate work with your server

    This part of the tutorial is for PI, but can easily be changed to work with any server. If you want me to add a snippet on the thread so it can work with your framework leave a comment with the server base you want the snippet for.

    • Add the code below into Commands.java and you're all done!


    Code:
    			if (playerCommand.equalsIgnoreCase("claim")) {
    				new Thread() {
    					public void run() {
    						try {
    							com.everythingrs.donate.Donation[] donations = com.everythingrs.donate.Donation.donations("secret_key", 
    									c.playerName);
    							if (donations.length == 0) {
    								c.sendMessage("You currently don't have any items waiting. You must donate first!");
    								return;
    							}
    							if (donations[0].message != null) {
    								c.sendMessage(donations[0].message);
    								return;
    							}
    							for (com.everythingrs.donate.Donation donate : donations) {
    								c.getItems().addItem(donate.product_id, donate.product_amount);
    							}
    							c.sendMessage("Thank you for donating!");
    						} catch (Exception e) {
    							c.sendMessage("Api Services are currently offline. Please check back shortly");
    							e.printStackTrace();
    						}	
    					}
    				}.start();
    			}
    Fin

    You are now finished adding the auto donation script to your website and server. If you have any suggestions for features, leave a comment and let me know.
    Thankkss
    Reply With Quote  
     

  14. Thankful user:


  15. #28  
    Rune-Server Affiliate
    Genesis's Avatar
    Join Date
    Sep 2010
    Posts
    4,151
    Thanks given
    1,508
    Thanks received
    1,980
    Rep Power
    4944
    Quote Originally Posted by RSWSkiller View Post
    will use all 3 u released, will thanks and rep all 3 topics :3
    thanks
    Thanks! If you need help with setup or have any suggestions for any current or future APIs let me know.
    Reply With Quote  
     

  16. #29  
    Registered Member
    Join Date
    May 2017
    Posts
    145
    Thanks given
    57
    Thanks received
    47
    Rep Power
    31
    thank you very much! will be using
    Reply With Quote  
     

  17. Thankful user:


  18. #30  
    Registered Member
    Join Date
    May 2017
    Posts
    145
    Thanks given
    57
    Thanks received
    47
    Rep Power
    31
    Awesome releases lately! Will be using this as well
    Reply With Quote  
     

  19. Thankful user:


Page 3 of 135 FirstFirst 123451353103 ... LastLast

Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. MotivoteRS Installation Tutorial [ANY BASE]
    By funkE in forum Tutorials
    Replies: 147
    Last Post: 02-19-2019, 11:40 PM
  2. Replies: 8
    Last Post: 03-05-2018, 11:06 PM
  3. Setup Ruse Vote/Donate/Hiscores
    By NoahLH in forum Buying
    Replies: 6
    Last Post: 04-07-2017, 07:47 PM
  4. Replies: 6
    Last Post: 09-15-2016, 01:24 AM
  5. Replies: 8
    Last Post: 04-01-2016, 08:49 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •