Skip to content

Instantly share code, notes, and snippets.

View mrtopf's full-sized avatar

Christian Scholz mrtopf

View GitHub Profile
---- Minecraft Crash Report ----
WARNING: coremods are present:
MalisisCorePlugin (malisiscore-1.10.2-4.2.7.jar)
ChiselCorePlugin (Chisel-MC1.10.2-0.0.7.3.jar)
BookshelfLoadingPlugin (Bookshelf-1.10.2-1.4.2.330.jar)
LoadingPlugin (RandomThings-MC1.10.2-3.7.6.jar)
AppleCore (AppleCore-mc1.10.2-2.0.1.jar)
FMLPlugin (InventoryTweaks-1.62-dev-66.jar)
IvToolkit (IvToolkit-1.2.8.5.jar)
---- Minecraft Crash Report ----
WARNING: coremods are present:
MalisisCorePlugin (malisiscore-1.10.2-4.2.7.jar)
ChiselCorePlugin (Chisel-MC1.10.2-0.0.7.3.jar)
BookshelfLoadingPlugin (Bookshelf-1.10.2-1.4.2.330.jar)
LoadingPlugin (RandomThings-MC1.10.2-3.7.6.jar)
AppleCore (AppleCore-mc1.10.2-2.0.1.jar)
FMLPlugin (InventoryTweaks-1.62-dev-66.jar)
IvToolkit (IvToolkit-1.2.8.5.jar)
- RoughTweaks
- VoidCraft
-> no change
- Dungeon Tactics
- Rough Mobs
- RailCraft
- WayStones
- TinyProgression
removing:
- HardModeTweaks (nope)
- CustomNPCs
- Cyberware
- DungeonTactics
- Druid
- Goetia
- Hardcore Wither
---- Minecraft Crash Report ----
WARNING: coremods are present:
LoadingPlugin (Quark-r1.0-56.jar)
MalisisCorePlugin (malisiscore-1.10.2-4.2.7.jar)
BookshelfLoadingPlugin (Bookshelf-1.10.2-1.4.2.330.jar)
CCLCorePlugin (CodeChickenLib-1.10.2-2.4.2.106-universal.jar)
LoadingPlugin (RandomThings-MC1.10.2-3.7.6.jar)
LoadingPluginHardModeTweaks (HardModeTweaks-1.10-1.2.2.jar)
AppleCore (AppleCore-mc1.10.2-2.0.1.jar)
---- Minecraft Crash Report ----
WARNING: coremods are present:
LoadingPlugin (Quark-r1.0-56.jar)
MalisisCorePlugin (malisiscore-1.10.2-4.2.7.jar)
BookshelfLoadingPlugin (Bookshelf-1.10.2-1.4.2.330.jar)
CCLCorePlugin (CodeChickenLib-1.10.2-2.4.2.106-universal.jar)
LoadingPlugin (RandomThings-MC1.10.2-3.7.6.jar)
LoadingPluginHardModeTweaks (HardModeTweaks-1.10-1.2.2.jar)
AppleCore (AppleCore-mc1.10.2-2.0.1.jar)
@mrtopf
mrtopf / gist:ecd6843b00042388397fc17f9592640b
Created October 10, 2016 12:42
Crash with DungeonTactics and OreExcavation
---- Minecraft Crash Report ----
WARNING: coremods are present:
LoadingPlugin (Quark-r1.0-56.jar)
SHLoadingPlugin (ScalingHealth-1.9.4-0.2.5-24.jar)
LoadingPlugin (RandomThings-MC1.10.2-3.7.6.jar)
AppleCore (AppleCore-mc1.10.2-2.0.1.jar)
MalisisCorePlugin (malisiscore-1.10.2-4.2.5.jar)
IvToolkit (IvToolkit-1.2.8.5.jar)
BookshelfLoadingPlugin (Bookshelf-1.10.2-1.4.2.327.jar)
[{
u 'postback': {
u 'payload': u 'my postback string'
},
u 'recipient': {
u 'id': 129283210520070
},
u 'sender': {
u 'id': 1049549878444680
},
@mrtopf
mrtopf / handle_messages.py
Created April 27, 2016 09:39
handle_messages mit Versand eines Bildes
def handle_messages(data):
"""handle all incoming messages"""
messaging_events = data['entry'][0]['messaging']
for event in messaging_events:
sender_id = event['sender']['id']
# check if we actually have some input
if "message" in event and event['message'].get("text","") != "":
text = event['message']['text']
# send a simple text reply
@mrtopf
mrtopf / send_image.py
Created April 27, 2016 09:26
Die send_image()-Funktion für den Messenger-Bot
def send_image(recipient_id, image_url):
"""send an image to a recipient"""
recipient = { 'id' : recipient_id }
# create an image object
image = { 'url' : image_url }
# add the image object to an attachment of type "image"
attachment = {