Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions osrs/antiban/biometrics.simba
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ EBiometric = enum(
RATING, LIKES, DISLIKES
);
```
Enum that represent biometrics affected by the user user unique player seed.
Enum that represents biometrics affected by the user's unique player seed.
*)
EBiometric = enum(
MULTIPLIER,
Expand All @@ -40,7 +40,7 @@ Enum that represent biometrics affected by the user user unique player seed.

(*
## TBiometrics
Record responsible for biometrics and beiometric behaviour.
Record responsible for biometrics and biometric behaviour.
*)
TBiometrics = record
Index: Integer;
Expand All @@ -52,11 +52,11 @@ Record responsible for biometrics and beiometric behaviour.
```pascal
property TBiometrics.Hash: TByteArray;
```
Get the current unique hash generated to the for the current {ref}`TProfile` being used.
Get the current unique hash generated for the current {ref}`TProfile` being used.

Changing {ref}`ProfileIndex`, will reset the hash.

If there's no {ref}`Profiles` availble WaspLib will use a random hash.
If there's no {ref}`Profiles` available WaspLib will use a random hash.

Example:
```pascal
Expand Down
Loading