ResumeRecordingPlayback: Difference between revisions

From NPC for VCMP 0.4 Servers
Jump to navigation Jump to search
(Created page with "{{Welcome| desc=This will resume the paused playback.| example=<source lang="lua"> function OnPlayerText(player, message) { if(message=="comeon") { ResumeRecordingPlayback(...")
 
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:
desc=This will resume the paused playback.|
desc=This will resume the paused playback.|
example=<source lang="lua">
example=<source lang="lua">
function OnPlayerText(player, message)
ResumeRecordingPlayback();
{
if(message=="comeon")
{
ResumeRecordingPlayback();
}
}
</source>|
</source>|
retvals=null if no playback was running, true otherwise.|
relfuncs=*[[PauseRecordingPlayback]]
relfuncs=*[[PauseRecordingPlayback]]
*[[StartRecordingPlayback]]
*[[StartRecordingPlayback]]
*[[StopRecordingPlayback]]
*[[StopRecordingPlayback]]
}}
}}

Latest revision as of 18:27, 4 February 2023


Description:
This will resume the paused playback.


Parameters:

NoParams


Return Values:
null if no playback was running, true otherwise.


Example

ResumeRecordingPlayback();

Related Functions

The following functions may be helpful as they relate to this function in one way or another.