Skip to content

playerloopteam1/Playerloop-javascript

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PlayerLoop for javascript

PlayerLoop? What is it?

Playerloop is a tool to help you track player's feedback, bug reports. Go to https://app.playerloop.io to register an account.

How do i use this?

First you need project key, you must create a PlayerLoop account in order to get it Than include this in your website:

<script src = 'https://mebaddev.github.io/Playerloop-javascript/PlayerLoopAPI.js' defer></script>

Now you can send report with codes below :D

// First you must initalize it with your key
init('My Key')
// To send a report you create a playerData object
// Give it Player ID, Player's email, Player's Handle
// Note: Only Player ID is nesessary, you can leave others blank
let data = new playerData('Player ID','[email protected]','Player Handle','Player name');
// 'bug' at the middle is report type. it could only be one of 
createReport('Report Title','bug',data);

IMPORTANT: Your MUST make sure your user accept Playerloop's Privacy Policy before sending there data.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 62.1%
  • HTML 37.9%