Welcome
/*
$paused
Syntax;
$paused
Explanation;
This identifier will return $true if a song is paused, otherwise $false.
This identifier works in versions older than the one that introduced $insong.pause.
Example;
//splay $iif($paused,resume,pause)
*/
alias paused {
if (!$insong) { return $false }
var %pos = $insong.pos, %i = 1
while (%i <= 50) { inc %i }
if (%pos == $insong.pos) { return $true }
return $false
}