Forum
CS2D Scripts Have you seen this error before?Have you seen this error before?
6 replies 1
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
function tableToString(t, n, d) 	local s = "" 	if (n == nil) then n = 1 end 	if n<1 then n = 1 end 	if not d then d = " " end 	while (n <= #t) do 		s = s .. t[n] .. "".. d 		n = n + 1 	end 	return s -- <= line 79 end
this isn't a recursive call though so either the file was changed or maybe the stack overflowed from all of the variables... (not likely since we only pushed one extra object onto the stack which switches to at least 200 objects)
Maybe he uses an older version of the code? I searched around a little, found some old code at assembla, but line 79 is an if statement there so it can't cause an overflow either.
EngiN33R has written
Something is wrong with your code
and not 'Something is wrong with Lee's code'/'something is wrong with the mod!'.
Most likely he modified the script and did something wrong.
1