A dueler is only a good as his finest lift.
A dueler is only a good as his finest lift.
A dueler is only a good as his finest lift.
add_hook('command', '', function(cmd)
_, _, replayname = cmd:find('^replay (.+)$')
if (type(replayname) == 'string') then
run_cmd('loadreplay ' .. replayname .. '.rpl')
return 1
end
end)
-- Not required for the script to function; this merely stops echoing of "loadreplay [replay].rpl\n".
add_hook('console', '', function(str)
if (str:find('loadreplay')) then
return 1
end
end)