Advertisement
Guest User

Custom Crafting template

a guest
Jan 17th, 2016
693
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 2.59 KB | None | 0 0
  1.  
  2. ////////////////////////////
  3. /////////Components/////////
  4. ////////////////////////////
  5. ////    "Exile_Item_Rope"
  6. ////    "Exile_Magazine_Swing"
  7. ////    "Exile_Item_Axe"
  8. ////    "Exile_Item_DuctTape"
  9. ////    "Exile_Item_ExtensionCord"
  10. ////    "Exile_Item_FuelCanisterEmpty"
  11. ////    "Exile_Item_JunkMetal"
  12. ////    "Exile_Item_LightBulb"
  13. ////    "Exile_Item_MetalBoard"
  14. ////    "Exile_Item_MetalHedgehogKit"
  15. ////    "Exile_Item_SafeKit"
  16. ////    "Exile_Item_CodeLock"
  17. ////    "Exile_Item_Laptop"
  18. ////    "Exile_Item_BaseCameraKit"
  19. ////    "Exile_Item_CamoTentKit"
  20. ////    "Exile_Item_MetalPole"
  21. ////    "Exile_Item_MetalScrews"
  22. ////    "Exile_Item_MetalWire"
  23. ////    "Exile_Item_Cement"
  24. ////    "Exile_Item_Sand"
  25. ////    "Exile_Item_CarWheel"
  26. ///////////////////////////
  27. //////////TOOLS////////////
  28. ///////////////////////////
  29. ////    "Exile_Item_Matches",
  30. ////    "Exile_Item_CookingPot",
  31. ////    "Exile_Item_CanOpener",
  32. ////    "Exile_Item_Handsaw",
  33. ////    "Exile_Item_Pliers",
  34. ////    "Exile_Item_Grinder",
  35. ////    "Exile_Item_Foolbox",
  36. ////    "Exile_Item_CordlessScrewdriver",
  37. ////    "Exile_Item_FireExtinguisher",
  38. ////    "Exile_Item_Hammer",
  39. ////    "Exile_Item_OilCanister",
  40. ////    "Exile_Item_Screwdriver",
  41. ////    "Exile_Item_Shovel",
  42. ////    "Exile_Item_Wrench",
  43. ////    "Exile_Item_SleepingMat",
  44. ////    "Exile_Item_ToiletPaper",
  45. ////    "Exile_Item_ZipTie",
  46. ////    "Binocular",
  47. ////    "Rangefinder",
  48. ////    "Laserdesignator",
  49. ////    "Laserdesignator_02",
  50. ////    "Laserdesignator_03",
  51. ////    "NVGoggles",
  52. ////    "NVGoggles_INDEP",
  53. ////    "NVGoggles_OPFOR",
  54. ////    "ItemGPS",
  55. ////    "ItemMap",
  56. ////    "ItemCompass",
  57. ////    "ItemRadio",
  58. ////    "ItemWatch",
  59. ////    "Exile_Item_XM8"
  60.  
  61.  
  62.  
  63. /////BELOW IS A CRAFTING SAMPLE///////
  64.  
  65.  
  66.  
  67. class NightVision: Exile_AbstractCraftingRecipe
  68. {
  69.     name = "Nightvision";  //What i the name OF your crafting? USE the name ingame that you want
  70.     pictureItem = "NVGoggles"; //must be an item already IN game
  71.     requiresFire = 1;  //does it require a fire TO build? yes OR no
  72.     returnedItems[] =
  73.     {
  74.         {1, "NVGoggles"} // This IS what will be crafted (must be ingame item)
  75.     };
  76.     tools[] =  // This IS a tool you need TO perform the craft
  77.     {
  78.         {1, "Exile_Item_MetalWire"}, // 1 IS the quantity, item IS an ingame item
  79.         {1, "Exile_Item_Pliers"},  // 1 IS the quantity, Item IS an ingame item
  80.         {1, "Exile_Item_Grinder"} //This IS the LAST item so you need the commma (,)
  81.     };
  82.     components[] =//Items below are needed TO do the crafting
  83.     {
  84.         {1, "Exile_Item_MetalWire"},// 1 IS the quantity, Item IS an ingame item
  85.         {1, "Exile_Item_MetalBoard"},// 1 IS the quantity, Item IS an ingame item
  86.         {1, "Exile_Item_JunkMetal"}//This IS the LAST item so you need the commma (,)
  87.     };
  88. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement