Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sarxos/ryzom-network-client
This is Java client for LV-20 Ryzom Network, crafted by the Matis engineers after studies performed on very ancient amber cubes found at the Megacorp SAT01-B satellite crash site near Sandy Workshop of Aeden Aqueous.
https://github.com/sarxos/ryzom-network-client
Last synced: 24 days ago
JSON representation
This is Java client for LV-20 Ryzom Network, crafted by the Matis engineers after studies performed on very ancient amber cubes found at the Megacorp SAT01-B satellite crash site near Sandy Workshop of Aeden Aqueous.
- Host: GitHub
- URL: https://github.com/sarxos/ryzom-network-client
- Owner: sarxos
- License: mit
- Created: 2015-08-26T17:44:24.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-08T09:39:18.000Z (almost 9 years ago)
- Last Synced: 2024-10-15T23:06:34.874Z (2 months ago)
- Language: Java
- Size: 14.6 KB
- Stars: 1
- Watchers: 4
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# LV-20 Ryzom Network Client
This is Java client for LV-20 Ryzom Network, crafted by the Matis engineers after
studies performed on very ancient amber cubes found at the Megacorp SAT01-B satellite crash site
near Sandy Workshop of Aeden Aqueous.This is Karavan technology, not to be used by Kamis.
## Example
```java
import com.github.sarxos.ryzom.network.Lv20Client;
import com.github.sarxos.ryzom.network.Lv20Client.Chat;public static void main(String[] args) throws InterruptedException {
// client is closeable, so it can be used in either try/resources section
// or user can close it manually, depending on the application needstry (Lv20Client client = new Lv20Client()) {
// login to ryzom network, please note that you need to provide toon name
// here, not the accountclient.login("ToonName", "SecretPassword");
// send private tell message to the other toon (named ninbox in this example)
client.tell("Ninbox", "Hi Ninbox, please remember about the meeting.");
// send message to the given chat
client.send(Chat.UNIVERSE, "Hello Atys!");
// sleep a little bit before closing client just to make sure that
// message has been sent and the web socket can be closed without
// any waiting messages in the bufferThread.sleep(1000);
}
}
```## Requirements
* Java 8+
* Ryzom account with at least one toon
* Need to be Karavan Follower, this software is not for Kamis### License
The MIT License (MIT)
Copyright (c) 2015 Bartosz Firyn
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.