Approved by Gaios
Download
74 kb, 190 Downloads
stats(steam,"rank")to this
steamstats(steam,"rank").
<text size = "15" color="#BABABA" align="left"> <!-- FIRST PLACE --> To be updated </text>
--- Undefined: -- id // Player ID -- position // Player position on the board -- playerLogin // Player login ID, U.S.G.N. or STEAM local filePath	= 'sys/serverinfo.txt' local file, _	= io.open(filePath, 'r') if not file then 	return end local output	= { } for line in file:lines() do 	if position == 1 and line:find('FIRST PLACE') 		or position == 2 and line:find('SECOND PLACE') 		or position == 3 and line:find('THIRD PLACE') then 		output[#output+1] = player(id, 'name') .. '#' .. playerLogin 	else 		output[#output+1] = line 	end end