Skip to content

Instantly share code, notes, and snippets.

View Toyz's full-sized avatar

Helba Toyz

View GitHub Profile
Offset: 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F
00000000: 06 53 50 52 4D 41 50 01 07 00 00 00 74 65 73 74 .SPRMAP.....test
00000010: 69 6E 67 00 00 00 40 00 00 00 20 00 08 00 00 00 ing...@.........
00000020: 00 00 00 00 00 00 09 01 00 00 00 05 00 00 00 73 ...............s
00000030: 6F 6C 69 64 01 00 00 00 30 00 00 00 01 00 00 00 olid....0.......
00000040: 09 01 00 00 00 05 00 00 00 73 6F 6C 69 64 01 00 .........solid..
00000050: 00 00 30 00 00 00 02 00 00 00 09 01 00 00 00 05 ..0.............
00000060: 00 00 00 73 6F 6C 69 64 01 00 00 00 30 00 00 00 ...solid....0...
00000070: 03 00 00 00 09 01 00 00 00 05 00 00 00 73 6F 6C .............sol
00000080: 69 64 01 00 00 00 30 00 00 00 04 00 00 00 09 01 id....0.........
[olcMapFormat] 2018/03/20 21:20:04 Reading Map: Testing
[olcMapFormat] 2018/03/20 21:20:04 Width x Height: 64 x 32
[olcMapFormat] 2018/03/20 21:20:04 Map Payload Size: 4097
[olcMapFormat] 2018/03/20 21:20:04 Map Object Count: 2048
[olcMapFormat] 2018/03/20 21:20:04 Map Collision Count: 2048
[olcMapFormat] 2018/03/20 21:20:04 Validating File...
[olcMapFormat] 2018/03/20 21:20:04 TYPE: SPRMAP Version: 2
[olcMapFormat] 2018/03/20 21:20:04 Map Name: Testing
[olcMapFormat] 2018/03/20 21:20:04 Map Desc: This map is called: Testing
[olcMapFormat] 2018/03/20 21:20:04 Map Size: 64x32
{
"5":"Virtual Ticket Zone",
"6":"General Discussion",
"7":"BlizzCon Meetups",
"8":"World of Warcraft: Classic"
}
@Toyz
Toyz / OW1 CMD
Last active May 14, 2025 01:20
All command line options to Overwatch
----------POSSIBLE OPTIONS----------------------------------------------
--account : [optional] account name to login with
--key : [optional] connection key for the server (defaults to 1 in debug)
--automationRoutine : [optional] automation routine to run after login
--startAutomationGraph : [optional] start up and execute automation global graph using provided guid
--gatherEffectStats : [optional] enables effect stat gathering
--noautoconnect : [optional] Do not automatically connect to a server
--fastQuit
--dumpAssetNames : Write to <file> a JSON map of GUID (String "0xabc...") to asset name for all soft assets
--startPosition : [optional] start position when joining a map

Privacy Policy

BlizzTrack built the Badge Grabber app as a paid app. This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service.

If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy.

The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at BlizzTrack unless otherwise defined in this Privacy Policy.

Information Collection and Use

[CmdletBinding(SupportsShouldProcess = $true, ConfirmImpact = 'High')]
param (
[Parameter(Mandatory, HelpMessage = "Search term to use")]
[string]$query = "@Silriti",
[Parameter(HelpMessage = "100/110/111/etc (sfw/sketchy/nsfw)")]
[string]$purity = "110",
[Parameter(HelpMessage = "100/101/111/etc (general/anime/people)")]
[string]$categories = "010",
@Toyz
Toyz / SE_API.ts
Last active April 15, 2025 03:02
The types for the Streamelements API for custom widgets
interface SE_API {
cheerFilter: (message: string) => Promise<void>;
sanitize: (object: any) => Promise<any>;
getOverlayStatus: () => Promise<{ isEditorMode: boolean; muted: boolean }>;
setField: (key: string, value: any, reload?: boolean) => Promise<void>;
store: {
get: <T = any>(key: string) => Promise<T>;
set: <T = any>(key: string, value: T) => Promise<void>;
};
counters: {