Page 6 of 19 FirstFirst ... 4567816 ... LastLast
Results 126 to 150 of 464

Thread: SCAR Divi (3.0) official thread

  1. #126
    Join Date
    Jun 2006
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR looks good with the XPManifest Component
    Nice job Freddy

  2. #127
    Join Date
    Feb 2006
    Location
    Belgium
    Posts
    3,137
    Mentioned
    3 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by CFJ0 View Post
    SCAR looks good with the XPManifest Component
    Nice job Freddy
    The XPManifest component was used in every scar cfj0

  3. #128
    Join Date
    Apr 2006
    Location
    I live in NH
    Posts
    611
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    I posted this before, but I'll just say it again. You can use scar on Ubuntu Linux 6.10. When I had Ubuntu 6.10, I installed the regular Wine program and installed it. Then I ran something like...

    wine c:\program files\scar 2.03\scar.exe

    And it worked! It was a little small, but I tried to run a simple program to move the mouse, and it worked just fine.

  4. #129
    Join Date
    Sep 2006
    Location
    Scripter's Heaven
    Posts
    455
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    uggg... i dont want wine, im under age...

    And check out my pascal interpreter!
    <R0b0t1> No, really, I went to a bar and picked up a transvestite.

  5. #130
    Join Date
    Feb 2006
    Location
    Belgium
    Posts
    3,137
    Mentioned
    3 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by Ron View Post
    I posted this before, but I'll just say it again. You can use scar on Ubuntu Linux 6.10. When I had Ubuntu 6.10, I installed the regular Wine program and installed it. Then I ran something like...

    wine c:\program files\scar 2.03\scar.exe

    And it worked! It was a little small, but I tried to run a simple program to move the mouse, and it worked just fine.
    Wine didn't use to be able to run scripts in scar

    Quote Originally Posted by lardmaster View Post
    uggg... i dont want wine, im under age...
    lol

  6. #131
    Join Date
    Apr 2006
    Location
    I live in NH
    Posts
    611
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Wine can now. I last tested that about 4 months ago. Wine should be even better now at emulation. Try it out.
    Screenshot: http://img172.imageshack.us/img172/9...eenshotqb2.png

    Oh and in case you forgot, here is that bug again with the SCAR's "Load DFM Form" under Tools.

    Reproduce the bug:
    1. Open SCAR's form editor. Tools > Form Editor.
    2. Click on a ListBox and place it on the form.
    3. Click on the ListBox you just added, and look for Items on the left side of the Object Inspector, find that, look to the left of that and open up TStrings.
    4. Copy and paste this exactly into the box.
    ListBox1ListBox1ListBox1ListBox1ListBox1ListBox1Li stBox1ListBox1ListBox1ListBox1ListBox1ListBox1List Box1ListBox1ListBox1ListBox1ListBox1ListBox1ListBo x1

    ListBox1ListBox1ListBox1ListBox1ListBox1ListBox1
    5. Now click on OK and save the form somewhere.
    6. Go back to SCAR and click on Tools > Load DFM Form and select the form you just created. And you should receive this error.



    If you ever have looked inside of a DFM form, you will notice all these objects and parameters and such similar to the code generated by scar. Well if you look at the listbox object after you have added the strings, you will see something like this:

    Code:
      object ListBox1: TListBox
        Left = 20
        Top = 20
        Width = 121
        Height = 97
        ItemHeight = 13
        Items.Strings = (
          
            'ListBox1ListBox1ListBox1ListBox1ListBox1ListBox1ListBox1ListBox1' +
            'ListBox1ListBox1ListBox1ListBox1ListBox1ListBox1ListBox1ListBox1' +
            'ListBox1ListBox1ListBox1'
          ''
          'ListBox1ListBox1ListBox1ListBox1ListBox1ListBox1')
        TabOrder = 8
      end
    The problem is the empty line right after "Items.Strings = (", delete that, save the file and try to load the file again, and it works fine.

    ~Ron

  7. #132
    Join Date
    Jun 2006
    Location
    United States of America, Planet Earth, The Milky Way
    Posts
    32
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Oh hey guys. I found out how to make a mega virus with scar a few years back. Please fix this bug, so it cannot be abused, and turned into a virus.

    While you run the script, it compiles while it is running, which makes it impossible to stop. then what it does is it runs the script again, locks that to impossible to stop, repeats, over and over, while keeping the mouse locked at (0,0), keeps on closing task manager if it shows up, and makes sure you cant turn off the computer without unplugging it.

    this all happens because of the glitch of being able to compile a script while it is running, and the script not stopping before it compiles.
    Exp(a+b*i)=Exp(a)*Exp(b*i)=Exp(a)*(Cos(b)+i*Sin(b) )

  8. #133
    Join Date
    Dec 2006
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    umm...looks nice.. :P when this gonna be able to download?

  9. #134
    Join Date
    Apr 2006
    Location
    I live in NH
    Posts
    611
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Nazgand, did you use something like this?

    Code:
    program New;
    
    begin
      ClearDebug;
      repeat
        MoveMouse(0, 0);
        GetApplication.Run;
      until(IsFKeyDown(12))
    end.

  10. #135
    Join Date
    Jan 2007
    Posts
    9
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I think its good to update this program...

    The new features sound good


    I hope this will increase the art or **-Cheating =)

  11. #136
    Join Date
    Jun 2006
    Posts
    3,861
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    Freddy, if you run a script like
    SCAR Code:
    program New;
    begin
      repeat
        writeln('running');
        wait(1000);
      until(false)
    end.
    and, while it's running, compile it, you can run it again. You can keep doing that so more than one of that script is running at a time.

    I'm not sure if that's what you meant, Nazgand. I found that out awhile back.

  12. #137
    Join Date
    Apr 2006
    Location
    I live in NH
    Posts
    611
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    He's talking about how he can rerun the program within the script. Right nazgand? That's why I was guessing it was the command: "GetApplication.Run;"

  13. #138
    Join Date
    Jun 2006
    Posts
    250
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Looking good guys! Im very very impressed!!!111oneone!1!!!

  14. #139
    Join Date
    Feb 2006
    Location
    Franklin, Ohio, USA
    Posts
    991
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    I will test out if it will run under WINE right now, sounds sexy. <3

  15. #140
    Join Date
    Jun 2006
    Posts
    3,861
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    It will work with WINE, but you can't target anything with the crosshair.

  16. #141
    Join Date
    Sep 2006
    Location
    Scripter's Heaven
    Posts
    455
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    thats what i figured the problem would be

    And check out my pascal interpreter!
    <R0b0t1> No, really, I went to a bar and picked up a transvestite.

  17. #142
    Join Date
    Oct 2006
    Location
    Kentucky
    Posts
    70
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    It probably says this somewhere in there but is there an expected release date?
    I understand it takes alot of time Im just wondering!
    Thanks
    DrowningTrout
    If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly. - put this in your sig

  18. #143
    Join Date
    Nov 2006
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    OMG, this be leet, cant wait for it.

    did you get authorised by kait to edit scar?
    If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly.
    - put this in your sig

  19. #144
    Join Date
    Feb 2006
    Location
    Franklin, Ohio, USA
    Posts
    991
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by jp-skate122 View Post
    did you get authorised by kait to edit scar?
    Kaitnieks gave Freddy1990 the source code...

  20. #145
    Join Date
    Apr 2006
    Location
    I live in NH
    Posts
    611
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Found another bug in scar.

    Status Bar disappearance. Here are the steps to reproduce the bug.

    1. Open up SCAR.
    2. Maximize it.
    3. Now move the mouse in the bottom right hand corner, and when the Resize Icon appears, click and hold the mouse and drag it some where in the Top Left corner and release the mouse.
    4. Finally, normalize (or restore down) the window, and there isn't a status bar. It's gone!

    Screenshot:


    Also were you able to fix the last bug I submitted, freddy?

    ~Ron

  21. #146
    Join Date
    Feb 2006
    Location
    Belgium
    Posts
    3,137
    Mentioned
    3 Post(s)
    Quoted
    5 Post(s)

    Default

    I haven't fixed it yet, I haven't worked on it the last couple of days, i wanted to install linux for multiplatform support experiments and it just drove me crazy

  22. #147
    Join Date
    Apr 2006
    Location
    I live in NH
    Posts
    611
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    I'm sure you'll fix it soon enough. What do you think about the bug I just posted?

  23. #148
    Join Date
    Feb 2006
    Location
    Belgium
    Posts
    3,137
    Mentioned
    3 Post(s)
    Quoted
    5 Post(s)

    Default

    Lol, i think it's funny ^^
    I'll see what i can do

  24. #149
    Join Date
    Sep 2006
    Location
    Scripter's Heaven
    Posts
    455
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    freddy, i can try to help you with any linux problems you have... my advice, get ubuntu. it is very good for first-time users.

    And check out my pascal interpreter!
    <R0b0t1> No, really, I went to a bar and picked up a transvestite.

  25. #150
    Join Date
    Mar 2006
    Location
    USA
    Posts
    948
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Hey Freddy I like the export to HTML function

    also will SCAR forms support the TWebBrowser?

Page 6 of 19 FirstFirst ... 4567816 ... LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Official CS 1.6 Download Thread!
    By yanix in forum Gaming
    Replies: 0
    Last Post: 12-26-2007, 11:28 AM
  2. My Official Stats Thread
    By mark9510 in forum News and General
    Replies: 1
    Last Post: 10-08-2007, 03:57 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •