Gets all rocksmith 2014 remastered songs in a directory and prints all tracks and their tunings. Made for use with tonelib jam to find songs
Needs rsrtools
Gets all rocksmith 2014 remastered songs in a directory and prints all tracks and their tunings. Made for use with tonelib jam to find songs
Needs rsrtools
This is a small tool to diff the current english data with the (default: german) translation. It checks if:
How to run:
diff.py in the cloned folder (next to the pack and translations folders)output_*.md| import requests | |
| device_key = "<ips4_device_key>" | |
| member_id = "<ips4_member_id>" | |
| login_key = "<ips4_login_key>" | |
| searchString = input("Enter search:") | |
| encoded = searchString.encode("utf8") | |
| search = str(encoded)[2:-1].replace("\\x", "%") | |
| length = 500 |
| // cpp.sh | |
| #include <iostream> | |
| #include <string> | |
| #include <stdio.h> | |
| size_t serialHash(const std::string& input) | |
| { | |
| if ( input.empty() || input.size() != 19 ) | |
| { | |
| return 0; |
| import bpy | |
| # Get the active object | |
| obj = bpy.context.active_object | |
| # Switch to the Shader Editor workspace | |
| #bpy.context.area.type = 'NODE_EDITOR' | |
| #bpy.context.space_data.tree_type = 'ShaderNodeTree' | |
| # Loop through each material slot |
| <html> | |
| <head> | |
| <title>Wishlist</title> | |
| </head> | |
| <body> | |
| <div> | |
| <!--<input id="steamid" type="text" placeholder="steam64 id" /> | |
| <button onclick="getWishlist(getElementById('steamid').value)">GET</button> |
Downloaded game through steam Downloaded dlcs through xlabs discord (https://xlabs.dev/; there has been a new dlc pack since ~2022/23, so old ddl links are outdated). Alternatively just use the torrents if you have a vpn or a isp that doesn't send you nice letters.
Download iw4x.dll from https://github.com/XLabsProject/iw4x-client/releases/latest
Put it next to the iw4mp.exe in the root mw2 folder
Download files from https://github.com/XLabsProject/iw4x-rawfiles/releases/latest
Put all files next to the iw4x.dll
| #!/bin/bash | |
| touch /tmp/test | |
| while getopts 'i:' OPTION; do | |
| case "$OPTION" in | |
| i) | |
| APPID="$OPTARG" | |
| echo $APPID >> /tmp/test | |
| ;; | |
| ?) | |
| echo "missing appid" >> /tmp/test |
| import requests,sys,hashlib | |
| import argparse | |
| parser = argparse.ArgumentParser() | |
| parser.add_argument("url", help="the base url") | |
| parser.add_argument('id', type=int, help='the user id', default=1) | |
| args = parser.parse_args() | |
| id = str(args.id) | |
| url = args.url | |
| if args.url[-1] != "/": # needs trailing / |