Page 4 of 8 FirstFirst ... 23456 ... LastLast
Results 76 to 100 of 200

Thread: [Color/Reflection] Sjoe's Flaxative!

  1. #76
    Join Date
    Mar 2006
    Location
    Belgium
    Posts
    3,564
    Mentioned
    111 Post(s)
    Quoted
    1475 Post(s)

    Default

    Quote Originally Posted by GREEN GIANT View Post
    As far as i know im using the default 07Fonts? Just the ones i found in an OSRS setup guide.

    I tried messing around as you said but got the same error messages:

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

    Could it be something to do with my name being all Capitals?
    I dunno, unfamiliar with these kind of errors. Use the default fonts that simba updates for you. they have a black shadow instead of red.
    Did u try with the latest version? added setupUptext.

    Creds to DannyRS for this wonderful sig!

  2. #77
    Join Date
    Aug 2007
    Location
    Colorado
    Posts
    7,421
    Mentioned
    268 Post(s)
    Quoted
    1442 Post(s)

    Default

    Try this: open up Simba (whatever version) and use the default old-style UpChars07 fonts (black & white) and run this script (already logged in of course) with your nickname set correctly:
    Simba Code:
    {$DEFINE SMART}

    {$i SRL-OSR/SRL.Simba}
    {$i SRL-OSR/SRL/core/antirandoms/C_AntiRandoms.simba}

    Procedure declarePlayers;
    begin
      HowManyPlayers := 1;
      NumberOfPlayers(HowManyPlayers);
      CurrentPlayer := 0;

      with Players[0] do
      begin
        Name        := '';
        Pass        := '';
        Nick        := 'NICK NAME';
        Pin         := '';
        LampSkill   := Skill_Herblore;
        WorldInfo   := [];
        Member      := True;
        Active      := True;
      end;
    end;

    begin
      declarePlayers;
      SetupSRL;

      SetupCustomRandoms;
      SRL_CombatRandoms := False;

      Repeat
        if FoundEvilChicken then
        begin
          Writeln('Found the evil chicken!');
          break;
        end;

        FindCustomRandoms;
        Wait(200);
      Until(False)
    end.

    Now go to a secluded place and type out your full in-game name to trigger the random-finder. I suggest typing "Flee from me (playername)!" which is what the Evil Chicken says. If the script stops running then you know those aren't the correct font files. So close out that Simba (you don't have to close out SMART) and replace your UpChars07 with the newest set (white with red shadowing), re-start Simba, run the script again, and type out your in-game name (or the Evil Chicken text) again.

    If you don't have the newest UpChars07 use my set, which I will attach to this post.
    Attached Files Attached Files

    Current projects:
    [ AeroGuardians (GotR minigame), Motherlode Miner, Blast furnace ]

    "I won't fall in your gravity. Open your eyes,
    you're the Earth and I'm the sky..."


  3. #78
    Join Date
    Mar 2010
    Posts
    152
    Mentioned
    1 Post(s)
    Quoted
    56 Post(s)

    Default

    Quote Originally Posted by Flight View Post
    Try this: open up Simba (whatever version) and use the default old-style UpChars07 fonts (black & white) and run this script (already logged in of course) with your nickname set correctly:
    Simba Code:
    {$DEFINE SMART}

    {$i SRL-OSR/SRL.Simba}
    {$i SRL-OSR/SRL/core/antirandoms/C_AntiRandoms.simba}

    Procedure declarePlayers;
    begin
      HowManyPlayers := 1;
      NumberOfPlayers(HowManyPlayers);
      CurrentPlayer := 0;

      with Players[0] do
      begin
        Name        := '';
        Pass        := '';
        Nick        := 'NICK NAME';
        Pin         := '';
        LampSkill   := Skill_Herblore;
        WorldInfo   := [];
        Member      := True;
        Active      := True;
      end;
    end;

    begin
      declarePlayers;
      SetupSRL;

      SetupCustomRandoms;
      SRL_CombatRandoms := False;

      Repeat
        if FoundEvilChicken then
        begin
          Writeln('Found the evil chicken!');
          break;
        end;

        FindCustomRandoms;
        Wait(200);
      Until(False)
    end.

    Now go to a secluded place and type out your full in-game name to trigger the random-finder. I suggest typing "Flee from me (playername)!" which is what the Evil Chicken says. If the script stops running then you know those aren't the correct font files. So close out that Simba (you don't have to close out SMART) and replace your UpChars07 with the newest set (white with red shadowing), re-start Simba, run the script again, and type out your in-game name (or the Evil Chicken text) again.

    If you don't have the newest UpChars07 use my set, which I will attach to this post.
    Works fine with your above script. This may go down as the biggest fail ever, but it turns out the problem was putting SetupSRL before DeclarePLayers in my main loop -.-

    I wasn't aware this would make a difference but apparently it does

  4. #79
    Join Date
    Mar 2006
    Location
    Belgium
    Posts
    3,564
    Mentioned
    111 Post(s)
    Quoted
    1475 Post(s)

    Default

    Quote Originally Posted by GREEN GIANT View Post
    Works fine with your above script. This may go down as the biggest fail ever, but it turns out the problem was putting SetupSRL before DeclarePLayers in my main loop -.-

    I wasn't aware this would make a difference but apparently it does
    Ermmgg, why did u change my mainloop

    Creds to DannyRS for this wonderful sig!

  5. #80
    Join Date
    Mar 2010
    Posts
    152
    Mentioned
    1 Post(s)
    Quoted
    56 Post(s)

    Default

    Quote Originally Posted by Sjoe View Post
    Ermmgg, why did u change my mainloop
    Haha, i always just paste my own declareplayers in so i don't have to type it all out again, and i accidentally pasted over the first few lines of the main loop, so i just replaced it....in the wrong order....

    Sorry to have had you on a wild goose chase the past day but at least one of us learnt something from this :P

  6. #81
    Join Date
    Mar 2006
    Location
    Belgium
    Posts
    3,564
    Mentioned
    111 Post(s)
    Quoted
    1475 Post(s)

    Default

    Quote Originally Posted by GREEN GIANT View Post
    Haha, i always just paste my own declareplayers in so i don't have to type it all out again, and i accidentally pasted over the first few lines of the main loop, so i just replaced it....in the wrong order....

    Sorry to have had you on a wild goose chase the past day but at least one of us learnt something from this :P
    Well euh, In return gimme a nice proggy for OP

    Creds to DannyRS for this wonderful sig!

  7. #82
    Join Date
    Jun 2013
    Posts
    4
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    dang this is gooooooooood! it picks flaz just like an impatient no-lifer!
    Win if you can, lose if you must, but always cheat.

  8. #83
    Join Date
    Jun 2013
    Posts
    28
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    trying this, thanks for the script

  9. #84
    Join Date
    Aug 2013
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    [Error] C:\Simba\Includes\SRL-OSR/SRL/misc/SmartParams.Simba(229:202): Invalid number of parameters at line 228
    I get this. I FOLLOWED THE INSTRUCTIONS. I remember getting a similar error with another script, but I don't remember how I fixed it. Any help would be appreciated

  10. #85
    Join Date
    Mar 2006
    Location
    Belgium
    Posts
    3,564
    Mentioned
    111 Post(s)
    Quoted
    1475 Post(s)

    Default

    Quote Originally Posted by Sundeww View Post
    [Error] C:\Simba\Includes\SRL-OSR/SRL/misc/SmartParams.Simba(229:202): Invalid number of parameters at line 228
    I get this. I FOLLOWED THE INSTRUCTIONS. I remember getting a similar error with another script, but I don't remember how I fixed it. Any help would be appreciated
    I'm still gonna be a smarty pants and say: follow instructions, check OP

    Creds to DannyRS for this wonderful sig!

  11. #86
    Join Date
    Aug 2013
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Quote Originally Posted by Sjoe View Post
    I'm still gonna be a smarty pants and say: follow instructions, check OP
    Well it only started happening after I set up SMART 8.2. Then I couldn't get any scripts to work

  12. #87
    Join Date
    Mar 2006
    Location
    Belgium
    Posts
    3,564
    Mentioned
    111 Post(s)
    Quoted
    1475 Post(s)

    Default

    Quote Originally Posted by Sundeww View Post
    Well it only started happening after I set up SMART 8.2. Then I couldn't get any scripts to work
    The fix is on OP(= first post)

    Creds to DannyRS for this wonderful sig!

  13. #88
    Join Date
    Aug 2013
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Pffffffff. And then I felt really stupid Thank you

  14. #89
    Join Date
    Jun 2013
    Location
    USA
    Posts
    18
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    Absolutly Flawless Script. Been running on 3 accounts now for a day or so. longest proggy without a bee random etc. Thank You Very Much! Reflection=God

    `~~~~~~~~ Sjoe's Sexy FlaxAnnihilator ~~~~~~~~~`
    Time running: 4 Hours, 52 Minutes and 40 Seconds
    Flax Picked (per hour): 4760 (975)
    `~~~~~~~~~~~~ Post bugs on thread ~~~~~~~~~~~~~~`

  15. #90
    Join Date
    Mar 2006
    Location
    Belgium
    Posts
    3,564
    Mentioned
    111 Post(s)
    Quoted
    1475 Post(s)

    Default

    Quote Originally Posted by ocmon01 View Post
    Absolutly Flawless Script. Been running on 3 accounts now for a day or so. longest proggy without a bee random etc. Thank You Very Much! Reflection=God

    `~~~~~~~~ Sjoe's Sexy FlaxAnnihilator ~~~~~~~~~`
    Time running: 4 Hours, 52 Minutes and 40 Seconds
    Flax Picked (per hour): 4760 (975)
    `~~~~~~~~~~~~ Post bugs on thread ~~~~~~~~~~~~~~`
    MY FIRST PROGGY, I LOVE YOU

    glad you enjoy it, next version might have beehiver random solved

    Creds to DannyRS for this wonderful sig!

  16. #91
    Join Date
    Nov 2011
    Location
    United States
    Posts
    815
    Mentioned
    6 Post(s)
    Quoted
    284 Post(s)

    Default

    Quote Originally Posted by Sjoe View Post
    MY FIRST PROGGY, I LOVE YOU

    glad you enjoy it, next version might have beehiver random solved
    Get beehiver randomer in and ill bot on a throwaway acc just to try for a 1 day proggy XD

    Never done 07 scape, i want a 1 day proggy on it D:

  17. #92
    Join Date
    Jun 2013
    Posts
    28
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    `~~~~~~~~ Sjoe's Sexy FlaxAnnihilator ~~~~~~~~~`
    Time running: 31 Minutes and 20 Seconds
    Flax Picked (per hour): 448 (857)
    `~~~~~~~~~~~~ Post bugs on thread ~~~~~~~~~~~~~~`
    Inventory not full
    Walking To Flax

    I was able to run it for 3 Hrs, i got about 2.3k Flax.
    Love this script, thank you

    and is there a way to fix the brightness when it randomly goes dark? :/

  18. #93
    Join Date
    Mar 2006
    Location
    Belgium
    Posts
    3,564
    Mentioned
    111 Post(s)
    Quoted
    1475 Post(s)

    Default

    Quote Originally Posted by Frankenstein View Post
    `~~~~~~~~ Sjoe's Sexy FlaxAnnihilator ~~~~~~~~~`
    Time running: 31 Minutes and 20 Seconds
    Flax Picked (per hour): 448 (857)
    `~~~~~~~~~~~~ Post bugs on thread ~~~~~~~~~~~~~~`
    Inventory not full
    Walking To Flax

    I was able to run it for 3 Hrs, i got about 2.3k Flax.
    Love this script, thank you

    and is there a way to fix the brightness when it randomly goes dark? :/
    it does? :s

    Creds to DannyRS for this wonderful sig!

  19. #94
    Join Date
    Jun 2013
    Posts
    28
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    `~~~~~~~~ Sjoe's Sexy FlaxAnnihilator ~~~~~~~~~`
    Time running: 3 Hours, 40 Minutes and 9 Seconds
    Flax Picked (per hour): 2912 (793)
    `~~~~~~~~~~~~ Post bugs on thread ~~~~~~~~~~~~~~`

    and yah it does, but i think it was because i was running too many things at once which made script go nuts. not sure lol because this time i didn't get the problem.

    this time it just stopped all of a sudden

  20. #95
    Join Date
    Aug 2013
    Posts
    4
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    I'm getting this error when attempting to run the script:

    [Error] C:\Simba\Includes\SRL-OSR/SRL/core/antirandoms/C_AntiRandoms.simba(51:32): Invalid number of parameters at line 50
    Compiling failed.

    Any tips on how I can fix it? I've read the OP and done all of the instructions there.

  21. #96
    Join Date
    Jun 2013
    Posts
    28
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    Quote Originally Posted by BarakOBieber View Post
    I'm getting this error when attempting to run the script:

    [Error] C:\Simba\Includes\SRL-OSR/SRL/core/antirandoms/C_AntiRandoms.simba(51:32): Invalid number of parameters at line 50
    Compiling failed.

    Any tips on how I can fix it? I've read the OP and done all of the instructions there.
    You can start by reading instructions and then everything else that is on the 1st post :*

  22. #97
    Join Date
    Mar 2006
    Location
    Belgium
    Posts
    3,564
    Mentioned
    111 Post(s)
    Quoted
    1475 Post(s)

    Default

    Quote Originally Posted by Frankenstein View Post
    `~~~~~~~~ Sjoe's Sexy FlaxAnnihilator ~~~~~~~~~`
    Time running: 3 Hours, 40 Minutes and 9 Seconds
    Flax Picked (per hour): 2912 (793)
    `~~~~~~~~~~~~ Post bugs on thread ~~~~~~~~~~~~~~`

    and yah it does, but i think it was because i was running too many things at once which made script go nuts. not sure lol because this time i didn't get the problem.

    this time it just stopped all of a sudden
    shweet good to hear, thx for proggy, going OP

    Quote Originally Posted by BarakOBieber View Post
    I'm getting this error when attempting to run the script:

    [Error] C:\Simba\Includes\SRL-OSR/SRL/core/antirandoms/C_AntiRandoms.simba(51:32): Invalid number of parameters at line 50
    Compiling failed.

    Any tips on how I can fix it? I've read the OP and done all of the instructions there.
    You're trying to play the antirandom script I believe.

    Creds to DannyRS for this wonderful sig!

  23. #98
    Join Date
    Jun 2013
    Posts
    28
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    finished over 530+ trips :3 cheers

  24. #99
    Join Date
    Aug 2013
    Posts
    4
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Quote Originally Posted by Sjoe View Post
    shweet good to hear, thx for proggy, going OP



    You're trying to play the antirandom script I believe.
    It automatically opens the antirandom script in another tab when I attempt to start up the flax script. Not sure why, but it won't run until this error gets solved. If you're not busy and don't mind, would you check this out over Teamviewer?

    Quote Originally Posted by Frankenstein View Post
    You can start by reading instructions and then everything else that is on the 1st post :*
    I've followed all instructions on the OP. (original post)
    Last edited by BarakOBieber; 08-18-2013 at 02:42 PM.

  25. #100
    Join Date
    Mar 2006
    Location
    Belgium
    Posts
    3,564
    Mentioned
    111 Post(s)
    Quoted
    1475 Post(s)

    Default

    Quote Originally Posted by BarakOBieber View Post
    It automatically opens the antirandom script in another tab when I attempt to start up the flax script. Not sure why, but it won't run until this error gets solved. If you're not busy and don't mind, would you check this out over Teamviewer?
    Got skype? pm me yours

    Creds to DannyRS for this wonderful sig!

Page 4 of 8 FirstFirst ... 23456 ... LastLast

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
  •