The Division Easy Material Conversion

Simply go to the material you want to convert and hold PS4 = Triangle, X-Box = Y to convert materials. Keep holding to keep converting. If you run out it will simply keep going with an error message saying you have no more of that material to convert, so no need to worry about it going to something you don't want it too.
Version1.00
AuthorThe_Rabid_Taco
Publish DateThu, 7 Apr 2016 - 14:22
Last UpdateThu, 7 Apr 2016 - 14:22
Downloads395
RATE


1

0

Code: Select all
/*******************************************************************************
*                                                                              *
*  The Division Easy Material Conversion                                       *
*                                                                              *
*  Simply go to the material you want to convert and hold PS4 = Triangle,      *
*  X-Box = Y to convert materials.  Keep holding to keep converting.  If you   *
*  run out it will simply keep going with an error message saying you have no  *
*  more of that material to convert, so no need to worry about it going to     *
*  something you don't want it too.                                            *
*                                                                              *
*******************************************************************************/

 
main {
    if (get_val(17) == 100) {
        combo_run(CraftingConversion);
    }
}
 
combo CraftingConversion {
    set_val(19, 100);
    wait(750);
    set_val(18, 0);
    set_val(18, 100)
    wait(40);
    set_val(18, 0)
    wait(40);
    set_val(18, 0);
    wait(40)
}