- Joined
 - Jan 7, 2011
 
- Location
 - The 7th Circle of Heaven
 
Class / Profession based recipe control.
 
This will allow Smiths to create ALL diamond armor but restrict others from doing so. It won't be a big change to what we have now - but we'll be able to have control of creating items / recipes now.
 
	
	
	
		
			
			This will allow Smiths to create ALL diamond armor but restrict others from doing so. It won't be a big change to what we have now - but we'll be able to have control of creating items / recipes now.
		Code:
	
	default:
  level: 1
  items:
    - '*'
example2:
  level: 1
  denied-items: [ 4 ]
swords:
  level: 1
  items:
    - 267
    - 268
    - 272
    - 276
    - 283
axes:
  level: 1
  items:
    - 258
    - 271
    - 275
    - 279
    - 286
spades:
  level: 1
  items:
    - 256
    - 269
    - 273
    - 277
    - 284
hoes:
  level: 1
  items:
    - 290
    - 291
    - 292
    - 293
    - 294
picks:
  level: 1
  items:
    - 257
    - 270
    - 274
    - 278
    - 285
leather:
  level: 1
  items: [ 298, 299, 300, 301 ]
chain:
  level: 1
  items: [ 302, 303, 304, 305 ]
iron:
  level: 1
  items: [ 306, 307, 308, 309 ]
diamond:
  level: 1
  items: [ 310, 311, 312, 313 ]
gold:
  level:
  items: [ 314, 315, 316, 317 ]
	
				

