Patrick Quinn
2011-07-06 12:49:49 UTC
Ok, So in my script, there's this one part where it has to loop.
it's like for i = 1 to amount
set Browser = CreateObject ("InternetExplorer.application")
Browser.visible = true
Browser.Navigate(Site)
Do While Browser.Busy
WScript.sleep 10
Loop
So I want to change one part in the "Site" Variable,
here's what it's called Site = "http://www.roblox.com/My/PrivateMessage… + PersonID
I want to add 1 to the Recipient ID (So PersonID + 1)
Anyone know how to fix that part?