Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eyal-wowhub/characterinfo
A library that provides character and realm information.
https://github.com/eyal-wowhub/characterinfo
lib library lua world-of-warcraft world-of-warcraft-addon wow wow-addon
Last synced: 16 days ago
JSON representation
A library that provides character and realm information.
- Host: GitHub
- URL: https://github.com/eyal-wowhub/characterinfo
- Owner: Eyal-WowHub
- Created: 2025-01-02T21:49:15.000Z (22 days ago)
- Default Branch: main
- Last Pushed: 2025-01-05T13:34:17.000Z (19 days ago)
- Last Synced: 2025-01-05T14:33:18.326Z (19 days ago)
- Topics: lib, library, lua, world-of-warcraft, world-of-warcraft-addon, wow, wow-addon
- Language: Lua
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CharacterInfo
A library that provides character and realm information.
#### Dependencies: [LibStub](https://www.curseforge.com/wow/addons/libstub), [Contracts](https://github.com/Eyal-WowHub/Contracts)
### Example:
```lua
local CharacterInfo = LibStub("CharacterInfo-1.0")for isPlayerRealm, realm in CharacterInfo:IterableConnectedRealms() do
if isPlayerRealm then
print(realm, CharacterInfo:GetName())
else
print(realm)
end
end
```