Skip to content

Commit 3377d2c

Browse files
committed
feat: finished achievements gametab
1 parent fc99090 commit 3377d2c

16 files changed

+377
-78
lines changed
67.1 KB
Loading
72.2 KB
Loading

docs/images/diary_slot.png

29.8 KB
Loading

docs/images/diary_slots.png

28.2 KB
Loading

osrs/interfaces/gametabs/achievements.simba

Lines changed: 337 additions & 41 deletions
Large diffs are not rendered by default.

osrs/interfaces/gametabs/equipment.simba

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,15 @@ Main record reponsible for handling the equipment gametab.
4040
end;
4141

4242
(*
43-
## Equipment.SetupInterface
43+
## Equipment.SetupGameTab
4444
```pascal
45-
procedure TRSEquipment.SetupInterface();
45+
procedure TRSEquipment.SetupGameTab();
4646
```
4747
Internal method used to setup the {ref}`TRSEquipment` coordinates.
4848

4949
This is automatically called for you on the {ref}`Equipment variable`.
5050
*)
51-
procedure TRSEquipment.SetupInterface();
51+
procedure TRSEquipment.SetupGameTab();
5252
var
5353
slots, btns: TBoxArray;
5454
i: Integer;

osrs/interfaces/gametabs/houseoptions.simba

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ Main record responsible with interacting with the house options.
3030

3131

3232
(*
33-
## HouseOptions.SetupInterface
33+
## HouseOptions.SetupGameTab
3434
```pascal
35-
procedure TRSHouseOptions.SetupInterface();
35+
procedure TRSHouseOptions.SetupGameTab();
3636
```
3737
Internal method used to setup the {ref}`TRSHouseOptions` coordinates.
3838
This is automatically called for you on the {ref}`HouseOptions` variable.
3939
*)
40-
procedure TRSHouseOptions.SetupInterface();
40+
procedure TRSHouseOptions.SetupGameTab();
4141
begin
4242
with Self.Buttons[ERSHouseOptionsButton.CLOSE] do
4343
begin

osrs/interfaces/gametabs/inventory.simba

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ Main record responsible with handling the inventory gametab.
1818
end;
1919

2020
(*
21-
## Inventory.SetupInterface
21+
## Inventory.SetupGameTab
2222
```pascal
23-
procedure TRSInventory.SetupInterface();
23+
procedure TRSInventory.SetupGameTab();
2424
```
2525
Internal method used to setup the {ref}`TRSInventory` coordinates.
2626

2727
This is automatically called for you on the {ref}`Inventory variable`.
2828
*)
29-
procedure TRSInventory.SetupInterface();
29+
procedure TRSInventory.SetupGameTab();
3030
begin
3131
Self.Slots.Setup('Inventory.Slots', TBoxArray.Create(GameTab.TopLeft.Offset(13,9), 4, 7, 31, 31, [11, 5]));
3232
Self.Items.Setup('Inventory.Items', @Self.Slots, [0, 9, 4, 0]);

osrs/interfaces/gametabs/logout.simba

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ Main record that holds and the methods to interact with the logout gametab.
3030
end;
3131

3232
(*
33-
## Logout.SetupInterface
33+
## Logout.SetupGameTab
3434
```pascal
35-
procedure TRSLogout.SetupInterface();
35+
procedure TRSLogout.SetupGameTab();
3636
```
3737
Internal method used to setup {ref}`TRSLogout` coordinates.
3838
This is called automatically for you on the {ref}`Logout` variable.
3939
*)
40-
procedure TRSLogout.SetupInterface();
40+
procedure TRSLogout.SetupGameTab();
4141
var
4242
btns: TBoxArray;
4343
i: Integer;

osrs/interfaces/gametabs/options.simba

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,15 @@ Main record responsible with interacting with the {ref}`Options` gametab.
5858
end;
5959

6060
(*
61-
## Options.SetupInterface
61+
## Options.SetupGameTab
6262
```pascal
63-
procedure TRSOptions.SetupInterface();
63+
procedure TRSOptions.SetupGameTab();
6464
```
6565
Internal method used to setup the {ref}`TRSOptions` coordinates.
6666

6767
This is automatically called for you on the {ref}`Options variable`.
6868
*)
69-
procedure TRSOptions.SetupInterface();
69+
procedure TRSOptions.SetupGameTab();
7070
var
7171
boxes: TBoxArray;
7272
i: Integer;

0 commit comments

Comments
 (0)