SERVER EXPORTS
Last updated
{
"id": 1,
"number": 123456789,
"title": "Suspicious Conversation",
"url": "[https://example.com/audio.ogg](https://example.com/audio.ogg)",
"createdAt": 1678900000
}Saves a voice recording (audio file) to the player's voice recorder app using their Server ID (Source).
local result = exports["17mov_Phone"]:Voice_SaveMessageToPlayerBySrc(src, title, url)Returns:
table: Object containing details of the saved message.
src
number
โ
The player's server ID (source).
title
string
โ
The title/name of the recording.
url
string
โ
Direct URL to the audio file (e.g., .ogg, .mp3).
Saves a voice recording (audio file) to the player's voice recorder app using their phone number.
local result = exports["17mov_Phone"]:Voice_SaveMessageToPlayerByNumber(number, title, url)Returns:
table: Object containing details of the saved message.
number
number
โ
The player's phone number.
title
string
โ
The title/name of the recording.
url
string
โ
Direct URL to the audio file (e.g., .ogg, .mp3).
Last updated