Issue: lodestoneScreen.teleportTo(LOCATION_PREVIOUS);

  1. issueid=165 12-14-2013 05:19 AM
    The Academic
    lodestoneScreen.teleportTo(LOCATION_PREVIOUS);
    can't chooseOption(previous location) because it never right clicked

    LOCATION_PREVIOUS does not work because you need to right click the lodestone button for the option to appear.

    function TRSLodestoneScreen.teleportTo(location: integer): boolean; will need to be modified. Current code:

    if (location = LOCATION_PREVIOUS) then
    begin
    result := chooseOption.select(['Previous dest', 'estination', 'evious']);

    if (result) then
    print('TRSLodestoneScreen.teleportTo(): Succesfully teleported to previous destination', TDebug.SUB)
    else
    print('TRSLodestoneScreen.teleportTo(): Failed teleport to previous destination (ChooseOption must have failed)', TDebug.SUB);

    exit();
    end;


    Need to add a right click line 313:

    if (location = LOCATION_PREVIOUS) then
    begin
    fastclick(MOUSE_RIGHT);
    result := chooseOption.select(['Previous dest', 'estination', 'evious']);

    if (result) then
    print('TRSLodestoneScreen.teleportTo(): Succesfully teleported to previous destination', TDebug.SUB)
    else
    print('TRSLodestoneScreen.teleportTo(): Failed teleport to previous destination (ChooseOption must have failed)', TDebug.SUB);

    exit();
    end;
Issue Details
Issue Number 165
Project SRL Bugs and Suggestions
Status Resolved
Users able to reproduce bug 0
Users unable to reproduce bug 0
Assigned Users (none)
Tags (none)




  1. 12-16-2013 01:32 AM
    Issue Changed by Olly
    • Status changed from Unconfirmed to Resolved
+ Reply