Skip to content

Commit

Permalink
Create items - in progess
Browse files Browse the repository at this point in the history
  • Loading branch information
leighghunt committed May 20, 2016
1 parent 14d2c6e commit 16d170c
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 3 deletions.
4 changes: 2 additions & 2 deletions step1-mod-class.md
Expand Up @@ -78,5 +78,5 @@ public class Reference {
## Run the mod
- Click the *Mods* button in Minecraft - you should see one listed with the name we gave ours.

### Let's start Modding!
- Now go to step 1 and [create our mod class](step1-mod-class.md).
### Custom Items
- Now lets [create some custom items](step2-custom-tems.md).
20 changes: 19 additions & 1 deletion step2-custom-items.md
@@ -1,7 +1,25 @@
# Creating Items
- You're ready to start creating a mod - we're going to follow [MrCrayfish's](https://twitter.com/MrCraayfish) Minecraft 1.8 Modding tutorial - [Episode 3 - Custom Items!](https://www.youtube.com/watch?v=2_qM-Z0IQ4k&index=3&list=PLy11IosblXIFDFAT3wz_5Nve05wIVKFSJ).
- Lets create some custom items in Minecraft - we're going to follow [MrCrayfish's](https://twitter.com/MrCraayfish) Minecraft 1.8 Modding tutorial - [Episode 3 - Custom Items](https://www.youtube.com/watch?v=2_qM-Z0IQ4k&index=3&list=PLy11IosblXIFDFAT3wz_5Nve05wIVKFSJ).

- We should have already [set up our development environment](dev-environment-setup.md).
- We should have [created our mod class](step1-mod-class.md)

- Create a new package
- ````src/main/java/nz.cdr.minecrafttutorial```` - Right Click and New -> Package.
- We'll use the name ````nz.cdr.minecrafttutorial```````.init```, or whatever you chose for the previous package name, with ````.init```` after it.
- Click **Finish**.
- Create a new class
- ````src/main/java/nz.cdr.minecrafttutorial.init```` - Right Click and New -> Class.
- Give it the name ````TutorialItems````.
- Click **Finish**.

- TO DESCRIBE:
- TutorialItems class
- Proxy package and classes
- Describe ```extends``` and ```@Override```.
- Client and Server proxies are to do different stuff on the client and the server.

- If it comes up with an *Organize Imports* dialogue when you press ````[Ctrl-Shift-O]````, choose ````net.minecraft.item.item````.


## Run the mod

0 comments on commit 16d170c

Please sign in to comment.