I hereby claim:
- I am spacemud on github.
- I am spacemud (https://keybase.io/spacemud) on keybase.
- I have a public key whose fingerprint is D9DD 5CDD 4879 F5A1 0A9C 276D 93AE FDC4 F739 94FA
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| alias xmlogin { | |
| if (!$0 || $0 > 1) { | |
| echo -a Syntax: /xmlogin [password] | |
| halt | |
| } | |
| set %login | |
| set %password $1 | |
| whois xM_1 | |
| } |
| local name = "xmlogin.lua" | |
| local version = "1.0" | |
| local desc = "Simplify logging in to the xMovie IRC echo bots with this script" | |
| hexchat.register(name, version, desc) | |
| local function cmd_xmlogin(word, eol) | |
| if not word[2] then | |
| hexchat.print("Syntax: /xmlogin [password]") | |
| return hexchat.EAT_HEXCHAT |
| build: | |
| image: | |
| name: southclaws/sampctl:latest | |
| entrypoint: [""] | |
| tags: [pawn] | |
| artifacts: | |
| paths: | |
| - gamemodes/barp.amx | |
| cache: | |
| paths: |
| # Uncrustify-0.68-59-5813ad32 | |
| # | |
| # General options | |
| # | |
| # The type of line endings. | |
| # | |
| # Default: auto | |
| newlines = auto # lf/crlf/cr/auto |
| /* | |
| Mozilla Public License Version 2.0 | |
| Copyright (c) 2018 IllidanS4 | |
| This Source Code Form is subject to the terms of the Mozilla Public License, | |
| v. 2.0. If a copy of the MPL was not distributed with this file, You can | |
| obtain one at https://mozilla.org/MPL/2.0/. | |
| */ |
| ## Benjamin Williams | |
| ## <[email protected]> | |
| ## -- | |
| ## bipltool.py/pyc | |
| import os | |
| import sys | |
| import struct | |
| import math |
| #define INVALID_DIALOG_ID (cellmin) | |
| static stock | |
| gPrev[MAX_PLAYERS] = { INVALID_DIALOG_ID, ... }, | |
| gCur[MAX_PLAYERS] = { INVALID_DIALOG_ID, ... }, | |
| bool:gOPDR = true; | |
| hook function ShowPlayerDialog(playerid, dialogid, style, const caption[], const info[], const button1[], const button2[]) | |
| { | |
| gCur[playerid] = dialogid; |
| import qrcode from "qrcode-generator"; | |
| async function generateQRCodeForSamp(context) { | |
| let typeNumber = 4; | |
| let errorCorrectionLevel = 'L'; | |
| let qr = qrcode(typeNumber, errorCorrectionLevel); | |
| qr.addData(context); | |
| qr.make(); | |
| let newQRCode = ""; |
| #include <a_samp> | |
| #include <rotations.inc> | |
| main() {} | |
| // for debug | |
| static PlayerText:MessageTextdraw[MAX_PLAYERS]; | |
| static bool:AP = false; | |
| static TargetAlt = 1000; // 1000ft - low altitude cruise |