Pasting scripts into the console
Posted: Thu May 07, 2015 11:12 pm
I'm playing LoG2 under Windows XP with SP 3.
When I paste a script into the console with Ctrl-V, LoG2 removes all line breaks.
It would be better if it converted them into spaces.
This script
is converted to
which produces an error.
When I paste a script into the console with Ctrl-V, LoG2 removes all line breaks.
It would be better if it converted them into spaces.
This script
Code: Select all
for i = 1, 10 do
for j = 1, 10 do
print("test")
end
end
Code: Select all
for i = 1, 10 do for j = 1, 10 do print("test") endend