Welcome to the Hangar Open Beta. Please report any issue you encounter on GitHub!
Avatar for Kikisito

Put your money into sheets of paper and give it away... or even burn it?

Report NFCNotes?

API

NFCNotes includes a small API for two events: WithdrawEvent and DepositEvent. The first one is called when a player withdraws money and the second one when someone redeems a note. You can listen to these events if you include the NFCNotes API in your Maven or Gradle project:

Maven

    <repositories>
        <repository>
            <id>jitpack.io</id>
            <url>https://jitpack.io</url>
        </repository>
    </repositories>

    <dependencies>
        <dependency>
            <groupId>com.github.Kikisito</groupId>
            <artifactId>NFCNotes</artifactId>
            <version>master</version>
        </dependency>
    </dependencies>

Gradle

  allprojects {
    repositories {
      maven { url 'https://jitpack.io' }
    }
  }
  
  dependencies {
    implementation 'com.github.Kikisito:NFCNotes:master'
  }