Developer ( storing votes to a mysql )

Status
This thread has been locked.

JackMinecraft

Feedback score
1
Posts
9
Reactions
12
Resources
0
Hello anyone knows how to make a plugin to store votes to mysql for a voting section on a website?

And is there any made?

If not then pm me who knows how to do it!
 
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

NoLongerActive

Deactivated
Feedback score
2
Posts
5
Reactions
24
Resources
0
You implement Votifier as API into your Plugin,
than you create a Listener like this

Code:
import com.vexsoftware.votifier.model.Vote;
import com.vexsoftware.votifier.model.VoteListener;

public class BasicVoteListener implements VoteListener {

    public void voteMade(Vote vote) {
        // Save in MySQL
    }

}

and put your MySQL code in the voteMade Method
 
Last edited:

BRUTALLY

Supreme
Feedback score
8
Posts
330
Reactions
154
Resources
0
Hello anyone knows how to make a plugin to store votes to mysql for a voting section on a website?

And is there any made?

If not then pm me who knows how to do it!
I would gladly do this plugin for a low price! PM me on discord or directly on here.
Discord Brutally#8670
 
Status
This thread has been locked.
Top