GithubHelp home page GithubHelp logo

skillsmc's Introduction

SkillsMC

a Paper 1.19.X Plugin

skillsmc's People

Contributors

ragnaorok avatar bratah123 avatar

Stargazers

 avatar

Watchers

 avatar

skillsmc's Issues

SoulsManager and related Hashmaps do not save to nor load from dat files.

package ragnaorok.Main.managers;

import org.bukkit.OfflinePlayer;
import ragnaorok.Main.Currency;
import java.io.*;
import java.util.zip.GZIPInputStream;
import java.util.zip.GZIPOutputStream;

public class CurrencyManager {
public static void saveCurrencyFile() throws Exception {
File file = new File("currency.dat");
boolean successful = true;
if (!file.exists()) {
successful = file.createNewFile();
}

    if (!successful)
        return;

    ObjectOutputStream output = new ObjectOutputStream(new GZIPOutputStream(new FileOutputStream(file)));

    try {
        output.writeObject(Currency.SOULS);
    } catch (Exception ex) {
        ex.printStackTrace();
    } finally {
        output.close();
    }

}

@SuppressWarnings("unchecked")
public static void loadCurrencyFile() throws Exception {

    File file = new File("currency.dat");
    boolean successful = true;

    if (!file.exists()) {
        successful = file.createNewFile();
    }

    if (!successful)
        return;

    ObjectInputStream input = new ObjectInputStream(new GZIPInputStream(new FileInputStream(file)));
    try {
        Object readObject = input.readObject();
        System.out.println(readObject.toString());
    } catch (Exception ex) {
        ex.printStackTrace();
    } finally {
        input.close();
    }
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.