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
| Панда-пёрл #5: Какая еще ложка?! | |
| Панда-пёрл #11: До появления интернета Майн продавали на бобинах, т.к. информация о дискетах появилась на ютубе только в 1996 году. | |
| Панда-пёрл #12: Собака... ну, которая корова! | |
| Панда-пёрл #14: Меня зажевало! | |
| Панда-пёрл #15: Шта?! | |
| Панда-пёрл #19: В чем смысл вам не нравится где я туплю? | |
| Панда-пёрл #17: Массаж массажу массазу. | |
| Панда-пёрл #24: Не подходите! Я с сюррикенами, я с сюррикенами! Я бешенный! | |
| Панда-пёрл #26: Хочу двигаться в сторону движения | |
| Панда-пёрл #27: Лед тает от моего снега. |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.Diagnostics; | |
| using System.Net.Sockets; | |
| using System.Security.Cryptography.X509Certificates; | |
| using Vintagestory.API.Client; | |
| using Vintagestory.API.Common; | |
| using Vintagestory.API.Common.Entities; | |
| using Vintagestory.API.Datastructures; | |
| using Vintagestory.API.MathTools; |
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
| namespace VSExampleMods | |
| { | |
| public class TrampolineMod : ModSystem | |
| { | |
| public override void Start(ICoreAPI api) | |
| { | |
| base.Start(api); | |
| api.RegisterBlockClass("trampoline", typeof(TrampolineBlock)); |
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
| public class TrampolineBlock : Block | |
| { | |
| public override void OnEntityCollide(IWorldAccessor world, Entity entity, BlockPos pos, BlockFacing facing, | |
| Vec3d collideSpeed, bool isImpact) | |
| { | |
| base.OnEntityCollide(world, entity, pos, facing, collideSpeed, isImpact); | |
| TrampolineBlockE be = world.BlockAccessor.GetBlockEntity(pos) as TrampolineBlockE; | |
| if (be == null) return; | |
| be.OnEntityCollide(entity); | |
| } |
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
| mods.nuclearcraft.salt_mixer.addRecipe(<liquid:sulfur>*1000,<liquid:sodium>*1000,<liquid:fluidsodiumsulfide>*2000); | |
| mods.nuclearcraft.salt_mixer.addRecipe(<liquid:oxygen>*1000,<liquid:fluidsodiumsulfide>*1000,<liquid:fluidsodiumpersulfate>*2000); | |
| mods.nuclearcraft.salt_mixer.addRecipe(<liquid:fluidcompressedair>*1000,<liquid:fluidsodiumsulfide>*1000,<liquid:fluidsodiumpersulfate>*2000); | |
| mods.nuclearcraft.extractor.addRecipe(<techreborn:dynamiccell>.withTag({Fluid: {FluidName: "fluidsodiumsulfide", Amount: 1000}}),<techreborn:dynamiccell>,<liquid:fluidsodiumsulfide>*1000); | |
| mods.nuclearcraft.extractor.addRecipe(<techreborn:dynamiccell>.withTag({Fluid: {FluidName: "fluidsodium", Amount: 1000}}),<techreborn:dynamiccell>,<liquid:fluidsodium>*1000); | |
| mods.nuclearcraft.extractor.addRecipe(<techreborn:dynamiccell>.withTag({Fluid: {FluidName: "sodium", Amount: 1000}}),<techreborn:dynamiccell>,<liquid:sodium>*1000); |
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
| mods.techreborn.solidCanningMachine.addRecipe(<techreborn:dynamiccell>.withTag({Fluid: {FluidName: "fluidsulfur", Amount: 1000}}), <ore:dustSulfur>,<techreborn:dynamiccell>, 100, 1); | |
| mods.techreborn.industrialGrinder.removeRecipe(<techreborn:dust:64>); | |
| mods.techreborn.industrialGrinder.addRecipe(<techreborn:dust:64>,<techreborn:smalldust:66>*6,<techreborn:smalldust:38>*2,null,<techreborn:ore:1>,null,<liquid:water>*1000,100,128); | |
| mods.techreborn.industrialGrinder.addRecipe(<techreborn:dust:64>,<techreborn:smalldust:66>*6,<techreborn:dust:38>*2,null,<techreborn:ore:1>,null,<liquid:fluidmercury>*1000,100,128); | |
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
| CREATE TABLE `access_list` ( | |
| `id` INT(10) UNSIGNED ZEROFILL NOT NULL AUTO_INCREMENT, | |
| `num` TINYTEXT NULL, | |
| `date` TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, | |
| `duration` INT(10) UNSIGNED ZEROFILL NULL DEFAULT NULL, | |
| PRIMARY KEY (`id`) | |
| ) | |
| COLLATE='utf8_general_ci' | |
| ENGINE=InnoDB | |
| AUTO_INCREMENT=0 |
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
| using System.Collections.Generic; | |
| using System.Collections; | |
| using System.ComponentModel; | |
| using System.Diagnostics.CodeAnalysis; | |
| using System.Globalization; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Reflection; | |
| using System.Runtime.Serialization; |
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
| <section class="container form-section" id="theForm"> | |
| [[!FormIt? | |
| &hooks=`resources` | |
| &validate=`email:email:required` | |
| ]] | |
| <form action="[[~[[*id]]]]" method="post"> | |
| <div class="columns"> | |
| <div class="column"> | |
| <div class="field"> | |
| <!--<label class="label">First Name</label>--> |