Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local norm_print = print local print=function(...)
- local toprint = ''
- local values = table.pack(...)
- local i = 0
- for _,value in pairs(values) do
- i=i+1
- if i < #values then
- toprint = toprint .. value .. '<N2><B>,</B></N2>'
- else
- toprint = toprint .. value
- end
- end
- if #values > 1 then
- norm_print('<N2><B>[</B></N2>'..toprint:sub(1,#toprint-1)..'<N2><B>]</B></N2>')
- else
- norm_print(toprint:sub(1,#toprint-1))
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement