Page 5 of 6 FirstFirst ... 3456 LastLast
Results 101 to 125 of 136

Thread: SCAR 3.21 Alpha

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

    Default

    Quote Originally Posted by Nadeem View Post
    Freddy if you could do that, it'll be AWESOME
    ~NS
    That's just not possible...

  2. #102
    Join Date
    Jan 2008
    Location
    Ontario, Canada
    Posts
    7,805
    Mentioned
    5 Post(s)
    Quoted
    3 Post(s)

    Default

    Quote Originally Posted by Freddy1990 View Post
    That's just not possible...
    Thats not pascal
    Writing an SRL Member Application | [Updated] Pascal Scripting Statements
    My GitHub

    Progress Report:
    13:46 <@BenLand100> <SourceCode> @BenLand100: what you have just said shows you 
                        have serious physchological problems
    13:46 <@BenLand100> HE GETS IT!
    13:46 <@BenLand100> HE FINALLY GETS IT!!!!1

  3. #103
    Join Date
    Oct 2006
    Location
    ithurtsithurtsithurtsithurts
    Posts
    2,930
    Mentioned
    7 Post(s)
    Quoted
    135 Post(s)

    Default

    Quote Originally Posted by Freddy1990 View Post
    That's just not possible...
    It's a pity. I'd love to be able to do for..in loops.

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

    Default

    Quote Originally Posted by Nava2 View Post
    Thats not pascal
    Well, I didn't write the script engine so don't blame me.

  5. #105
    Join Date
    Sep 2006
    Posts
    6,089
    Mentioned
    77 Post(s)
    Quoted
    43 Post(s)

    Default

    You can achieve a similar result by using cases:

    SCAR Code:
    program New;

    function InStr(s: Char): Boolean;
    begin
      case s of
        'A'..'z': Result := True;
        else
          Result := False;
      end;
    end;

    begin
      WriteLn(BoolToStr(InStr('a')));
      WriteLn(BoolToStr(InStr('!')));
    end.

  6. #106
    Join Date
    Dec 2008
    Location
    In a galaxy far, far away...
    Posts
    584
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by nielsie95 View Post
    You can achieve a similar result by using cases:

    SCAR Code:
    program New;

    function InStr(s: Char): Boolean;
    begin
      case s of
        'A'..'z': Result := True;
        else
          Result := False;
      end;
    end;

    begin
      WriteLn(BoolToStr(InStr('a')));
      WriteLn(BoolToStr(InStr('!')));
    end.
    WTH.. Is this new in SCAR? I swear I tried that like last month and it never worked

    oh yea.. so Freddy.. Umm Maybe ASM code support? xP



    ~NS

  7. #107
    Join Date
    Apr 2007
    Posts
    3,152
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by Nadeem View Post
    WTH.. Is this new in SCAR? I swear I tried that like last month and it never worked

    oh yea.. so Freddy.. Umm Maybe ASM code support? xP
    ~NS
    ive said it before and ill say it again...Nielsie95 is magic.
    SCAR Tutorials: The Form Tutorial | Types, Arrays, and Classes
    Programming Projects: NotePad | Tetris | Chess


  8. #108
    Join Date
    Sep 2006
    Posts
    457
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    
    
    
    
    
     |Pest Controller
     |Worked for : 10 Seconds
     |Location: Choosing world 144
     |Wins: 0

     |Zeals: 0
    
    [Runtime Error] : Exception: Access violation at address 0071FE7F in module 'scar 3.21.exe'. Read of address 00000000 in line 301 in script C:\Documents and Settings\admin\Desktop\SRL/SRL/Core/Text.scar



    what's going on?
    Finished my curser ---> it's in mage section.

  9. #109
    Join Date
    Jul 2007
    Posts
    94
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by jesus45 View Post
    
    
    
    
    
     |Pest Controller
     |Worked for : 10 Seconds
     |Location: Choosing world 144
     |Wins: 0

     |Zeals: 0
    
    [Runtime Error] : Exception: Access violation at address 0071FE7F in module 'scar 3.21.exe'. Read of address 00000000 in line 301 in script C:\Documents and Settings\admin\Desktop\SRL/SRL/Core/Text.scar



    what's going on?
    Try running it as admin.
    Ongoing Project:
    Treehugger 1.0

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

    Default

    Quote Originally Posted by jesus45 View Post




    |Pest Controller
    |Worked for : 10 Seconds
    |Location: Choosing world 144
    |Wins: 0

    |Zeals: 0

    [Runtime Error] : Exception: Access violation at address 0071FE7F in module 'scar 3.21.exe'. Read of address 00000000 in line 301 in script C:\Documents and Settings\admin\Desktop\SRL/SRL/Core/Text.scar



    what's going on?
    The OCR is having difficulties with the newly added characters for RS, I'm working on a solution. What version of SRL are you using?
    Last edited by Freddy1990; 07-17-2009 at 08:29 PM.

  11. #111
    Join Date
    Oct 2007
    Location
    Florida, USA
    Posts
    486
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I have the same access violation problem. Ive tried running as ADmin, i used Dev SRL.
    What do Harry and God have in common?
    They are the same person!

  12. #112
    Join Date
    Sep 2006
    Posts
    457
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    yeah i am using the same thing
    Finished my curser ---> it's in mage section.

  13. #113
    Join Date
    Oct 2008
    Location
    behind you!
    Posts
    1,688
    Mentioned
    2 Post(s)
    Quoted
    40 Post(s)

    Default

    Quote Originally Posted by Freddy1990 View Post
    It's fixed, have fun
    <3 !!!
    Hi

  14. #114
    Join Date
    Feb 2006
    Location
    Amsterdam
    Posts
    13,692
    Mentioned
    146 Post(s)
    Quoted
    130 Post(s)

    Default

    Quote Originally Posted by Nadeem View Post
    oh yea.. so Freddy.. Umm Maybe ASM code support? xP
    ~NS
    Pascal Script (SCAR's Scripting Engine) isn't exactly the most bug-free engine I know, but it is the only decent and open source one for Pascal. It is said to have support for Delphi, Kylix and FPC, but FPC support is still very experimental.

    My point: If you want something in the engine, leave a post/mail at their mailing list, and someone may add it.



    The best way to contact me is by email, which you can find on my website: http://wizzup.org
    I also get email notifications of private messages, though.

    Simba (on Twitter | Group on Villavu | Website | Stable/Unstable releases
    Documentation | Source | Simba Bug Tracker on Github and Villavu )


    My (Blog | Website)

  15. #115
    Join Date
    Dec 2008
    Location
    In a galaxy far, far away...
    Posts
    584
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Wizzup? View Post
    Pascal Script (SCAR's Scripting Engine) isn't exactly the most bug-free engine I know, but it is the only decent and open source one for Pascal. It is said to have support for Delphi, Kylix and FPC, but FPC support is still very experimental.

    My point: If you want something in the engine, leave a post/mail at their mailing list, and someone may add it.
    Oh I see, I always thought kaitnieks and freddy developed the engine :/ ~ np I guess this is good enough for now though



    ~NS

  16. #116
    Join Date
    Jun 2009
    Location
    Behind you.
    Posts
    94
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Hey,
    I'm a bit scuppered with what to do here mate.
    I'm wanting to get Macroing again, I have downloaded the new Scar.exe, and I believe now that I need to download the new Font's folder etc etc..

    However for some silly reason none of my PC's like SVN, meaning I have to download everything manually, now for SRL its not really a problem 100 files ish doesnt take to long.
    But 100+ for each Font pack etc etc is just silly..

    How can I go about getting the new client without having to use SVN or download manually, can you upload an Installer as you have for previous clients..

    Oh here is my SVN error message incase you know what's wrong with it?

    Error: OPTIONS of 'http://freddy1990.com/svn/scarprerelease': 200 OK (http://freddy1990.com)

    Cheeers
    Sammm

  17. #117
    Join Date
    Dec 2008
    Posts
    2,813
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I use 3.21 Alpha now, and I set it to be the default program when I open a .scar file, but when I open a .scar file, it just says

    SCAR Code:
    Program New;
    begin
    end.

    It's not a problem for me, really, I just File > Reopen the file I want, but yeah, just thought you should know. (Might just be my stupidity, but I wanted to check )

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

    Default

    Quote Originally Posted by samm View Post
    Hey,
    I'm a bit scuppered with what to do here mate.
    I'm wanting to get Macroing again, I have downloaded the new Scar.exe, and I believe now that I need to download the new Font's folder etc etc..

    However for some silly reason none of my PC's like SVN, meaning I have to download everything manually, now for SRL its not really a problem 100 files ish doesnt take to long.
    But 100+ for each Font pack etc etc is just silly..

    How can I go about getting the new client without having to use SVN or download manually, can you upload an Installer as you have for previous clients..

    Oh here is my SVN error message incase you know what's wrong with it?

    Error: OPTIONS of 'http://freddy1990.com/svn/scarprerelease': 200 OK (http://freddy1990.com)

    Cheeers
    Sammm
    Try disabling your firewall/antivirus...

    Quote Originally Posted by 99_ aka ian. View Post
    I use 3.21 Alpha now, and I set it to be the default program when I open a .scar file, but when I open a .scar file, it just says

    SCAR Code:
    Program New;
    begin
    end.

    It's not a problem for me, really, I just File > Reopen the file I want, but yeah, just thought you should know. (Might just be my stupidity, but I wanted to check )
    Works fine for me... Be sure to do this by pressing "Associate .scar files" in the tools menu though...

  19. #119
    Join Date
    Aug 2007
    Posts
    115
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    With the RC i got this error with any script:
    Failed when compiling
    Line 24: [Error] (182:1): Duplicate identifier 'FriendChars' in script C:\Users\Sap\Desktop\scarprerelease\includes\SRL/SRL/Core/Globals.scar
    But with the SCAR 3.21 Beta everything is fine. Just wanted to share that its a bug maybe

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

    Default

    Quote Originally Posted by sapetto View Post
    With the RC i got this error with any script:

    But with the SCAR 3.21 Beta everything is fine. Just wanted to share that its a bug maybe
    SRL isn't compatible with the latest update, I'll fix that in SRL once I get a new account for the dev SVN or whena notehr dev uploads my patches to the repos.

    You can apply the patches yourself with TortoiseSVN if you want though...
    Last edited by Freddy1990; 07-20-2009 at 11:02 PM.

  21. #121
    Join Date
    Jan 2008
    Location
    Ontario, Canada
    Posts
    7,805
    Mentioned
    5 Post(s)
    Quoted
    3 Post(s)

    Default

    http://pastebin.com/m681f383f

    Just so you know

    That was a major crash I got.
    Writing an SRL Member Application | [Updated] Pascal Scripting Statements
    My GitHub

    Progress Report:
    13:46 <@BenLand100> <SourceCode> @BenLand100: what you have just said shows you 
                        have serious physchological problems
    13:46 <@BenLand100> HE GETS IT!
    13:46 <@BenLand100> HE FINALLY GETS IT!!!!1

  22. #122
    Join Date
    Jun 2009
    Location
    Behind you.
    Posts
    94
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Freddy1990 View Post
    Try disabling your firewall/antivirus...
    Already tried, I have no idea what it could be, there is simply nothing blocking/denying it access, I've disabled it all.
    I've reinstalled SVN.
    I just don't know what is left for me to do lol.

    Will you be releasing compiled .exe's or .msi's for us to install it?
    That'd be ideal if you could

    xxxxxxxx
    Last edited by samm; 07-21-2009 at 11:05 AM. Reason: quoteboxwronggg

  23. #123
    Join Date
    Apr 2009
    Posts
    21
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Does smart work? Because I downloaded the latest repositories but this still shows up on every script I use:

    Failed when compiling
    Line 4: [Error] (6:11): Unknown identifier 'SmartIsKeyDown' in script C:\Program Files\scarprerelease\includes\srl/srl/misc/smart.scar

  24. #124
    Join Date
    Dec 2007
    Location
    Kansas
    Posts
    79
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I feel stupid by asking this but how do i get it from "RC" to "Alpha".

  25. #125
    Join Date
    Dec 2008
    Posts
    2,813
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I tried Associate .scar files, Freddy, but it said that '' isn't a valid something (or something like that).

Page 5 of 6 FirstFirst ... 3456 LastLast

Thread Information

Users Browsing this Thread

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

Posting Permissions

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