Advertisement
Dudugz-Contistente

Untitled

Oct 24th, 2017
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. local norm_print = print local print=function(...)
  2. local toprint = ''
  3. local values = table.pack(...)
  4. local i = 0
  5.  
  6. for _,value in pairs(values) do
  7. i=i+1
  8.  
  9. if i < #values then
  10. toprint = toprint .. value .. '<N2><B>,</B></N2>'
  11. else
  12. toprint = toprint .. value
  13. end
  14. end
  15.  
  16. if #values > 1 then
  17. norm_print('<N2><B>[</B></N2>'..toprint:sub(1,#toprint-1)..'<N2><B>]</B></N2>')
  18. else
  19. norm_print(toprint:sub(1,#toprint-1))
  20. end
  21. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement