Skip to content

Instantly share code, notes, and snippets.

View VertofChest's full-sized avatar
💭
Enjoy!

Beru VertofChest

💭
Enjoy!
View GitHub Profile
@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active December 6, 2025 10:55
Complete Recent Discord Quest

Complete Recent Discord Quest

Note

This does not works in browser for quests which require you to play a game! Use the desktop app to complete those.

How to use this script:

  1. Accept a quest under Discover -> Quests
  2. Press Ctrl+Shift+I to open DevTools
  3. Go to the Console tab
  4. Paste the following code and hit enter:
@jh0ker
jh0ker / 00_readme.md
Last active December 4, 2025 19:05
Max attributes and skills in SCUM game single player (+ unlock developer commands)

README

This script manipulates the SCUM database for the single player mode to increase the level of all skills and attributes to max (or the value of your choice) for a given prisoner. This script does not work for multiplayer characters.

You can edit the configuration settings SET_ATTRIBUTES and SET_SKILLS at the start of the script below to change the target values for the skills and attributes. Default is maxed out.

Tested with SCUM Build 0.9.605.85940

How do I use it?

@David-Lor
David-Lor / KillPlayerOnDemand.cs
Created January 1, 2021 18:01
GTA V - "Kill Player on Demand" script
using System.Windows.Forms;
using GTA;
using GTA.Native;
public class KillPlayerOnDemand : Script {
public KillPlayerOnDemand() {
KeyUp += OnKeyUp;
}