This file contains hidden or 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
| { | |
| { | |
| "calloutInfo": { | |
| "name": "Emergency Worker: Assistance Required", | |
| "location": "Sandy Shores" | |
| }, | |
| "rsid": "thatmaxplayle" | |
| } |
This file contains hidden or 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
| [EACUserData] | |
| Username=yourusername | |
| Password=yourpassword |
This file contains hidden or 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
| <?xml version="1.0" encoding="utf-8" ?> | |
| <hangoutbot> | |
| <joke> | |
| <author> | |
| <!-- Credit yourself here! --> | |
| <name></name> | |
| </author> | |
This file contains hidden or 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
| // Object "panel" is the "title bar" | |
| // On left button, let the user drag the form. | |
| private void panel_MouseDown(object sender, MouseEventArgs e) | |
| { | |
| if (e.Button == MouseButtons.Left) | |
| { | |
| // Release the mouse capture started by the mouse down. | |
| panel.Capture = false; |
This file contains hidden or 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
| <?xml version="1.0" encoding="UTF-8" ?> | |
| <hangoutbot> | |
| <author> | |
| <name>Max Playle</name> | |
| </author> | |
| <supportCommand> | |
| <!-- | |
| The activator string is the string you'll type in the command to activate this command. |
This file contains hidden or 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
| Entity[] vehicles = World.GetEntities(Destination, 4.5f, GetEntitiesFlags.ConsiderCars | GetEntitiesFlags.ExcludeEmergencyVehicles | GetEntitiesFlags.ExcludeEmptyVehicles | GetEntitiesFlags.ExcludePlayerVehicle); | |
| foreach (Entity ent in vehicles) | |
| { | |
| if (!ent) | |
| { | |
| continue; | |
| } | |
| } |
This file contains hidden or 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
| ~r~ = Red | |
| ~b~ = Blue | |
| ~g~ = Green | |
| ~y~ = Yellow | |
| ~p~ = Purple | |
| ~o~ = Orange | |
| ~c~ = Grey? | |
| ~m~ = Darker Grey | |
| ~u~ = Black | |
| ~n~ = New Line |
This file has been truncated, but you can view the full file.
This file contains hidden or 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
| [16:45:19] [main/INFO]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker | |
| [16:45:19] [main/INFO]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLTweaker | |
| [16:45:19] [main/INFO]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLTweaker | |
| [16:45:19] [main/INFO]: Forge Mod Loader version 14.23.5.2854 for Minecraft 1.12.2 loading | |
| [16:45:19] [main/INFO]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_51, running on Windows 10:amd64:10.0, installed at C:\Users\maxpl\Twitch\Minecraft\Install\runtime\jre-x64 | |
| [16:45:19] [main/INFO]: Searching C:\Users\maxpl\Twitch\Minecraft\Instances\GangPack 2.0\mods for mods | |
| [16:45:19] [main/INFO]: Searching C:\Users\maxpl\Twitch\Minecraft\Instances\GangPack 2.0\mods\1.12.2 for mods | |
| [16:45:19] [main/INFO]: Loading tweaker codechicken.asm.internal.Tweaker from ChickenASM-1.12-1.0.2.7.jar | |
| [16:45:19] [main/WARN]: Found FMLCorePluginContainsFMLMod marker in CTM-MC1.12.2-1.0.2.31.jar. This is not recommended, @Mods sh |