Skip to content

Instantly share code, notes, and snippets.

View mudachyo's full-sized avatar
💙
sudo rm -rf /usr/bin/

Daniil Voroshin mudachyo

💙
sudo rm -rf /usr/bin/
View GitHub Profile
@mudachyo
mudachyo / CompleteDiscordQuest.md
Created May 18, 2024 13:30 — forked from aamiaa/CompleteDiscordQuest.md
Complete Recent Discord Quest

Complete Recent Discord Quest

Note

This no longer works in browser!

Note

This no longer works if you're alone in vc! Somebody else has to join you!

How to use this script:

  1. Accept the quest under User Settings -> Gift Inventory
@mudachyo
mudachyo / addallgametowishlist.js
Last active February 5, 2023 23:59
Добавление всех игр в список желаний
(function()
{
var wishlist = [];
var wishlisted = [];
jQuery.ajax({
type: 'GET',
url: '//api.steampowered.com/ISteamApps/GetAppList/v2',
dataType: 'jsonp',
success: function(result){
--[[ Opcodes
shakeCam(int shake) -- 0003
Player player = createPlayer(Model modelId, float atX, float atY, float atZ) -- 0053
Ped ped = createChar(int pedtype, Model modelId, float atX, float atY, float atZ) -- 009A
deleteChar(Ped ped) -- 009B
float positionX, float positionY, float positionZ = getCharCoordinates(Ped ped) -- 00A0
setCharCoordinates(Ped ped, float posX, float posY, float posZ) -- 00A1
bool result = isCharInArea2d(Ped ped, float cornerAX, float cornerAY, float cornerBX, float cornerBY, bool sphere) -- 00A3
bool result = isCharInArea3d(Ped ped, float cornerAX, float cornerAY, float cornerAZ, float cornerBX, float cornerBY, float cornerBZ, bool sphere) -- 00A4
Vehicle car = createCar(Model modelId, float atX, float atY, float atZ) -- 00A5
@mudachyo
mudachyo / SteamGames.js
Created May 15, 2019 10:35
Получение 100 игр в стиме (Вставить в консоль в браузере).
(function()
{
if( location.hostname !== 'store.steampowered.com' )
{
alert( 'Запустите этот код в магазине Steam!' );
return;
}
else if( typeof jQuery !== 'function' )
{
ShowAlertDialog( 'Ошибка', 'На этой странице нет jQuery, попробуйте домашнюю страницу.' );
@mudachyo
mudachyo / tester_panel.js
Created February 28, 2018 19:05
tester_panel.js
// ==UserScript==
// @name Tester Panel
// @description Add tester panel
// @include *://vk.com/*
// @include *://*.vk.com/*
// @include *://*.vk.me/*
// @version 1.0
// @author capa18 (vk.com/capa18)
// @grant none
// ==/UserScript==