zarqon
Well-known member
I just checked this out -- exactly what the doctor ordered!
Just a suggestion: you could avoid a lot of repeated code in your parseall() by using entities:
Just a suggestion: you could avoid a lot of repeated code in your parseall() by using entities:
PHP:
void parseall() {
for i from 65 to 90 {
print(entity_decode("&#"+i+";"));
parseManuel("questlog.php?which=6&vl="+entity_decode("&#"+(i+32)+";"));
}
print("Now I know my ABCs!");
parseManuel("questlog.php?which=6&vl=-");
}