Quick question re: load_html

InfiniusDev

New member
Am I missing something obvious here? Why does "load_html" not work?

Code:
print("before working");
buffer result1 = visit_url("http://www.google.com"); //<-- this works. (html for page)
print(result1);
print("after working");

print("before not working");
buffer result2 = load_html("http://www.google.com"); //<-- this doesn't? (empty string)
print(result2);
print("after not working");

Environment:
Windows 7 sp1, x64
KoLmafia v15.6 r11532
Java 1.6.0_35
 
Last edited:
Top