Advertisement
Guest User

Untitled

a guest
Mar 28th, 2020
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function exec_string(string) {
  2.   send_command("queue addclear eqbal " + string)
  3. }
  4.  
  5. function set_string(string) {
  6.   sep = get_variable("sep")
  7.   prefix = get_variable("string_prefix")
  8.   output = prefix + sep + string
  9.   set_variable("string", output)
  10. }
  11.  
  12. function post_string(string) {
  13.   sep = get_variable("sep")
  14.   output = string + sep + args
  15.   set_variable("string", string)
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement