get_api_event_table
Identify which API calls trigger events and who receives them. Use this table to implement multiplayer event handlers and debug missing event issues.
Instructions
⚠️ CRITICAL - API-to-Event relationship table.
Shows: Which API call triggers which event, and WHO receives it.
Key relationships AI must understand:
matchRoom() → You: get roomInfo, Others: get playerEnterRoom event
sendCustomMessage() → You: NO event, Others: get onCustomMessage event
updatePlayerCustomProperties() → ALL players (including you): get event
This relationship is hard to show in code template, so use this table when implementing event handlers.
Use when: Implementing multiplayer logic, debugging "why no event triggered?"
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||