Skip to content

Instantly share code, notes, and snippets.

View pypy-vrc's full-sized avatar
🚀
Harder, Better, Faster, Stronger

pypy pypy-vrc

🚀
Harder, Better, Faster, Stronger
  • 127.0.0.1
  • 12:49 (UTC +09:00)
View GitHub Profile
@pypy-vrc
pypy-vrc / script.idc
Created May 5, 2026 21:20 — forked from diamondo25/script.idc
MapleStory IDC script
// IDC script for identifying functions and such
#include <idc.idc>
#define RenameFunction(a, b) Message("Found %s at %a\r\n", b, a); MakeName(a, b)
#define START_ADDR 0x00400000
static main() {
auto addr = BADADDR;
auto onMovePacket = FindAoBAndRename("25 0C FE FF FF 05 E8 03", "?OnMovePacket@CMovePath@@QAEXAAVCInPacket@@H@Z");
@pypy-vrc
pypy-vrc / 46c644c8287bb1905f32afe55d664f83.js
Last active August 1, 2026 07:28
remove red badge from VRChat web inventory
(async () => {
const res = await fetch(
"https://vrchat.com/api/1/inventory?n=100&offset=0&notFlags=ugc&notTypes=bundle&archived=false&seen=false&isNavBar=true",
);
const data = await res.json();
for (const item of data.data) {
await fetch(`https://vrchat.com/api/1/inventory/${item.id}`, {
method: "PUT",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ isSeen: true }),