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
| # I wonder what this does... | |
| print "Howdy!" | |
| # This doesn't seem too bad :D Here is a bunch of random junk to test with. | |
| class Map(): | |
| def __init__(self): | |
| pass | |
| name = "Name" | |
| tile_size = (64,64) | |
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
| This is gist. | |
| There are many like it, but this one is mine. | |
| It is my life. | |
| I must master it as I must master my life. | |
| Without me gist is useless. | |
| Without gist, I am useless. | |
| Like the cotton candy that grows in my belly button. |
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
| ||=== Build: Release in Cataclysm (compiler: GNU GCC Compiler) ===| | |
| C:\Users\username\Desktop\Git\Cataclysm-DDA\src\item.cpp||In member function 'long int item::get_remaining_capacity_for_liquid(const item&) const':| | |
| C:\Users\username\Desktop\Git\Cataclysm-DDA\src\item.cpp|4310|error: 'L_ERR_NONE' was not declared in this scope| | |
| C:\Users\username\Desktop\Git\Cataclysm-DDA\src\item.cpp||In member function 'item::LIQUID_FILL_ERROR item::has_valid_capacity_for_liquid(const item&) const':| | |
| C:\Users\username\Desktop\Git\Cataclysm-DDA\src\item.cpp|4354|error: 'L_ERR_NOT_CONTAINER' was not declared in this scope| | |
| C:\Users\username\Desktop\Git\Cataclysm-DDA\src\item.cpp|4358|error: 'L_ERR_FULL' was not declared in this scope| | |
| C:\Users\username\Desktop\Git\Cataclysm-DDA\src\item.cpp|4362|error: 'L_ERR_NO_MIX' was not declared in this scope| | |
| C:\Users\username\Desktop\Git\Cataclysm-DDA\src\item.cpp|4367|error: 'L_ERR_NOT_CONTAINER' was not declared in this scope| | |
| C:\Users\username\Desktop\Git\Cataclysm-DDA\src\item.cpp| |
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
| ,{ | |
| "type" : "vehicle", | |
| "id" : "water_cart", | |
| "name" : "Water Cart", | |
| "blueprint" : "o", | |
| "parts" : [ | |
| {"x": 0, "y": 0, "part": "xlframe_vertical_2"}, | |
| {"x": 0, "y": 0, "part": "wheel_caster"}, | |
| {"x": 0, "y": 0, "part": "water_tank_little"}, | |
| {"x": 0, "y": 0, "part": "water_faucet"}, |
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
| class Character(object): | |
| def __init__(self): | |
| self.name = "none" | |
| self.race = "none" | |
| self.occ = "none" | |
| #This doesn't seem to work... refer to lower #-tags | |
| def fc_name(self, name="none"): | |
| if name == "none": | |
| self.name = raw_input("What is your name?\n\n>>: ") |
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
| #lottery | |
| from random import randint | |
| #I'm trying to come up with a simple/moddable random generator for categories that might be appended. | |
| #The numbers are the amount of arbitrary "lottery tickets" owned by said person/object. | |
| #I now need to create a system to draw the winning lottery ticket and determine the winner... | |
| #pretend this dictionary could be added to and drawn from again later like... lottery["Sam"] = 4 | |
| lottery = {"Bob":10, "Ted":5, "Mike":1} |
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
| NPC Generator | |
| Gender | |
| Male | |
| Female | |
| Race | |
| Races | |
| Sub-races | |
| Race Bonuses | |
| Class |
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
| from random import randint | |
| from random import choice | |
| #Die Roll | |
| def d(num, sides): | |
| result = 0 | |
| for x in range(num): | |
| result += randint(1, sides) | |
| return result |
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
| [ | |
| { | |
| "type" : "item_group", | |
| "id" : "workout_food", | |
| "items":[ | |
| ["protein_powder", 15], | |
| ["sports_drink", 20], | |
| ["water_clean", 90] | |
| ] | |
| },{ |
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
| New to the game of Don't Starve Together? Keep joining servers and no one is willing to help you? Not having much fun being a ghost on day one? This guide is for you! | |
| How to read this guide? Read this guide however you please! Be aware that this guide is intended to be helpful and not derogatory. Many of the things recommended are things you might have already known/done and if that is the case just skim it or skip it entirely. If you feel you are being criticized for your play style try to take the criticisms as constructive and have an open mind. | |
| CONSIDER PLAYING ALONE | |
| ------------------------------------- | |
| Host a game and set the number of players to 1. By playing alone you will be able to learn fun ways to die without the public humiliation of being dead on day one. | |
| CONSIDER PLAYING ENDLESS MODE | |
| -------------------------------------------------- |
OlderNewer