Page 99 of 99 FirstFirst ... 4989979899
Results 2,451 to 2,463 of 2463

Thread: Kyle's Esswraith Extractor

  1. #2451
    Join Date
    Apr 2013
    Posts
    43
    Mentioned
    0 Post(s)
    Quoted
    22 Post(s)

    Default

    Hey guys I looked on the forums and everything, I saw a thread that seemed like it would help me fix the problem but it didn't, so heres the problem. When I try to run the script it does not compile properly, here is the error message:[Error] C:\Simba\Scripts\Runespan.simba(1319:3): Unknown identifier 'Smart_Server' at line 1318
    When trying to compile the script it goes straight down to this set of 3 lines here:

    begin
    Smart_Server := 10;
    Smart_Members := True;
    Smart_Signed := True;

    As said before I tried replacing the following lines with the ones posted on the script that fixes the SMART errors, I'll post the lines that the thread had reccomended to help with the troubleshooting.

    Towards the bottom of the script, in the setup section, you might find this:
    Simba Code:
    Smart_Server := 26;
    Smart_Members := False;
    Smart_Signed := True;
    Smart_SuperDetail := False;
    Change those lines to:
    Simba Code:
    SRL_SixHourFix := True;
    SMART_FixSpeed := True;

    If anyone has any idea how to fix this let me know =D

    Thanks,

    Phasmatys

  2. #2452
    Join Date
    Apr 2013
    Posts
    43
    Mentioned
    0 Post(s)
    Quoted
    22 Post(s)

    Default

    Quote Originally Posted by UnReaL69 View Post
    I've had the same problem, been wasting hours...
    You need to update SMART 7.2 (that is the default currently) to version 8
    Use the search function to find the link, as I can't post it.

    I tried the script in 3 different places, but doesn't seem to click NPC
    How come to others is working? Please share the knowledge, what else is needed to run? Already updated everything
    Hey unreal more info on the post above, hope that is enough to help you find out the problem. However knowing that the script is really outdated I have no problem if it cannot be fixed. I have all the plugins on simba updated so I have no clue why its not compiling.

  3. #2453
    Join Date
    Jul 2012
    Posts
    437
    Mentioned
    10 Post(s)
    Quoted
    165 Post(s)

    Default

    Quote Originally Posted by Phasmatys View Post
    Hey unreal more info on the post above, hope that is enough to help you find out the problem. However knowing that the script is really outdated I have no problem if it cannot be fixed. I have all the plugins on simba updated so I have no clue why its not compiling.
    Quote Originally Posted by Phasmatys View Post
    Hey guys I looked on the forums and everything, I saw a thread that seemed like it would help me fix the problem but it didn't, so heres the problem. When I try to run the script it does not compile properly, here is the error message:[Error] C:\Simba\Scripts\Runespan.simba(1319:3): Unknown identifier 'Smart_Server' at line 1318
    When trying to compile the script it goes straight down to this set of 3 lines here:

    begin
    Smart_Server := 10;
    Smart_Members := True;
    Smart_Signed := True;

    As said before I tried replacing the following lines with the ones posted on the script that fixes the SMART errors, I'll post the lines that the thread had reccomended to help with the troubleshooting.

    Towards the bottom of the script, in the setup section, you might find this:
    Simba Code:
    Smart_Server := 69;//remove this
    Smart_Members := False;//remove this
    Smart_Signed := True;//remove this
    Smart_SuperDetail := False;//remove this
    Change those lines to:
    Simba Code:
    SRL_SixHourFix := True;//add this where you remove the previous code
    SMART_FixSpeed := True;//add this where you remove the previous code

    If anyone has any idea how to fix this let me know =D

    Thanks,

    Phasmatys
    Script is out dated, others are using tweaked versions.

  4. #2454
    Join Date
    Jun 2012
    Posts
    32
    Mentioned
    0 Post(s)
    Quoted
    15 Post(s)

    Default

    Script is out dated, others are using tweaked versions.
    Can you or anyone post the 'tweaked' version or the codes so i can put it in my self ?

    thanks

  5. #2455
    Join Date
    Apr 2013
    Posts
    43
    Mentioned
    0 Post(s)
    Quoted
    22 Post(s)

    Default

    Quote Originally Posted by tealc View Post
    Script is out dated, others are using tweaked versions.
    I see ok, no problem I guess I will have to continue with another skill for now

  6. #2456
    Join Date
    May 2013
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    I am having an error on line 281

    "[Error] C:\Simba\Includes\SRL/SRL/misc/SmartParams.Simba(282:145): Invalid number of parameters at line 281
    Compiling failed."

    anyone know whats wrong i cant figure it out

  7. #2457
    Join Date
    Nov 2011
    Posts
    21
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Quote Originally Posted by Phasmatys View Post
    Hey guys I looked on the forums and everything, I saw a thread that seemed like it would help me fix the problem but it didn't, so heres the problem. When I try to run the script it does not compile properly, here is the error message:[Error] C:\Simba\Scripts\Runespan.simba(1319:3): Unknown identifier 'Smart_Server' at line 1318
    When trying to compile the script it goes straight down to this set of 3 lines here:

    begin
    Smart_Server := 10;
    Smart_Members := True;
    Smart_Signed := True;

    As said before I tried replacing the following lines with the ones posted on the script that fixes the SMART errors, I'll post the lines that the thread had reccomended to help with the troubleshooting.

    Towards the bottom of the script, in the setup section, you might find this:
    Simba Code:
    Smart_Server := 26;
    Smart_Members := False;
    Smart_Signed := True;
    Smart_SuperDetail := False;
    Change those lines to:
    Simba Code:
    SRL_SixHourFix := True;
    SMART_FixSpeed := True;

    If anyone has any idea how to fix this let me know =D

    Thanks,

    Phasmatys
    Did you add the tags as well?
    eg:
    Code:
     {$IFDEF SMART}
        {$IFDEF SIMBAMAJOR980}
          Smart_Server := 26;
          Smart_Members := True;
          Smart_Signed := True;
          Smart_SuperDetail := False;
        {$ELSE}
          SRL_SixHourFix := True;
          Smart_FixSpeed := True;
        {$ENDIF}
      {$ENDIF}
    oh and of cause
    {$DEFINE SMART8}
    Last edited by gooddiubro; 06-23-2013 at 02:50 PM.

  8. #2458
    Join Date
    Apr 2013
    Posts
    43
    Mentioned
    0 Post(s)
    Quoted
    22 Post(s)

    Default

    Quote Originally Posted by gooddiubro View Post
    Did you add the tags as well?
    eg:
    Code:
     {$IFDEF SMART}
        {$IFDEF SIMBAMAJOR980}
          Smart_Server := 26;
          Smart_Members := True;
          Smart_Signed := True;
          Smart_SuperDetail := False;
        {$ELSE}
          SRL_SixHourFix := True;
          Smart_FixSpeed := True;
        {$ENDIF}
      {$ENDIF}
    oh and of cause
    {$DEFINE SMART8}
    No I did not try that, I just tested it and it compiled =D. When I get back home from school I will test the actual script. Thanks for that man =D

  9. #2459
    Join Date
    Dec 2011
    Location
    Hyrule
    Posts
    8,662
    Mentioned
    179 Post(s)
    Quoted
    1870 Post(s)

  10. #2460
    Join Date
    Apr 2013
    Posts
    43
    Mentioned
    0 Post(s)
    Quoted
    22 Post(s)

    Default

    Quote Originally Posted by gooddiubro View Post
    Did you add the tags as well?
    eg:
    Code:
     {$IFDEF SMART}
        {$IFDEF SIMBAMAJOR980}
          Smart_Server := 26;
          Smart_Members := True;
          Smart_Signed := True;
          Smart_SuperDetail := False;
        {$ELSE}
          SRL_SixHourFix := True;
          Smart_FixSpeed := True;
        {$ENDIF}
      {$ENDIF}
    oh and of cause
    {$DEFINE SMART8}
    Just tested it now and it compiles of course, but knowing its outdated i did not expect the bot to run smoothly, and it doesnt of course. Thanks for trying to help I guess I will just wait for a fix.

  11. #2461
    Join Date
    Nov 2011
    Posts
    21
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Yea, but it will be helpful if we know where does it get stuck.

    EDIT: Other than some minor outdated DTMs, scripts looks pretty solid.
    Last edited by gooddiubro; 06-30-2013 at 07:12 AM.

  12. #2462
    Join Date
    Jan 2013
    Posts
    453
    Mentioned
    9 Post(s)
    Quoted
    242 Post(s)

    Default

    Quote Originally Posted by Ashaman88 View Post
    I will eventually come back and help this script out as well
    :O :O
    Upkeep.

  13. #2463
    Join Date
    Jul 2013
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    begin
    Smart_Server := 10;
    Smart_Members := True;
    Smart_Signed := True;
    hey kyle,
    i got a prob with the above part of the script i sgives me some error line 1312
    and i tried deleting that part and the script started but is just stood doing nothing

Page 99 of 99 FirstFirst ... 4989979899

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
  •