Advertisement
Guest User

Untitled

a guest
Jul 3rd, 2013
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. addToQueue = function (stuff, alias)
  2. if alias == true then
  3. queue = {["command"] = stuff, ["alias"] = true}
  4. else
  5. queue = {["command"] = stuff, ["alias"] = false}
  6. end
  7. end
  8.  
  9. doStuffInQueue = function ()
  10. if queue.alias == true then
  11. expandAlias(queue.command)
  12. else
  13. send(queue.command)
  14. end
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement