Looking for some SCAR code

Discussion in 'Code Snippets and Tutorials' started by orangejellybean, Apr 18, 2007.

  1. orangejellybean

    orangejellybean Level III

    Joined:
    Mar 10, 2007
    Messages:
    409
    Likes Received:
    2
    I just cant seem to figure it out; I want to make scar refersh over and over again, so how can I do this?

    PS this is not for neopets; no worries for scar.

    Also, I want this to work while I play in other places on a differand tab.
     
  2. Billy

    Billy Level IV

    Joined:
    Feb 21, 2007
    Messages:
    1,856
    Likes Received:
    39
    well, you cant do one thing while scar does another, sorry. anyways to keep refreshing all you do is
    Code (Text):
    1. repeat
    2. *code you want repeated*
    3. until(false)
     
  3. orangejellybean

    orangejellybean Level III

    Joined:
    Mar 10, 2007
    Messages:
    409
    Likes Received:
    2
    well, could I do it in vb?
     
  4. Billy

    Billy Level IV

    Joined:
    Feb 21, 2007
    Messages:
    1,856
    Likes Received:
    39
    yes, the code would be this
    Code (Text):
    1. dim stoploop as boolean
    2. do until stoploop=false
    3. *code to loop*
    4. loop