Skip to content
This repository was archived by the owner on Feb 9, 2022. It is now read-only.

Commit 408fd47

Browse files
ExplvExplv
Explv
authored and
Explv
committed
Fix script end before login
1 parent 1e26f49 commit 408fd47

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/script/TutorialIsland.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import org.osbot.rs07.script.ScriptManifest;
55
import sections.*;
66

7-
@ScriptManifest(author = "Explv", name = "Explv's Tutorial Island", info = "Completes Tutorial Island", version = 5.9, logo = "")
7+
@ScriptManifest(author = "Explv", name = "Explv's Tutorial Island", info = "Completes Tutorial Island", version = 6.0, logo = "")
88
public final class TutorialIsland extends Script {
99

1010
private final TutorialSection rsGuideSection = new RuneScapeGuideSection();
@@ -85,6 +85,6 @@ private int getTutorialSection() {
8585
}
8686

8787
private boolean isTutorialIslandCompleted() {
88-
return getWidgets().getWidgetContainingText("Tutorial Island Progress") == null;
88+
return getConfigs().get(281) == 1000 && myPlayer().isVisible();
8989
}
9090
}

0 commit comments

Comments
 (0)