Skip to content

Instantly share code, notes, and snippets.

View DurtyFree's full-sized avatar
🛳️
Ship it 🚀

Alexander Schmid DurtyFree

🛳️
Ship it 🚀
View GitHub Profile
@DurtyFree
DurtyFree / NiaHash.cs
Last active January 9, 2020 14:22
Pokemon Go PokeMobBot niantic hashing
internal static class HashConstants
{
#region Constants
/*
#if 1
// IOS 1.13.3
static uint64_t magic_table[16] = {
0x95C05F4D1512959E, 0xE4F3C46EEF0DCF07,
0x6238DC228F980AD2, 0x53F3E3BC49607092,
0x4E7BE7069078D625, 0x1016D709D1AD25FC,
@DurtyFree
DurtyFree / Signature.proto
Last active January 9, 2020 14:23
Pokemon Go signature proto
syntax = "proto3";
package POGOProtos.Networking.Envelopes;
message Signature {
repeated UnknownMessage field1 = 1;
int64 timestamp_ms_since_start = 2;
string field3 = 3;
repeated LocationUpdate location_updates = 4; // Multiple location updates at a time. This is all the updates since the last time we sent a request
repeated AndroidGpsInfo android_gps_info = 5;
repeated UnknownMessage field6 = 6;
@DurtyFree
DurtyFree / gtaAnimations.js
Created January 9, 2020 16:09
GTA V all animations as js array
This file has been truncated, but you can view the full file.
var animations = [['agency_heist_3a', 'spiral_smoke_04','spiral_smoke_03','spiral_smoke_02','spiral_smoke_01','spiral_smoke_07','spiral_smoke_06','spiral_smoke_05'],['cropduster_s', 'cropduster_s','cropwing_s'],['p_airdancer_01_s', 'donotuse','p_cargo_chute_s_deploy','p_cargo_chute_s_crumple','p_airdancer_01_s_run'],['p_cablecar_s', 'c1_up_6','c1_g','c1_h','c1_up_2','c2_up_7','c1_down_2','p_cblcar_s_doors_open','c2_up_2','c2_up_9','c2_a','c1_down_8','c2_down_3','c2_down_5','c2_down_1','c2_d','c2_down_4','c1_down_9','c2_up_5','c1_up_1','c1_down_1','c2_up_1','c2_h','c1_up_4','c2_down_6','c1_e','c2_up_8','p_cblcar_s_doors_idle_open','level','p_cblcar_s_doors_close','c1_up_3','c1_c','c2_down_9','c2_c','c1_f','c2_down_2','c1_down_7','c1_down_5','c1_d','c1_a','c1_up_9','c2_up_6','c1_down_4','c1_up_5','c2_g','c2_f','c1_up_7','c2_e','c2_down_7','c2_b','c2_up_3','c2_down_8','c1_up_8','c1_down_3','c1_down_6','c1_b','c2_up_4'],['p_cargo_chute_s', 'donotuse','p_cargo_chute_s_idle','p_cargo_chute_s_deploy','p_cargo_chute_
@DurtyFree
DurtyFree / MaterialHashes
Created November 10, 2020 10:17
GTA 5 Collision Material Hashes
enum MaterialHash {
None = 0x0,
Default = 0x962C3F7B,
Concrete = 0x46CA81E8,
ConcretePothole = 0x1567BF52,
ConcreteDusty = 0xBF59B491,
Tarmac = 0x10DD5498,
TarmacPainted = 0xB26EEFB0,
TarmacPothole = 0x70726A55,
RumbleStrip = 0xF116BC2D,