Advertisement
Guest User

Examples

a guest
Dec 2nd, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. EXAMPLE OF EVENT HANDLING
  2.  
  3. Event A //When block rightclicked
  4. condition 1 //if block at i, j+1, k is dirt
  5. effect a //add potion effect (potion: speed, duration: 200, level: 1)
  6.  
  7. condition 2 //if...
  8. effect b
  9. condition 3 //else...
  10. effect c
  11.  
  12. condition 4 //if...
  13. condition 5 //if...
  14. effect d
  15.  
  16. Event B //When...
  17.  
  18. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  19. EXAMPLE OF BLOCK DROP HANDLING
  20. (if block doesn't drop itself)
  21. Drops itself when mined with silk touch? (Y/N)
  22. DROPS | MIN. AMOUNT | MAX. AMOUNT | CHANCE |
  23. stick | 1 | 2 | 1 | //Block always drops 1 or 2 sticks (equally probable)
  24. diamond | 2 | 4 | 0.02 | //Block has 2% chance of dropping 2, 3 or 4 diam (equally probable)
  25. dirt | 1 | 1 | 1 | //Block always drops 1 block of dirt
  26. dirt | 2 | 2 | 0.35 | //but has 35% chance of dropping 2 more blocks of dirt.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement