Results 1 to 9 of 9

Thread: *sigh* New update, some problems?

  1. #1
    Join Date
    Feb 2011
    Location
    The Future.
    Posts
    5,600
    Mentioned
    396 Post(s)
    Quoted
    1598 Post(s)

    Default *sigh* New update, some problems?

    Type------------Line-------File-------------------Problem/Message

    Compiling Error---336----AntiRandoms.scar----UnknownIdentifier 'SetDTMName'


    That... just started happening when both simba and scar said there is an update :S and I pressed update...


    P.S. Also why does simba not have this command?:

    SendInterSCARMessage('Channel1', s);

    & can anyone point me to a tut on setting up reflection in SCAR... cuz simba doesn't have that command so i gotta transfer my script to scar
    I am Ggzz..
    Hackintosher

  2. #2
    Join Date
    Feb 2006
    Location
    Tracy/Davis, California
    Posts
    12,631
    Mentioned
    135 Post(s)
    Quoted
    418 Post(s)

    Default

    Kind of lost on what you are saying?
    Update your SIMBA/SRL/Reflection and then restart Simba and try again.

    Also, it would help a lot if you told us what script you were running.

  3. #3
    Join Date
    Mar 2007
    Posts
    3,116
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Quote Originally Posted by ggzz View Post
    Type------------Line-------File-------------------Problem/Message

    Compiling Error---336----AntiRandoms.scar----UnknownIdentifier 'SetDTMName'


    That... just started happening when both simba and scar said there is an update :S and I pressed update...


    P.S. Also why does simba not have this command?:

    SendInterSCARMessage('Channel1', s);

    & can anyone point me to a tut on setting up reflection in SCAR... cuz simba doesn't have that command so i gotta transfer my script to scar
    SRL-Reflection does not work on scar. But RRL does

  4. #4
    Join Date
    Feb 2011
    Location
    The Future.
    Posts
    5,600
    Mentioned
    396 Post(s)
    Quoted
    1598 Post(s)

    Default

    :S I did all that.. I removed all includes, reinstalled them all it still says:

    unknown Identifier SetDTMName..

    the script looks like this:

    SCAR Code:
    Program New;
    {.include Srl/srl.scar}

    begin
    writeln('test');
    end.

    Thats it.. thats the entire script... I took out everything because it kept giving me that error in antiban.scar

    Even reinstalling didnt work.. Iunno if its a new update or something to the antiban but it just doesnt work :S

    And the last and final problem is that in simba it doesnt have the command/function:
    SendInterSCARMessage('Channel1', s);

    which scar has...
    I am Ggzz..
    Hackintosher

  5. #5
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default

    Simba has an auto updater for SRL+Reflection in the extensions menu.


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

  6. #6
    Join Date
    Feb 2011
    Location
    The Future.
    Posts
    5,600
    Mentioned
    396 Post(s)
    Quoted
    1598 Post(s)

    Default

    Quote Originally Posted by Harry View Post
    Simba has an auto updater for SRL+Reflection in the extensions menu.
    Its already checked... i even manually did it.. that simba command doesnt exist..

    As for scar.. I reinstalled it 3 times now, removed every folder manually + through add/remove programs, restarted the computer, reinstalled scar, went to file, include manager, installed pheonix, installed srl open dev.. it still has that antirandom problem..
    I am Ggzz..
    Hackintosher

  7. #7
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default

    I am pretty sure Reflection doesn't work on SCAR. May I ask why you're trying to use it on such?


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

  8. #8
    Join Date
    Feb 2011
    Location
    The Future.
    Posts
    5,600
    Mentioned
    396 Post(s)
    Quoted
    1598 Post(s)

    Default

    Cuz I was trying to run this in simba and it didnt work.. I was eventually putting this in my herblore maker which has reflection already..
    but since this doesnt work in simba, I decided Ill just put this in scar with the herblore reflection script

    So simba cant run this, and scar cant do reflection.. basically im screwed right?

    Simba Code:
    program ISMTutorial1;
    {.include SRL/SRL/Misc/Smart.scar}
    {.include SRL/SRL.scar}

    var
      s : string;

    begin
      repeat
        if IsFKeyDown(12) then
        begin
          s := ReadLn('What do you wish to type?');
          if s <> '' then
          begin
            SendInterSCARMessage('Channel1', s);
            Writeln('Sending message to type ''' + s + '''.');
          end;
          while IsFKeyDown(12) do
            wait(1);
        end;
      until(not IsFKeyDown(11));
    end.
    I am Ggzz..
    Hackintosher

  9. #9
    Join Date
    Dec 2010
    Posts
    431
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR can access reflection data.
    https://github.com/RRLibrary/RRL

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
  •