Reply to scope
If you don't have an account, just leave the password field blank.
let's say you ran a script, we'll call it box.c, and somewhere in that script, you called external() to another script, we'll call it dog.c. would the local variables from dog.c now apply to box.c as well (you could do something with the variables in dog.c from box.c)? and if not, how do i get them to without using global variables?