Beta Key Generator for Wordpress

by 2 replies
3
I need to create a page that will allow to give away beta keys for games. I need a button that when clicked it will generate a set of bey codes from a list (Also need to know how to set up the list.) The button also needs to require a login in order to receive the code from the list.

I do already have a registration system set up on my site so that is not problem, I just need to add that button with the functionality.

Here is a example of how it should work.

mmobomb.com/giveaway/asda2-item-keys

So if you have an idea of know of a way I can do this that would be awesome. Thanks.
#programming #beta #generator #key #wordpress
  • Basically, what you need is the following:

    1. Create a table to hold the keys (key, user_id, valid_from, valid_to, comment, etc).
    2. Generate a bunch of keys to populate the table.
    3. When a user is requesting a key, just update the existing key record with current user's ID.
  • those keys can be generated no problem however they also have to be valid e.g. the game must be able to validate them.

    so you have 2 choices: either the Wordpress plugin creates the key and then connects to your game server to register the keys OR your game server calls your wordpress

Next Topics on Trending Feed

  • 3

    I need to create a page that will allow to give away beta keys for games. I need a button that when clicked it will generate a set of bey codes from a list (Also need to know how to set up the list.) The button also needs to require a login in order to receive the code from the list. I do already have a registration system set up on my site so that is not problem, I just need to add that button with the functionality.