Go To Console

Cosmetics Lover

Goals

The goal is to improve conversions for players to whom aesthetics matters the most, by recommending cosmetic in-game items and products.

Description Players to whom aesthetics is very important
User Expectation In-game cosmetic items such as fancy avatar items, visual effect items, etc.
Genres All

Required APIs

Join LoginApp PlayStage PlayStageWithCosmetic GetCurrency UseCurrency

Analysis Results

  • Persona: Players to whom aesthetics matters
    • The list of the players who like to fancy up their characters' appearances without improving character abilities.
  • Cosmetic Item Recommendation
    • TENTUPLAY identifies what cosmetic items the player does not have and offers products including those items.

Returned Data

TENTUPLAY offers cosmetic items and characters the persona group is likely to purchase. In the example below, the message offers the beginner's level Cosmetic Lovers items and characters that other Cosmetic Lovers like to use. For 'name', 'asset_name' and 'price' in 'recommendations', extra files are needed.

namespace TentuPlay
{
    [Serializable]
    public class TPAdviceRawDataFromDB
    {
        public int advice_id { get; set; }
        public string valid_until { get; set; }
        public string model_name { get; set; }
        public string display_parameters { get; set; }
                /*
                 * Example of "display_parameters"
                 * display_parameters = {
                        "player_name": "QTPie"
                    }
                    */
        public string recommendations { get; set; }
                    /*
                 * Example of "recommendations"
                 * recommendations = {
                    "contents": [
                        {
                            "id": "dragon_gown",
                            "name": "Dragon Gown",
                            "asset_name": "costume_00",
                        },
                        {
                            "id": "character_00",
                            "name": "Character Name",
                            "asset_name": "character_01",
                        },
                    ],
                    "offers": [
                        {
                            "id": "dragon_costume_pack",
                            "name": "Dragon Costume Pack"
                            "asset_name": "purchasable_00",
                            "price": 6.99,
                            "currency_code": "USD"
                        },
                    ]
                  }
           */
        public int closed_count { get; set; }
    }
}

Sample