Results 1 to 10 of 10

Thread: Error: Exception: Mask is invalid. Width/Height: (9,6). WhiteHi/BlackHi: (-1,53) at l

  1. #1
    Join Date
    Mar 2013
    Posts
    58
    Mentioned
    0 Post(s)
    Quoted
    24 Post(s)

    Default Error: Exception: Mask is invalid. Width/Height: (9,6). WhiteHi/BlackHi: (-1,53) at l

    Error: Exception: Mask is invalid. Width/Height: (9,6). WhiteHi/BlackHi: (-1,53) at line 778
    The following DTMs were not freed: [SRL - Lamp bitmap, SRL - Book of Knowledge, 2, 3, 4, 5]
    The following bitmaps were not freed: [SRL - Mod bitmap, SRL - Admin bitmap, SRL - Minimap Mask bitmap]

  2. #2
    Join Date
    Feb 2012
    Location
    Discord
    Posts
    3,114
    Mentioned
    37 Post(s)
    Quoted
    538 Post(s)

    Default

    You need to fill in your nick in declare procedure. It should be filled in as 3-4 letters(or less if your screenname is short) from your screen name and not the beginning letter.

  3. #3
    Join Date
    Apr 2013
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I am having trouble with this too, and I don't know what to do

  4. #4
    Join Date
    Apr 2013
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Same issue, using a script that does not require nick in the declare procedure

  5. #5
    Join Date
    Apr 2013
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Same problem. BUMP

  6. #6
    Join Date
    Feb 2013
    Posts
    465
    Mentioned
    6 Post(s)
    Quoted
    221 Post(s)

    Default

    This issue is solver in multiple places on the forums.

    Find in the script this bit:
    Simba Code:
    with Players[0] do
      begin
        Name := 'aPerson';
        Pass := 'aPassword';  
      end;

    Add a new line such that the previous example looks like this:

    Simba Code:
    with Players[0] do
      begin
        Nick := 'ers'; // 3 lowercase consecutive alphabetical characters from your in game name.
        Name := 'aPerson';
        Pass := 'aPassword';      
      end;

  7. #7
    Join Date
    Nov 2011
    Posts
    335
    Mentioned
    0 Post(s)
    Quoted
    68 Post(s)

    Default

    you dont need to fill in your actual details there if you feel uncomfortable doing it, just put random gibberish and log in manually. You can remove the nick and the stuff where it links to SRL stats. My DeclarePlayers looks like this:
    Simba Code:
    Procedure DeclarePlayers;
    begin
      HowManyPlayers := 1;
      NumberOfPlayers(HowManyPlayers);
      CurrentPlayer := 0;
      with Players[0] do
      begin
        Name   := 'biubigg'; //Character Name
        Pass   := 'ugifbhud'; //Character Pass
        Active := true;
      end;
    end;

  8. #8
    Join Date
    Jan 2012
    Location
    New Zealand
    Posts
    331
    Mentioned
    4 Post(s)
    Quoted
    94 Post(s)

    Default

    Quote Originally Posted by l6bustank View Post
    you dont need to fill in your actual details there if you feel uncomfortable doing it, just put random gibberish and log in manually. You can remove the nick and the stuff where it links to SRL stats. My DeclarePlayers looks like this:
    Simba Code:
    Procedure DeclarePlayers;
    begin
      HowManyPlayers := 1;
      NumberOfPlayers(HowManyPlayers);
      CurrentPlayer := 0;
      with Players[0] do
      begin
        Name   := 'biubigg'; //Character Name
        Pass   := 'ugifbhud'; //Character Pass
        Active := true;
      end;
    end;
    IGNORE MY POST
    oops my bad wrong thread hehe guess its a free bump for this thouhg
    Last edited by Note; 05-06-2013 at 03:04 PM.
    Current Rank Supreme Master First Class

  9. #9
    Join Date
    Jan 2012
    Location
    Texas
    Posts
    241
    Mentioned
    0 Post(s)
    Quoted
    8 Post(s)

    Default

    Quote Originally Posted by l6bustank View Post
    you dont need to fill in your actual details there if you feel uncomfortable doing it, just put random gibberish and log in manually. You can remove the nick and the stuff where it links to SRL stats. My DeclarePlayers looks like this:
    Simba Code:
    Procedure DeclarePlayers;
    begin
      HowManyPlayers := 1;
      NumberOfPlayers(HowManyPlayers);
      CurrentPlayer := 0;
      with Players[0] do
      begin
        Name   := 'biubigg'; //Character Name
        Pass   := 'ugifbhud'; //Character Pass
        Active := true;
      end;
    end;
    This is fine, but it is recommended that you enter your nickname in order to solve randoms.
    Coming together is a beginning.
    Keeping together is progress.
    Working together is success.

  10. #10
    Join Date
    Nov 2011
    Posts
    335
    Mentioned
    0 Post(s)
    Quoted
    68 Post(s)

    Default

    Quote Originally Posted by Spiker View Post
    This is fine, but it is recommended that you enter your nickname in order to solve randoms.
    Right, forgot that. This DeclarePlayers is from a soulwars script.

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
  •