Kinetix AI Emote Creator for FiveM - Documentation
GitHubDiscord
  • 🖐️Introduction
  • 👀Overview
  • 🚀Get started
  • 👨‍💻Developer Portal
    • Game/App Space - Creation
    • Game/App Space - Settings
  • ⚙️Core
    • User Creation
    • Emote generation
    • Webhook
    • User bag
    • Sharing emote
    • Validation / Retake process
    • Paywalls
    • File download
    • Playing animations
  • 🖥️Interface
    • Events
      • Server
      • Client
    • Render functions
      • CreateRootMenu()
      • CreateQRCodeAlert(url)
      • CreateMainMenu()
      • CreateEmoteBagMenu(emotes)
      • OpenEmoteBagMenu()
      • CreateProcessValidationMenu(process)
      • CreateEmoteCreatorMenu(processes)
      • CreateErrorMenu(statusCode, error)
      • NotifyProcessUpdate(process)
      • NotifyEmoteReady(data)
      • CreateEmoteWheel(emotes)
  • 🔌Integrations
  • 🧪Live Demo
  • 📚Video recording Guidelines & AI Specs
    • AI Emote Creator - specifications
    • Video recording guidelines
Powered by GitBook
On this page
  1. Interface
  2. Render functions

CreateEmoteCreatorMenu(processes)

This is the emote creation menu.

PreviousCreateProcessValidationMenu(process)NextCreateErrorMenu(statusCode, error)

Last updated 10 months ago

A button is displayed to request a QR Code with the requestQRCode event. A list of user's processes are displayed. In this implementation the server will fetch processes that are less 24h old.

The menu will then display the processes according to their status

  • Pending : Servers are warming up

  • Processing : Servers are processing

  • Done : Waiting for validation ...

  • Validated : Ready to use

  • Failed : An error occured

  • Rejected :

    • If the process has no children : Waiting for a new video ...

      • The button will trigger the requestRetake event to generate a new QR Code

    • If the process has any children : Hidden

The way you display the processes are completely up to you and the level of information you want to provide to your players

🖥️