View League of Legends v8.13.236.184 LCU API
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"basePath": "/", | |
"consumes": [ | |
"application/json", | |
"application/vnd.api+json", | |
"application/x-yaml", | |
"application/x-msgpack", | |
"application/octet-stream", | |
"application/x-www-form-urlencoded", | |
"multipart/form-data" |
View SKNLoader.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @author Pupix / https://github.com/pupix | |
*/ | |
THREE.SKNLoader = function ( manager ) { | |
this.manager = ( manager !== undefined ) ? manager : THREE.DefaultLoadingManager; | |
}; |
View SKLLoader.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @author Pupix / https://github.com/pupix | |
*/ | |
THREE.SKLLoader = function ( manager ) { | |
this.manager = ( manager !== undefined ) ? manager : THREE.DefaultLoadingManager; | |
}; |
View lanim compressedData template.bt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//-------------------------------------- | |
//--- 010 Editor v4.0.1 Binary Template | |
// | |
// Author: Pupix <manolea.robert@gmail.com> | |
// Purpose: Parsing lolking's lanim files | |
//-------------------------------------- | |
// STRUCTS | |
struct Position { | |
float x; |
View gist:ec17c81a08734c76eff7293edc77a9ab
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"CharacterId": 1, | |
"Name": "name", | |
"Lev": 21, | |
"Rank": "1", | |
"CreateDate": "2017-07-07T03:08:42.893Z", | |
"CharPassword": null, | |
"Deleted": false | |
}, |
View index.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
process.env.NODE_TLS_REJECT_UNAUTHORIZED = "0"; | |
const WebSocket = require('ws'); | |
const MESSAGE_TYPES = { | |
WELCOME: 0, | |
PREFIX: 1, | |
CALL: 2, | |
CALLRESULT: 3, | |
CALLERROR: 4, |
View aimesh_ngrid.bt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//-------------------------------------- | |
//--- 010 Editor v5.0.2 Binary Template | |
// | |
// File: .aimesh_ngrid Template | |
// Author: Pupix <manolea.robert@gmail.com> | |
// Revision: 1.0 | |
// Purpose: Read .aimesh_ngrid files from League of Legends | |
//-------------------------------------- | |
//-------------------------------------- |
View index.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Converts `.inibin` fiiles to `.json`. | |
* | |
* Usage example: | |
* Create an `inibins` directory and put your `.inibin` files in there | |
* Run `node index` from terminal and a new directory `extracted` will | |
* be created, with the extracted files | |
* | |
*/ |
View League of Legends alpha client v0.3 API
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"basePath": "/", | |
"consumes": [ | |
"application/json", | |
"application/vnd.api+json", | |
"application/x-yaml", | |
"application/x-msgpack", | |
"application/octet-stream", | |
"application/x-www-form-urlencoded", | |
"multipart/form-data" |
View WADTemplate.bt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//-------------------------------------- | |
//--- 010 Editor v6.0.0 Binary Template | |
// | |
// File: WADTemplate | |
// Author: Pupix <manolea.robert@gmail.com> | |
// Purpose: League of Legends .wad file parsing | |
// Licence: MIT | |
//-------------------------------------- | |
// PREDEFINE |
NewerOlder