Results 1 to 5 of 5

Thread: Hmm..can someone help me???

  1. #1
    Join Date
    Dec 2007
    Posts
    133
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Hmm..can someone help me???

    I was wondering if someone would be kind enough to take some of there time to help me with monk's "fishy for srl" script?? What i want to do with monk's script is add smart but i cannot seem to do so...so what im really wondering if someone can do it for ME....Or atleast show me how to do it properly. Please don't tell me to look at the tut's ive looked at all of them i just don't get it...So please all help is appreciated!

    Thank you, Pierre14

  2. #2
    Join Date
    Aug 2007
    Location
    Indiana
    Posts
    63
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I will try to walk you through the steps... This is what the very top of the script should look like...

    Code:
    program Example;
    {.include SRL/SRL/Misc/Smart.scar}
    {.include SRl/SRL.scar}
    This should be in your const...

    Code:
    const
         SmartWorld      = 1;
         Signed          = True;
    This should be your very first Procedure...

    Code:
    procedure SetupSmart;
    begin
      SmartSetupEx(SmartWorld, false, Signed);
      ClearDebug;
      WriteLn('Setting up Smart... Please Hold...');
      Wait(10000 + random(5000));
      SetTargetDC(SmartGetDC);
      While not(SmartReady) do Wait(100);
    end;
    And finally, the main loop. If you don't know where it is it is at the very bottom of the script.

    Code:
    begin
      SetupSmart;
      SetupSRL;

    Edit: On the const, you can change the SmartWorld to whatever world you want to be signed into, and where it says Signed = True, put that as False so you will be on an unsigned applet.

  3. #3
    Join Date
    Dec 2007
    Posts
    133
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

  4. #4
    Join Date
    Dec 2007
    Posts
    133
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

  5. #5
    Join Date
    Aug 2007
    Location
    Indiana
    Posts
    63
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Send me the script and let me see if i can get it to work

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
  •