This file contains hidden or 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
| unit ts3bookmarks; | |
| interface | |
| uses | |
| System.SysUtils, Classes, Windows, ShlObj, pbInput, pbPublic; | |
| type | |
| TFavorit = record | |
| Name:String; |
This file contains hidden or 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
| /** | |
| * Convert cson snippets into a Markdown document for reference | |
| */ | |
| const cson = require('cson'); | |
| const glob = require ('glob'); | |
| const path = require('path'); | |
| const fs = require('fs'); | |
| const _ = require('lodash'); | |
| function Snippet(title, code, prefix, fileName, lang) { |
This file contains hidden or 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
| #!/bin/sh | |
| # 28 C5 28 56 -> 00 00 00 00 | |
| sed -i 's/\x28\xC5\x28\x56/\x00\x00\x00\x00/g' ts3server | |
| # D3 8D DF 53 -> 00 00 00 00 | |
| sed -i 's/\xD3\x8D\xDF\x53/\x00\x00\x00\x00/g' ts3server | |
| # 27 C5 28 56 -> 00 00 00 00 | |
| sed -i 's/\x27\xC5\x28\x56/\x00\x00\x00\x00/g' ts3server | |
| # D2 8D DF 53 -> 00 00 00 00 | |
| sed -i 's/\xD2\x8D\xDF\x53/\x00\x00\x00\x00/g' ts3server |
This file contains hidden or 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
| require("ts3init") | |
| require("ts3defs") | |
| require("ts3events") | |
| local MSGRedirect = { | |
| info = { | |
| MODULE = "MSG Redirect Module", | |
| MODULESHORT = "MSGR", | |
| MODULEFOLDER = "MSGRedirect", | |
| MODULEFILE = "init", | |
| MODULEEXT = "lua", |
NewerOlder