Results 1 to 11 of 11

Thread: Unknown identifier 'Smart_Server'

  1. #1
    Join Date
    Feb 2010
    Location
    On the edge of space
    Posts
    160
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Unknown identifier 'Smart_Server'

    Code:
    program new;
    
    {.include/SRL/SRL/Misc/SMART.scar}
    {.include/SRL/SRL.scar}
    
    const
      SmartWorld       = 15;
      SmartMembers     = False;
      SmartSigned      = True;
      SmartSuperDetail = False;
    
    begin
      Smart_Server      := SmartWorld;
      Smart_Members     := SmartMembers;
      Smart_Signed      := SmartSigned;
      Smart_SuperDetail := SmartSuperDetail;
      SetupSRL;
    end.
    Code:
    [Error] (13:3): Unknown identifier 'Smart_Server' at line 13
    Compiling failed.
    I don't understand why it's giving me this error??

  2. #2
    Join Date
    Feb 2009
    Location
    AZ, USA
    Posts
    460
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    {.include SRL/SRL/misc/smart.scar}
    {.include SRL/SRL.scar}

    not

    SCAR Code:
    {.include/SRL/SRL/Misc/SMART.scar}
    {.include/SRL/SRL.scar}

    maybe?

  3. #3
    Join Date
    Nov 2007
    Location
    46696E6C616E64
    Posts
    3,069
    Mentioned
    44 Post(s)
    Quoted
    302 Post(s)

    Default

    SCAR Code:
    program new;
    {.include SRL/SRL/Misc/SMART.scar}
    {.include SRL/SRL.scar}

    const
      SmartWorld       = 15;
      SmartMembers     = False;
      SmartSigned      = True;
      SmartSuperDetail = False;

    begin
      SetupSRL;
      Smart_Server      := SmartWorld;
      Smart_Members     := SmartMembers;
      Smart_Signed      := SmartSigned;
      Smart_SuperDetail := SmartSuperDetail;
    end.
    There used to be something meaningful here.

  4. #4
    Join Date
    Feb 2009
    Location
    AZ, USA
    Posts
    460
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    So is it working now?
    ...

  5. #5
    Join Date
    May 2007
    Location
    knoxville
    Posts
    2,873
    Mentioned
    7 Post(s)
    Quoted
    70 Post(s)

    Default

    Quote Originally Posted by Frement View Post
    SCAR Code:
    program new;
    {.include SRL/SRL/Misc/SMART.scar}
    {.include SRL/SRL.scar}

    const
      SmartWorld       = 15;
      SmartMembers     = False;
      SmartSigned      = True;
      SmartSuperDetail = False;

    begin
      SetupSRL;
      Smart_Server      := SmartWorld;
      Smart_Members     := SmartMembers;
      Smart_Signed      := SmartSigned;
      Smart_SuperDetail := SmartSuperDetail;
    end.
    wouldnt that load smart before the custom vars are declared?
    <TViYH> i had a dream about you again awkwardsaw
    Malachi 2:3

  6. #6
    Join Date
    Nov 2007
    Location
    46696E6C616E64
    Posts
    3,069
    Mentioned
    44 Post(s)
    Quoted
    302 Post(s)

    Default

    Quote Originally Posted by Awkwardsaw View Post
    wouldnt that load smart before the custom vars are declared?
    Hmmh, i dunno I havent tested.'

    EDIT:
    Fixed version
    SCAR Code:
    program new;
    {.include SRL/SRL/Misc/SMART.scar}
    {.include SRL/SRL.scar}

    const
      SmartWorld       = 15;
      SmartMembers     = False;
      SmartSigned      = True;
      SmartSuperDetail = False;

    begin
      Smart_Signed      := SmartSigned;
      Smart_SuperDetail := SmartSuperDetail;
      Smart_Server      := SmartWorld;
      Smart_Members     := SmartMembers;
      SetupSRL;
    end.
    There used to be something meaningful here.

  7. #7
    Join Date
    Dec 2006
    Location
    Houston, TX USA
    Posts
    4,791
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Awkwardsaw View Post
    wouldnt that load smart before the custom vars are declared?
    Yes

  8. #8
    Join Date
    Feb 2010
    Location
    On the edge of space
    Posts
    160
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Code:
    Exception in Script: Plugins(libsmart) has not been found
    I have moved all my plugins from '..\Includes\SRL\place inside plugins folder\' to '..\Plugins\'.

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

    Default

    use the srl.sex extention.

    It will install it all for you.
    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

  10. #10
    Join Date
    Feb 2010
    Location
    On the edge of space
    Posts
    160
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Nava2 View Post
    use the srl.sex extention.

    It will install it all for you.
    How do I run that?

    Code:
    [Error] (27:33): Unknown identifier 'Settings' at line 27

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

    Default

    Go view -> extentions and enable srl.sex.
    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

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
  •