Advertisement
Guest User

speedwatching.lua

a guest
Aug 9th, 2020
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.22 KB | None | 0 0
  1. function onsub(name, text)
  2.   if text == null or text == "" then
  3.     mp.set_property_native("speed", 2.0)
  4.   else
  5.     mp.set_property_native("speed", 1.5)
  6.   end
  7. end
  8.  
  9. mp.observe_property("sub-text", "string", onsub);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement