RECENT NEWS
📢 𝟑𝟎% Discount for all ads only this month ❄️

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

Johny
power_settings_new
Seen 1 year ago
Steel Warrior (11/15)
Steel Warrior
0
0
0
11 Posts
Posts
0
Warning level
0
Likes
0
Dislikes
Joined: 2022-04-24
HYPE 200 IQ

For better organization all tutorials can also be found at https://everythingrs.com/tutorials

EverythingRS Auto Vote Tutorial https://everythingrs.com/tutorials/r...-vote-tutorial
EverythingRS Auto Donation Tutorial https://everythingrs.com/tutorials/r...ation-tutorial
EverythingRS Hiscores Tutorial https://everythingrs.com/tutorials/r...cores-tutorial
EverythingRS Heatmaps Tutorial https://everythingrs.com/tutorials/r...tmaps-tutorial
EverythingRS Players Online Tutorial https://everythingrs.com/tutorials/r...nline-tutorial
EverythingRS Marketplace Tutorial https://everythingrs.com/tutorials/r...place-tutorial
EverythingRS Commands Tutorial https://everythingrs.com/tutorials/r...mands-tutorial

Tutorials are at the bottom. If anyone needs help with installation be sure to let me know on this thread

------------------------------------------------------------------------------------------

EverythingRS - Free Voting Installation

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

Support Discord

If you need more help or for some reason cannot understand the tutorial. You can post a comment on this thread or reach us at our support Discord.

https://discord.gg/rGN8zCV

Getting started

  • First off download our everythingrs-api.jar from here and include it into your project.

Registration and secret key

  • After adding the everything-rs.jar into your project 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
    Click here to view the original image of 924x52px.

Your voting subdomain!

  • Go to your main panel at https://everythingrs.com/account . You should now see your voting URL in the "Your API Pages" section
  • (OPTIONAL) If you wish to embed the script on your website you can add the code below directly onto your website. Change "yoursubdomain" to the one that was provided to you

 

Spoiler for (optional) embed onto your website:


Click here to view the original image of 1233x582px.


Click here to view the original image of 1233x624px.

Making the auto vote work with your server

This part is for PI & Ruse but can easily be changed to work with any server. If you have a request for a specific server let me know and I can add it to the tutorial.

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

For PI

Spoiler for PI:
Code:
			if (playerCommand.startsWith("reward")) {
				String[] args = playerCommand.split(" ");
				if (args.length == 1) {
					c.sendMessage("Please use [::reward id], [::reward id amount], or [::reward id all].");
					return;
				}
				final String playerName = c.playerName;
				final String id = args[1];
				final String amount = args.length == 3 ? args[2] : "1";

				com.everythingrs.vote.Vote.service.execute(new Runnable() {
					@Override
					public void run() {
						try {
							com.everythingrs.vote.Vote[] reward = com.everythingrs.vote.Vote.reward("secret_key",
									playerName, id, amount);
							if (reward[0].message != null) {
								c.sendMessage(reward[0].message);
								return;
							}
							c.getItems().addItem(reward[0].reward_id, reward[0].give_amount);
							c.sendMessage(
									"Thank you for voting! You now have " + reward[0].vote_points + " vote points.");
						} catch (Exception e) {
							c.sendMessage("Api Services are currently offline. Please check back shortly");
							e.printStackTrace();
						}
					}

				});
			}

For Vencillio

Spoiler for Vencillio:

In PlayerCommand.java under

