This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#Delete existing BlazeBot files and clone BlazeBot with Git | |
sudo rm -r BlazeBot | |
git clone https://github.com/iCrazyBlaze/BlazeBot |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
title GMA Publisher Batch Tool | |
cls | |
echo ------------------------------------------ | |
echo iCrazyBlaze's Garry's Mod Addon Publisher | |
echo ------------------------------------------ | |
echo. | |
color C | |
echo Notice - It's recommended that you run this file from the Garry's Mod bin folder. If you want to run it somewhere else, copy "gmpublish.exe" and "steam_api.dll" into the same directory as this file. | |
echo You can only upload .GMA files; other filetypes are not supported!! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Send emails in Python, converted for Python 3.6 by iCrazyBlaze | |
import smtplib | |
from email.mime.multipart import MIMEMultipart | |
from email.mime.text import MIMEText | |
# Your email details | |
fromaddr = "your email" | |
PASSWORD = "your password" | |
# Email message |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Create shell.APK for Meterpreter and copy it to the Apache server | |
# iCrazyBlaze, 27/02/2018. | |
import os | |
print("==============================================") | |
print("iCrazyBlaze's Meterpreter APK generator v1.0") | |
print("==============================================") | |
print("") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
import urllib.request | |
import json | |
while True: | |
username = input("Enter username: ") | |
try: | |
# Make requests to Mojang API and grab info | |
data = urllib.request.urlopen("https://api.mojang.com/users/profiles/minecraft/" + username).read() | |
uuid = json.loads(data)["id"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
screen -r mcs -X stuff '/save-all\n/save-off\n' | |
/usr/bin/gsutil cp -R ${BASH_SOURCE%/*}/world gs://<bucket>/$(date "+%Y%m%d-%H%M%S")-world | |
screen -r mcs -X stuff '/save-on\n' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#---------------------------------------- | |
# A shell script for updating the minecraft server jar file on Linux Servers | |
# Written by: Andrew Haskell | |
# Updated by: Zukaro Travon | |
# Last updated on: 2019.Sep.23 | |
# Distributed under The MIT License (MIT) | |
# | |
# Dependencies | |
# cURL For downloading of the manifest and jar files | |
# jq For parsing the manifests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
########################################################### | |
# Google Cloud Minecraft server setup | |
# Written by iCrazyBlaze | |
# Last edited 07/10/2019 | |
########################################################### | |
path=/home/minecraft/server | |
backuphours=6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo screen -S mcs java -Xms1G -Xmx7G -d64 -jar server.jar nogui |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections.Generic; | |
using UnityEngine; | |
using ModIO; | |
using System.IO; | |
public class InitMods : MonoBehaviour | |
{ | |
public string bundleName = "modbundle"; | |
// Start is called before the first frame update |
OlderNewer