06-26-2014, 04:18 AM
I think he was looking more for a way to, say, have a DWAINE session via PDA, maybe. I know that'd certainly be a bit useful.
Really wish there was a list of shit DWAINE's scripting could do, unless what you see is literally all it can do. Shit like escaping |ns or ^s (though I guess a single | will turn into a ^ after an echo or something???).
I was hoping for a way to iterate over a variable, something like this:
...but it doesn't seem like that's possible (there's no "eval" or looping?). oh well!
Really wish there was a list of shit DWAINE's scripting could do, unless what you see is literally all it can do. Shit like escaping |ns or ^s (though I guess a single | will turn into a ^ after an echo or something???).
I was hoping for a way to iterate over a variable, something like this:
Code:
i = 0
while i < 10
mkdir i
i = i + 1
end