Code:
switch (parser.getCommand()) {

Add

Code:
	case "reward":
		if (!parser.hasNext(1)) {
			player.send(new SendMessage("Please use [::reward id], [::reward id amount], or [::reward id all]."));
			return true;
		}
		final String playerName = player.getUsername();
		final String id = parser.nextString();
		final String rewardAmount = parser.hasNext(1) ? parser.nextString() : "1";

		com.everythingrs.vote.Vote.service.execute(new Runnable() {
			@Override
			public void run() {
				try {
					com.everythingrs.vote.Vote[] reward = com.everythingrs.vote.Vote.reward("secret_key", playerName, id, rewardAmount);
					if (reward[0].message != null) {
						player.send(new SendMessage(reward[0].message));
						return;
					}
					player.getInventory().add(new Item(reward[0].reward_id, reward[0].give_amount));
					player.send(new SendMessage("Thank you for voting! You now have " + reward[0].vote_points + " vote points."));
				} catch (Exception e) {
					player.send(new SendMessage("Api Services are currently offline. Please check back shortly"));
					e.printStackTrace();
				}
			}

		});
		return true;

For Ruse

Spoiler for Ruse:

In CommandPacketListener.java

under

Code:
private static void playerCommands(final Player player, String[] command, String wholeCommand)  {

Add

Code for Ruse

Code:
		
		if (command[0].startsWith("reward")) {
			if (command.length == 1) {
				player.getPacketSender().sendMessage("Please use [::reward id], [::reward id amount], or [::reward id all].");
				return;
			}
			final String playerName = player.getUsername();
			final String id = command[1];
			final String amount = command.length == 3 ? command[2] : "1";

			com.everythingrs.vote.Vote.service.execute(new Runnable() {
				@Override
				public void run() {
					try {
						com.everythingrs.vote.Vote[] reward = com.everythingrs.vote.Vote.reward("secret_key",
								playerName, id, amount);
						if (reward[0].message != null) {
							player.getPacketSender().sendMessage(reward[0].message);
							return;
						}
						player.getInventory().add(reward[0].reward_id, reward[0].give_amount);
						player.getPacketSender().sendMessage("Thank you for voting! You now have " + reward[0].vote_points + " vote points.");
					} catch (Exception e) {
						player.getPacketSender().sendMessage("Api Services are currently offline. Please check back shortly");
						e.printStackTrace();
					}
				}

			});
		}

For Matrix

Spoiler for Matrix:
Code:
        case "reward":
            final String playerName = player.getUsername();
            final String id = cmd[1];
            final String rewardAmount = "1";
            com.everythingrs.vote.Vote.service.execute(new Runnable() {
                @Override
                public void run() {
                    try {
                        com.everythingrs.vote.Vote[] reward = com.everythingrs.vote.Vote.reward(
                                "secret_key", playerName,
                                id, rewardAmount);
                        if (reward[0].message != null) {
                            player.getPackets().sendGameMessage(reward[0].message);
                            return;
                        }
                        player.getInventory().addItem(new Item(reward[0].reward_id, reward[0].give_amount));
                        player.getPackets().sendGameMessage("Thank you for your support in voting! You have "
                                + reward[0].vote_points + " vote points left.");
                        player.getCompCapeManager().increaseRequirement(Requirement.VOTES, 1);
                        player.setVoteTokens(player.getVoteTokens() + 1);
                    } catch (Exception e) {

                        player.getPackets().sendGameMessage("Voting services are currently offline, please check back shortly.");
                        e.printStackTrace();
                    }
                }

            });
            return true;

For Other Servers

The script is compatible with any base, if you however need help adding it to a specific one, leave a link to the base and I'll add it to the tutorial.

Fin

You are now finished adding the auto vote onto your server. Continue if you want to learn how to add and remove items, and adding support for several toplists.

Adding and removing items

  • Adding and removing items is incredibly simple. Go to you voting dashboard at https://everythingrs.com/account/vote/manage
  • Once there go to the "Add new reward" section, and you can proceed to enter the reward information (item id, item name, item points, item amount)
  • To remove a reward just press the red "x" button
  • The voting script goes by a point system. So for each vote on a toplist your players will get a certain amount of points which is set by you.
  • To claim an item and use your points type ::reward x in-game


Click here to view the original image of 837x751px.


Click here to view the original image of 1233x619px.

Adding several toplists

When registering onto a new toplist and asked for an optional callback use this exactly how it is.

Code:
https://callback.everythingrs.com/process.php?i=
  • Once you enter the callback, go onto EverythingRS and in your AutoVote place your toplist id
  • If you want to only show toplists that you are registered on, check the "Do not display listings as "unregistered" if I have decided not to add it"


Click here to view the original image of 1233x601px.

00
  • Like
Reactions: