-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
067151e
commit b4d6701
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
mc-nbt-edit 0.3 by sakisds <[email protected]> | ||
mc-nbt-edit 0.4 by sakisds <[email protected]> | ||
Uses the NBT library by Thomas Woolford <[email protected]> | ||
Based on the NBT specifications by Markus Persson | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/usr/bin/env python | ||
#mc-nbt-edit 0.3 by sakisds <[email protected]> | ||
#mc-nbt-edit 0.4 by sakisds <[email protected]> | ||
#Uses the NBT library by Thomas Woolford <[email protected]> | ||
#Based on the NBT specifications by Markus Persson | ||
|
||
|
@@ -8,7 +8,7 @@ | |
import sys, os, json | ||
|
||
def help(): #Prints help | ||
print "mc-nbt-edit 0.2 by sakisds <[email protected]>\n\nUsage: mc-nbt-edit file tag datatype value\n" | ||
print "mc-nbt-edit 0.4 by sakisds <[email protected]>\n\nUsage: mc-nbt-edit file tag datatype value\n" | ||
print "Possible datatypes: byte, int, float, long, string, short, double.\n Lists are not yet supported.\n\n\nOptions:" | ||
print "--help: Displays this message and then exit." | ||
print "--print: Prints tree inside the given NBT file and then exit." | ||
|