Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fatfingers23/runelite-osrs-clanmate-export
Export OSRS classmates usernames, joined date, and rank.
https://github.com/fatfingers23/runelite-osrs-clanmate-export
Last synced: 10 days ago
JSON representation
Export OSRS classmates usernames, joined date, and rank.
- Host: GitHub
- URL: https://github.com/fatfingers23/runelite-osrs-clanmate-export
- Owner: fatfingers23
- License: bsd-2-clause
- Created: 2021-07-11T19:57:47.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-05-29T06:59:01.000Z (over 2 years ago)
- Last Synced: 2024-05-02T02:43:33.214Z (7 months ago)
- Language: Java
- Homepage:
- Size: 53.7 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Clanmate Export
This is a plugin that is used to export Clan members and their details.## How to use
1. Once logged into the game open the Clan interface via Clan Chat channel 'Settings' button.
2. Click 'Members' on the left side. Make sure the middle column is set to 'Rank' and last Column is 'Joined'.
3. Export should now be in your clipboard ready to paste.### Features
* Export Clan members username,rank, and date joined in CSV or JSON.
* Export to clipboard
* Can create a post to an url of your choosing.
* More to come
Web request body example for export via web request
```json
{
"clanName": "Name of your clan",
"clanMemberMaps": [
{
"rsn": "ClanMember 1",
"rank": "Sapphire",
"joinedDate": "19-Jun-2021"
},
{
"rsn": "ClanMember 2",
"rank": "Sapphire",
"joinedDate": "4-Jul-2021"
}
]
}
```## Special Thanks
This plugin is loosely based off of [Clan Roster Helper](https://github.com/simbleau/third-party-roster).
Some code may be present in this repo since I used their plugin as an example.