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; | |
}; |
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, |
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" |
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 | |
//-------------------------------------- | |
//-------------------------------------- |
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" |
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; | |
}; |
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; |
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 | |
}, |
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 | |
* | |
*/ |
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