View Single Post
12-04-09, 08:43 AM   #3
nightcracker
A Molten Giant
 
nightcracker's Avatar
AddOn Author - Click to view addons
Join Date: Sep 2009
Posts: 716
Simple:

Code:
local function vertical(s)
	local p = string.sub(s, 1, 1)
	for i = 2, string.len(s) do
		p = p.."\n"..string.sub(s, i, i)
	end
	return p
end
__________________
Three things are certain,
Death, taxes and site not found,
You, victim of one.
  Reply With Quote