- No ore tripling, quadrupling, quintupling, etc. Ever.
- Falkreon Says: The absolute limit on ore multiplication is 2.6 ingots per ore block, with typical gains being closer to 1.6.
- A single block can never store more than 36 items, even when it's part of a multiblock structure.
- Furnace-burning fuels should produce no more than 30FU per furnace fuel tick.
- Falkreon Says: It can produce this as slowly or as quickly as you want.
- Wireless interactions are not always recommended.
- Falkreon Says: Well-designed network-topography-aware systems often outstrip the performance of wireless transfer systems, and occasionally even dumb cellular systems do. More importantly, wireless is unsatisfying gameplay.
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
#include <fstream> | |
#include <sstream> | |
#include <iostream> | |
#include <vector> | |
#include <string> | |
#include <map> | |
const wchar_t CODEPAGE[256] = | |
{ | |
' ', 9786, 9787, 9829, 9830, 9827, 9824, 8226, 9688, 9675, 9689, 9794, 9792, 9834, 9835, 9788, |
I hereby claim:
- I am CalmBit on github.
- I am calmbit (https://keybase.io/calmbit) on keybase.
- I have a public key whose fingerprint is D1FF 8251 A3D2 5F17 529E 103C 0346 B7C0 7B0E C975
To claim this, I am signing this object:
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; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace ConsoleApplication1 | |
{ | |
class BotBase | |
{ |
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
#include <iostream> | |
#include <random> | |
#include "room.h" | |
using namespace std; | |
int main() | |
{ | |
cout << "Room Generator V 0.1\n" << "Created By Ethan Brooks\n" << "For CMDROUGE.\n\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
class Klass | |
def initialize(str) | |
@str = str | |
end | |
def str | |
@str | |
end | |
end |