RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
LootshareDialogue.java
1package com.osroyale.content.dialogue.impl;
2
3import com.osroyale.content.dialogue.Dialogue;
4import com.osroyale.content.dialogue.DialogueFactory;
5
36
37public class LootshareDialogue extends Dialogue {
38
39 @Override
40 public void sendDialogues(DialogueFactory factory) {
41 factory.sendStatement("").sendStatement(
42 "When active, all clan gameMembers within a 32 tile radius will receive",
43 "an equal split of any item dropped by a npc that has a value of",
44 "2,500,000 or more. Untradeable items will not be split or given to each.",
45 "Clan member. Be advised that the item value will not always be 100%").sendStatement(
46 "correct and 25% of the item value will be removed due to the item",
47 "automatically converting into coins. Only gameMembers with a certain clan",
48 "rank may toggle the lootshare.")
49 .execute();
50 }
51}
final DialogueFactory sendStatement(String... lines)