Vote for Diamonds

Ask about a PHP problem here.
Post Reply
AuraCraft
Posts: 2
Joined: Sat Sep 01, 2012 7:49 pm

Vote for Diamonds

Post by AuraCraft »

So...

I would like to create a vote for diamonds system for our server. I know this includes both web and bukkit side coding. But I really have no Idea where to start. I am willing to pay for it, so if you're interested PM me please.

Thanks,
Rob
User avatar
Temor
Posts: 1186
Joined: Thu May 05, 2011 8:04 pm

Re: Vote for Diamonds

Post by Temor »

Would you care to elaborate on what a Vote for Diamonds system is?

I am more than willing to help you do this, however I will not do this for you.
Tell me what you mean and I'll do my best to tell you what to do :)
User avatar
Helx
Posts: 350
Joined: Thu May 17, 2012 6:45 am
Location: Auckland, New Zealand

Re: Vote for Diamonds

Post by Helx »

You can do it much easily with just a plugin called Votifier.
http://dev.bukkit.org/server-mods/votifier/

You just need to find the addon to the plugin to reward the players with items.
Z645
Posts: 33
Joined: Thu Jul 26, 2012 5:08 pm

Re: Vote for Diamonds

Post by Z645 »

Search up keywords like reward or something on bukkit plugins. And choose one from your preferences.
AuraCraft
Posts: 2
Joined: Sat Sep 01, 2012 7:49 pm

Re: Vote for Diamonds

Post by AuraCraft »

Temor wrote:Would you care to elaborate on what a Vote for Diamonds system is?

I am more than willing to help you do this, however I will not do this for you.
Tell me what you mean and I'll do my best to tell you what to do :)


Sure, a vote for diamonds system is where a user can enter there in-game name in a input, click vote, it brings up a list of buttons. When they click those buttons, they are re-directed to the voting site. Once they vote, that button disappears and they can move onto the next one.Once they have voted on all sites, they can click a button and it will give the player diamonds whilst in game. But they HAVE to vote, there is a plugin out there, but it's really buggy and does not check if they have voted.

abcedea wrote:You can do it much easily with just a plugin called Votifier.
http://dev.bukkit.org/server-mods/votifier/

Not what I'm looking for

You just need to find the addon to the plugin to reward the players with items.


Z645 wrote:Search up keywords like reward or something on bukkit plugins. And choose one from your preferences.

"there is a plugin out there, but it's really buggy and does not check if they have voted."
User avatar
Helx
Posts: 350
Joined: Thu May 17, 2012 6:45 am
Location: Auckland, New Zealand

Re: Vote for Diamonds

Post by Helx »

AuraCraft wrote:There is a plugin out there, but it's really buggy and does not check if they have voted.


Votifier works quite nicely for me.... By that I mean it has listeners. If it gets pushed a vote, then its sent on to the listeners. Like Vote 4 Cash.
Anyway. I actually do something like this, but for ranks (no voting).

Because I use CreeperHost, they have their own API (I'll post it at the bottom, you have to be logged in to see it)

You could always use the Websend plugin. I don't think I'd need to help you with this, its really quite easy to figure out.

Websend: http://cdn.stratuscraft.net/misc/Websend.zip

CreeperAPI Documentation
[syntax=text]The following documentation is formated in functions, however it is accessed using HTTP and GET.
The Format is;

Using API.Console.Send(String Command) as an example; http://cp.creeperhost.net/API/?key=APIK ... lo%20World

This will send a command to the Minecraft console of 'say Hello World', remember to encode your values.

Using API.SubAccounts.Add(String Email, String Password, Boolean Control, Boolean Edit, Boolean Plugins) as an example; http://cp.creeperhost.net/API/?key=APIK ... ntrol=true

As Edit and Plugins are not sent, they will default to false.

Below you'll find a list of the current planned API commands, these may or may not be implemented yet.
----------------------------------------------------------------------------------------------------------------------------------------------------------
Boolean API.Console.Send(String Value); //Completed
Send a command to the Minecraft Console.

Array API.Console.Get(); //Completed
Get the Minecraft Console (Not recommended to be called more than once every 500ms).

Boolean API.Control.Start(); //Completed
Start the Minecraft Server.

Boolean API.Control.Restart(); //Completed
Restart the Minecraft Server.

Boolean API.Control.Stop(); //Completed
Stop the Minecraft Server.

Array API.Plugins.List();
List the currently installed Plugins.

Boolean API.Plugins.Add(String URL);
Add a Plugin from the specified URL.

Boolean API.Plugins.Del(String FileName);
Delete the Plugin with the specified FileName.

Array API.Plugins.Search(String Name);
Search Dev.Bukkit.Org for the Plugin specified in Name.

Array API.SubAccounts.List();
Return a list of Sub Accounts.

Boolean API.SubAccounts.Add(String Email, String Password, Boolean Control = false, Boolean Edit = false, Boolean Plugins = false);
Add a Sub Account with the permissions specified.

Boolean API.SubAccounts.Del(String.Email);
Remove the Sub Account with the Email specified.[/syntax]
Post Reply