Products
Products are virtual items that your users can purchase from your website in exchange for virtual items on your game servers. Our store system allows you to execute commands on the server once the payment is completed.
Please note that our platform does not offer charge-back protection.
To create a product for a certain game, you need to do several things:
- Create a webstore category. This can be done from Store > Categories
- Integrate your dedicated game server with our platform. This can be done from Integrations > Servers
Once these steps are completed, you will be able to create your first product.
How to Create a Product
- Navigate to the GameCMS Dashboard
- Go to Store
- Select Products
- Click the "New product" button
- Select one of the games
Options
Basic Information
- Name: Your product name
- Image: Option to upload an image (Recommended size 190x155)
- Price: Your product price. If you set the price to 0, this will be counted as a free product.
- Category: The category to which the product should belong.
- Recurring Payment: Set the type of payment for this product. We offer several options:
- Only charge the customer once: This option will charge the customer only once.
- Charge a recurring subscription: This option allows your users to subscribe to a specific product from your store.
- Allow one-time payment & recurring subscription: This allows the user to choose whether to subscribe to the product or buy it once.
- Duration: Sets when the product will expire. This option is only used if a command type is set to execute upon expiration.
- Description: This is the description of your product. You can use the WYSIWYG editor to customize the text with colors and other formatting options.
If there are valid subscriptions for a given product, you won't be able to delete the product. If you change the product price after the user has already subscribed, the subscription price will not change.
The minimum duration is 20 minutes due to API requests and various background processes.
Commands
Configure the commands that will be executed by our plugin for the specified game.
- Server/s: The server(s) where commands must be executed.
- Server Commands: These are the preset commands that will be executed for the selected server(s). These commands can be managed from Integrations > Servers > Commands.
- Discord Commands: Optionally, you can execute Discord commands. These commands can be managed from Integrations > Discord > Commands.
- Commands to be executed after purchase: These are the commands specific to the product. When creating/editing a product, you can see all possible variables that can be used.
Limits
Configure the product limits such as allowing the product to be purchased only once per user.
- Purchase the product only once: If enabled, users will be allowed to buy the product just once.
- Global Limit: If enabled, you'll be able to set a global limit for the product (for all users).
- User Limit: If enabled, you'll be able to set a limit per user.
note
Both limit options (global and user) have sub-options:
- Limit Type: No period, Weekly, Monthly, or Annually.
- Limit: How many times the product can be purchased within the selected period.
- Required Products: Select the products that a user must purchase before buying this product.
- Allowed Users: Add users who can view/buy the product. This is a great option if you want to offer a specific user a special product price.
Other Options
- Does the player need to be in the server: If enabled, our plugins will check if the user is online before executing the commands. This option depends on the game.
- Can the user gift this product to other players: Activate this option if you want the product to be available for gifting.
- Should this item be shown to users: Enable this if you want the product to be displayed in your webstore.
- Enable quantity option: If enabled, users will be able to change the product quantity. This is great for webstores with products like "Create keys".
- Discount in %: The product discount in percentage.
- Discount Start Date: The date when the discount will be activated.
- Discount End Date: The date when the discount will end.
Recommended Product
This option allows you to show the product on your main webstore page and checkout page. This option is part of our "Upselling products" feature, and you must have the "Plus" plan to see it.
- Show as Recommended Product: Enable this if you want to show the product as recommended.
- Show until Date: The date until when the product should be displayed as recommended.
Command Types
Type | Description |
---|---|
Purchase | Executes the command when the product is bought. |
Recurring | Executes the command on each subscription renewal. |
Cancel Subscription | Executes the command when a subscription is canceled. |
Expire | Executes the command when the product duration ends. |
Chargeback | Executes the command if a chargeback occurs. |
Custom Command Fields
Custom command fields allow you to request additional user input directly within commands, making commands more flexible and customizable. For example, if you want users to add a custom prefix, you can create a custom field for them to enter it.
How to Use Custom Command Fields
To add a custom command field, follow this format:
add_prefix %player% "%field_prefix%"
In this example:
add_prefix
is your command.%player%
is a predefined placeholder for the player’s name.%field_prefix%
is a custom placeholder where the user will input their desired prefix.
Important: The %field_
prefix is required to define a custom field. The part after _
(e.g., prefix
in %field_prefix%
) becomes the name of your custom field.
Language Customization for Field Names
If you want users to see friendly, descriptive labels for each custom field instead of placeholder names, you need to add these names to the language file.
To set up friendly names:
- Go to Website Settings -> Languages.
- Click Edit on your default language.
Add the field names inside an array called "product"
like this:
{
"product": {
"prefix": "Prefix"
}
}
In this example:
"product"
is the main array."prefix"
is the custom field name (the part after_
in%field_prefix%
)."Prefix"
is the label users will see for this field.
Repeat this process for each custom field you want to label.
Counter-Strike 1.6 Commands Note
When using command fields for Counter-Strike 1.6 commands, users are restricted from entering the %
symbol in fields like password, username, or any custom fields. This is due to limitations in how the Pawn scripting language processes strings. This restriction applies to both predefined placeholders and custom command fields.
With this setup, you can make commands highly customizable while keeping the input process straightforward and user-friendly.
You can drag and drop products within the same category to change their order. This helps in organizing your store more efficiently.
Ensure you press the save order button once you are done to save the changes.