I've been working a while now on a bot in IMacros. I'm almost done, but now I'm having a problem that I have actually no idea why it doesn't work. I have a .csv with proxies, and I want to import them to the bot. The code looks like this:
All of it works except the fourth line. I get this the error message:

I've even tried to add a different column for the port but that doesn't help. If I add the proxy manually like this it still works:
It works even though I import the password and username.
Does anybody know how I could fix this. I would be so grateful, and of course, rep and thanks for whoever helps me. Thanks in advanced!
Code:
CMDLINE !DATASOURCE ProxyList.csvSET !DATASOURCE_COLUMNS 4
SET !DATASOURCE_LINE {{!LOOP}}
Proxy Address={{!COL1}}
SET !ENCRYPTION NO
ONLOGIN USER={{!COL2}} PASSWORD={{!COL3}}
All of it works except the fourth line. I get this the error message:

I've even tried to add a different column for the port but that doesn't help. If I add the proxy manually like this it still works:
Code:
CMDLINE !DATASOURCE ProxyList.csvSET !DATASOURCE_COLUMNS 4
SET !DATASOURCE_LINE {{!LOOP}}
Proxy Address = 123.123.123.123:80
SET !ENCRYPTION NO
ONLOGIN USER={{!COL3}} PASSWORD={{!COL4}}
It works even though I import the password and username.
Does anybody know how I could fix this. I would be so grateful, and of course, rep and thanks for whoever helps me. Thanks in advanced!