Results 1 to 2 of 2

Thread: mouse speed error!

  1. #1
    Join Date
    Sep 2007
    Posts
    40
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default mouse speed error!

    my problem with cow killer / hide banker is the next.

    before it was Include file C:\Archivos de programa\SCAR 3.11\includes\SRL.scar does not exist. i guess i already fixed that problem... but now the problem is Line 106: [Error] (231:1): Unknown identifier 'MouseSpeed' in script C:\Archivos de programa\SCAR 3.11\includes\srl\srl\core\Setup.scar

    SCAR Code:
    procedure LoadSRLConfig;
    var
      aFile: Integer;

    begin
      aFile := OpenFile(AppPath + 'SRL.CFG', False);
      if (aFile < 0) then
      begin
        SaveSRLConfig;
        aFile := OpenFile(AppPath + 'SRL.CFG', False);
      end;

      ReadFileString(aFile, zFile, FileSize(aFile));

      Filename := getSRLData('Filename');
      MouseSpeed := StrToInt(getSRLData('Mousespeed'));


    errr... what can i do plz--- i have srl 4 and divi 3.11

  2. #2
    Join Date
    Dec 2006
    Location
    Copy pastin to my C#
    Posts
    3,788
    Mentioned
    8 Post(s)
    Quoted
    29 Post(s)

    Default

    Replace

    MouseSpeed := StrToInt(getSRLData('Mousespeed'));
    with

    MouseSpeed := StrToIntDef(getSRLData('Mousespeed'), 12);
    Temporary solution

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
  •