2.0.0-demo-4 • Published 2 years ago

newgrounds-boom v2.0.0-demo-4

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Kaboom Newgrounds.io API Plugin

With this Kaboom plugin you can use medals and post scores on Newgrounds.com

Quick example

import { newgroundsPlugin } from "newgrounds-boom";

kaboom({
    width: 500,
    height: 500,
    font: "unscii",
    plugins: [ newgroundsPlugin ]
});

ngInit("52924:fdddr5yP", "oEZ7GGD79Wht9upZ4HH7Dw==", 1);
ngUnlockMedal(65025);

add([
    text("ohhi " + String(ngUsername()), {size: 40, width: 400}),
    origin("center"),
    pos(width() / 2, height() / 2)
]);

keyPress("space", () => {
    add([
        text(String(ngVersion()), {size: 30}),
        origin("center"),
        pos(width() / 2, height() - 80)
    ]);
});
 
mouseClick(() => {
    ngUnlockMedal(65022);
    ngPostScore(10739, rand(0, 9999).toString());
});

How to use

Init

In your project, activate the "api tools" and you will see the following credentials

npm.io

Before using the newgrounds features, you'll need to connect your game, use ngInit("App ID", "Encryption Key"). You can activate the debug mode, which will return the results by console (cool if you have not yet published your game), use ngInit("App ID", "Encryption Key", 1);

Using the credentials of this game, it would be like this:

ngInit("52924:fdddr5yP", "oEZ7GGD79Wht9upZ4HH7Dw==");

Unlock Medals

Once you have done the previous step, you can use the scores and medals. Let's see the medals, for that you must first have a medal, duh

npm.io

We will use the ngUnlockMedal("Medal ID in Number") function

ngUnlockMedal(65022);

Post Scores

Now, to use the scoreboards, again, we have to have a scoreboard duh

npm.io

We will use the ngPostScore("Board ID in Number", "score") function

ngPostScore(10739, 1234);

Other functions

ngUsername(): returns a String with the newgrounds username of the player ngVersion(): returns a Number with the version of the newgrounds app ngIsSupporter(): returns a Boolean with the status of newgrounds Support player ngGetScores(id, user?, social?, skip?, limit?): returns a Object with info of the scoreboard ngCall(component, parameters?): call any component of Newgrounds.io

Install

  • NPM: npm i newgrounds-boom
  • CDN: jsdelivr or unpkg
  • Kaboom-Util: npm i kaboom-util -> import { newgroundsPlugin } from "kaboom-util";

Thanks to

2.0.0-demo-3

2 years ago

2.0.0-demo-4

2 years ago

2.0.0-demo-0

2 years ago

2.0.0-demo-1

2 years ago

2.0.0-demo-2

2 years ago

1.1.1

3 years ago

1.1.0

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago