Change Proxy
From UBot Studio
(Difference between revisions)
Line 2: | Line 2: | ||
This command will use whatever proxy you place into it. | This command will use whatever proxy you place into it. | ||
+ | |||
+ | '''Proxies (ip:port):''' The ip and port of the proxy the specified browser will be using. | ||
+ | |||
Proxies should be the format of ip:port | Proxies should be the format of ip:port | ||
When working with a list of proxies, simply insert the [[$next list item|next list item]] or the [[$random list item|randoms list item]] function in place of the ip and port. | When working with a list of proxies, simply insert the [[$next list item|next list item]] or the [[$random list item|randoms list item]] function in place of the ip and port. |
Revision as of 16:16, 25 April 2013
Change Proxy is a Settings Command.
This command will use whatever proxy you place into it.
Proxies (ip:port): The ip and port of the proxy the specified browser will be using.
Proxies should be the format of ip:port When working with a list of proxies, simply insert the next list item or the randoms list item function in place of the ip and port.
Example
change proxy("120.203.215.6:80") navigate("http://www.whatismyip.com/", "Wait")
To use proxies within a list, simply create your list with the add list to list command and insert either the next list item or the randoms list item function into the change proxy command.
add list to list(%my proxies, $list from file("C:\\Users\\UBook\\Downloads\\myproxies.txt"), "Delete", "Global") change proxy($random list item(%my proxies)) navigate("http://www.whatismyip.com/", "Wait")
To revert back to browsing without a proxy, simple set the change proxy command to "None".
change proxy("None") navigate("http://www.whatismyip.com/", "Wait")