Open-source multiplayer game server compatible with the RuneScape client https://www.openrs2.org/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
openrs2/xtea-plugin/src/main/java/org/openrs2/xtea/XteaConfig.java

17 lines
438 B

package org.openrs2.xtea;
import net.runelite.client.config.Config;
import net.runelite.client.config.ConfigGroup;
import net.runelite.client.config.ConfigItem;
@ConfigGroup("openrs2xtea")
public interface XteaConfig extends Config {
@ConfigItem(
keyName = "endpoint",
name = "API Endpoint",
description = "The URL the XTEA keys are submitted to"
)
default String endpoint() {
return "https://archive.openrs2.org/keys";
}
}