Page 2 of 3 FirstFirst 123 LastLast
Results 26 to 50 of 70

Thread: Lape Reflection Include

  1. #26
    Join Date
    May 2013
    Posts
    75
    Mentioned
    3 Post(s)
    Quoted
    48 Post(s)

    Default

    Quote Originally Posted by stata View Post
    I force updated but I'm still getting the error. Anyone else having problems?
    It is working for me. Did you download the include from github?

  2. #27
    Join Date
    Aug 2013
    Posts
    41
    Mentioned
    0 Post(s)
    Quoted
    16 Post(s)

    Default

    Quote Originally Posted by MariusK View Post
    It is working for me. Did you download the include from github?
    Nope, working now thanks. I was under the impression that with prosocks I could just hit the update buttons in Simba.

  3. #28
    Join Date
    May 2013
    Posts
    69
    Mentioned
    0 Post(s)
    Quoted
    19 Post(s)

    Default

    i keep getting an 'error: access violation' error, ive tried redownloading java and it seems to be coming from the lape reflection so i redownloaded it and it still wont work

  4. #29
    Join Date
    Mar 2013
    Location
    Earth some place
    Posts
    108
    Mentioned
    2 Post(s)
    Quoted
    66 Post(s)

    Default

    Quote Originally Posted by superfonz View Post
    i keep getting an 'error: access violation' error, ive tried redownloading java and it seems to be coming from the lape reflection so i redownloaded it and it still wont work
    I had this error earliar, and was stumped as well. This problem fixed it for me!

    To do this remove these 3 lines at line 77 in "Includes > Reflection > lib > misc > Misc.Simba":

    {$IFNDEF Aerolib}
    {$loadlib prosocks}
    {$ENDIF}
    "We're all someone else to someone else." - Calvin & Hobbes.
    A story of life. Inside everyone are two wolves. It is a terrible fight. One is evil, one is good. Which one wins? The one you feed.

  5. #30
    Join Date
    Jun 2015
    Posts
    35
    Mentioned
    0 Post(s)
    Quoted
    9 Post(s)

    Default

    Quote Originally Posted by captainblast View Post
    I had this error earliar, and was stumped as well. This problem fixed it for me!

    To do this remove these 3 lines at line 77 in "Includes > Reflection > lib > misc > Misc.Simba":

    {$IFNDEF Aerolib}
    {$loadlib prosocks}
    {$ENDIF}
    Would this cause issues with using f-include?

  6. #31
    Join Date
    Mar 2015
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Can't run FoolMonsterMashAlpha0.010 on lape

    [Error] C:\Simba\Includes\SRL-OSR\SRL\Reflection\Core\Misc.simba(21:21): Unknown identifier 'SmartStringFromString' at line 22

    What does this error indicate?

  7. #32
    Join Date
    Jan 2012
    Posts
    1,596
    Mentioned
    78 Post(s)
    Quoted
    826 Post(s)

    Default

    Quote Originally Posted by Romet View Post
    Can't run FoolMonsterMashAlpha0.010 on lape

    [Error] C:\Simba\Includes\SRL-OSR\SRL\Reflection\Core\Misc.simba(21:21): Unknown identifier 'SmartStringFromString' at line 22

    What does this error indicate?
    This error indicates you arent using Lape Reflection.

  8. #33
    Join Date
    Dec 2014
    Posts
    63
    Mentioned
    0 Post(s)
    Quoted
    44 Post(s)

    Default

    Im interested how much time will need for new hooks? Sorry for asking, but i have to go so i want to make run bots

  9. #34
    Join Date
    Mar 2013
    Posts
    1,010
    Mentioned
    35 Post(s)
    Quoted
    620 Post(s)

    Default

    Quote Originally Posted by lempa View Post
    Im interested how much time will need for new hooks? Sorry for asking, but i have to go so i want to make run bots
    Depends on how busy elfyyy is. Could be a few hours to a few days, and try not to post 12 minutes after an update about hooks
    #slack4admin2016
    <slacky> I will build a wall
    <slacky> I will ban reflection and OGL hooking until we know what the hell is going on

  10. #35
    Join Date
    Feb 2015
    Posts
    35
    Mentioned
    0 Post(s)
    Quoted
    13 Post(s)

    Default

    Quote Originally Posted by captainblast View Post
    I had this error earliar, and was stumped as well. This problem fixed it for me!

    To do this remove these 3 lines at line 77 in "Includes > Reflection > lib > misc > Misc.Simba":

    {$IFNDEF Aerolib}
    {$loadlib prosocks}
    {$ENDIF}
    You sir are a legend, thank you. This fixed the error on my only release on the site!

  11. #36
    Join Date
    Jun 2014
    Location
    Lithuania
    Posts
    475
    Mentioned
    27 Post(s)
    Quoted
    200 Post(s)

    Default

    Has anyone fixed the tiletoms accuracy yet? It seems to be very innacurate after update, especially in larger distances.

  12. #37
    Join Date
    Aug 2007
    Posts
    539
    Mentioned
    20 Post(s)
    Quoted
    266 Post(s)

    Default

    Quote Originally Posted by cosmasjdz View Post
    Has anyone fixed the tiletoms accuracy yet? It seems to be very innacurate after update, especially in larger distances.
    I think its because it doesn't take the zoom into consideration. It seems when its on default zoom level it works just fine.

  13. #38
    Join Date
    Aug 2015
    Posts
    12
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Angry

    So I don't know if anyone has had trouble with this as well but this has been bugging me....
    MyPlayer.GetHealth doesn't return the proper value... Most of the other functions work though. ._.

    program reflectionDemo;
    {$DEFINE SMART}
    {$i Reflection/Reflection.Simba}
    var
    MyPlayer: TReflectLocalPlayer;

    begin
    Reflect.Setup;
    MyPlayer.Username := '-----';
    MyPlayer.Password := '-----';
    MyPlayer.Pin := '';
    MyPlayer.Active := true;
    MyPlayer.Login;
    wait(500);
    writeln(MyPlayer.GetRunEnergy); // this returns the proper value
    writeln(MyPlayer.GetWeight); // also returns the right value
    writeln(MyPlayer.IsRunOn); // also works...
    writeln(MyPlayer.IsMoving); // also works!!!!
    writeln(MyPlayer.GetHealth); // this returns 0 even though my health im at full heatlh
    writeln(MyPlayer.GetMaxHealth); // Doesn't work either... go figure.
    // so wtf is going on here?
    end.

    Also if this is in the wrong section please forgive me. Im pretty nooby... Also thanks in advanced for a response!
    Last edited by thatOneGuyWithTheFace; 08-29-2015 at 02:40 AM.

  14. #39
    Join Date
    Oct 2006
    Posts
    6,752
    Mentioned
    95 Post(s)
    Quoted
    532 Post(s)

    Default

    Quote Originally Posted by thatOneGuyWithTheFace View Post
    So I don't know if anyone has had trouble with this as well but this has been bugging me....
    MyPlayer.GetHealth doesn't return the proper value... Most of the other function work though. ._.

    program reflectionDemo;
    {$DEFINE SMART}
    {$i Reflection/Reflection.Simba}
    var
    MyPlayer: TReflectLocalPlayer;

    begin
    Reflect.Setup;
    MyPlayer.Username := '-----';
    MyPlayer.Password := '-----';
    MyPlayer.Pin := '';
    MyPlayer.Active := true;
    MyPlayer.Login;
    wait(500);
    writeln(MyPlayer.GetRunEnergy); // this returns the proper value
    writeln(MyPlayer.GetWeight); // also returns the right value
    writeln(MyPlayer.IsRunOn); // also works...
    writeln(MyPlayer.IsMoving); // also works!!!!
    writeln(MyPlayer.GetHealth); // this returns 0 even though my health im at full heatlh
    writeln(MyPlayer.GetMaxHealth); // Doesn't work either... go figure.
    // so wtf is going on here?
    end.

    Also if this is in the wrong section please forgive me. Im pretty nooby... Also thanks in advanced for a response!
    GetHealth only works when your health bar is above your head i.e. in combat
    “The long-lived and those who will die soonest lose the same thing. The present is all that they can give up, since that is all you have, and what you do not have, you cannot lose.” - Marcus Aurelius

  15. #40
    Join Date
    Sep 2014
    Location
    C:\Simba\
    Posts
    565
    Mentioned
    9 Post(s)
    Quoted
    71 Post(s)

    Default

    Hi.
    I decided to try and using reflection this morning for a script im writing.
    I hadnt used it in a long time.
    So when i ran an old script it first updated hooks, then updated them again.

    After updating twice running any scripts just gives me an Invalid evaluation @ no line.
    I tried re-downloading reflection, same results.
    I dont know if its related to OSRS updating this morning or if I'm doing something wrong.

    Obvious things: yes I use Lape for Lape version, yes it was not only one script but 3 different, 1 of which my old.

  16. #41
    Join Date
    May 2013
    Posts
    75
    Mentioned
    3 Post(s)
    Quoted
    48 Post(s)

    Default

    The hooks are currently outdated.

  17. #42
    Join Date
    Oct 2011
    Posts
    11
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Will log in but won't do anything since update

  18. #43
    Join Date
    Oct 2006
    Posts
    6,752
    Mentioned
    95 Post(s)
    Quoted
    532 Post(s)

    Default

    Should be fixed now @MariusK;
    “The long-lived and those who will die soonest lose the same thing. The present is all that they can give up, since that is all you have, and what you do not have, you cannot lose.” - Marcus Aurelius

  19. #44
    Join Date
    May 2013
    Posts
    75
    Mentioned
    3 Post(s)
    Quoted
    48 Post(s)

    Default

    Quote Originally Posted by elfyyy View Post
    Should be fixed now @MariusK;
    I was just pointing out to @YouPee, why his script was not working at that moment. I know it's annoying when someone is complaining, that the hooks are outdated.

  20. #45
    Join Date
    May 2012
    Posts
    108
    Mentioned
    3 Post(s)
    Quoted
    45 Post(s)

    Default

    Still seems outdated? Finds aren't working for npcs or objects.

    Edit: I think the second update fixed it for me, I didn't fetch it but I thought I did.

  21. #46
    Join Date
    Oct 2011
    Posts
    11
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Quote Originally Posted by Blak Fishy View Post
    Still seems outdated? Finds aren't working for npcs or objects.

    Edit: I think the second update fixed it for me, I didn't fetch it but I thought I did.

    Now Im getting an access violation and I have already removed the lines in the reflection code that normally cause this.

  22. #47
    Join Date
    Oct 2015
    Posts
    27
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    same here

  23. #48
    Join Date
    May 2012
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    20 Post(s)

    Default

    and now we play the waiting game.

  24. #49
    Join Date
    May 2013
    Posts
    22
    Mentioned
    0 Post(s)
    Quoted
    11 Post(s)

    Default

    Compiled successfully in 967 ms.
    [21:32:06:945] [Reflection] [Status] Paired with SMART client 7948.
    [21:34:06:999] [Reflection] [Fatal] Failed to detect or load OSRS.
    [21:34:07:003] [Reflection] [Status] All cached references free'd from memory
    Successfully executed.

    is this a reflection issue?
    or script issue?

    was working fine earlier this week with the same script i am trying to use.

  25. #50
    Join Date
    Apr 2013
    Posts
    680
    Mentioned
    13 Post(s)
    Quoted
    341 Post(s)

    Default

    Quote Originally Posted by gfbank View Post
    Compiled successfully in 967 ms.
    [21:32:06:945] [Reflection] [Status] Paired with SMART client 7948.
    [21:34:06:999] [Reflection] [Fatal] Failed to detect or load OSRS.
    [21:34:07:003] [Reflection] [Status] All cached references free'd from memory
    Successfully executed.

    is this a reflection issue?
    or script issue?

    was working fine earlier this week with the same script i am trying to use.
    This generally happens when rs updates; taking to long for the login screen to appear. i think the hooks are outdated atm anyway

Page 2 of 3 FirstFirst 123 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
  •