Ui::drawSubtitleTimed
Draws the subtitle at middle center of the screen.
int duration = time in milliseconds to show text on screen before disappearing
drawImmediately = If true, the text will be drawn immediately, if false, the text will be drawn after the previous subtitle has finished
Used to be known as _DRAW_SUBTITLE_TIMED
Syntax
```js mp.game.ui.drawSubtitleTimed(time, drawImmediately); ```
Required Arguments
- time: int
- drawImmediately: Boolean
Return value
- Undefined
Example
```js // todo ```