Diablo 3 - Kanai's Cube Reforge To Primal Script

DIABLO 3 Reforge Script Developed this script for using Kanai's Cube to reforge items to get primal versions. This is geared towards the console version (non-season) as you can dupe crafting items. To use, go to Kanai's Cube to reforge and item. Place the item you would like to reforge. Hit the left stick to start the script that is timed to hit A to reforge and then delayed to hit A again once the reforged item is shown. I would run this until I see the Red Primal outline on the reforged item then hit the left stick again to stop the script. I was able to reforge all items to primal without smashing the A button a thousand times. GODDARD
Version1.0
AuthorGODDARD
Publish DateThu, 1 Aug 2019 - 23:10
Last UpdateThu, 1 Aug 2019 - 23:10
Downloads104
RATE


0

0

Code: Select all
 
// DIABLO 3 Reforge Script
// Developed this script for using Kanai's Cube to reforge items to get primal versions.
// This is geared towards the console version as you can dupe crafting items.
 
// To use, go to Kanai's Cube to reforge and item. Place the item you would like to reforge.
// Hit the left stick to start the script that is timed to hit A to reforge and then delayed to hit A again once the reforged item is shown.
// I would run this until I see the Red Primal outline on the reforged item then hit the left stick again to stop the script.
// I was able to reforge all items to primal without smashing the A button a thousand times. 
 
// GODDARD
 
 
int wt=25000;
int shwt=10000;
int loop;
 
main {
 
    if (event_press(XB1_LS)) {loop=!loop;} // Click Left Stick to enable/disable this combo
    if (loop) {combo_run(forge);}
    if (!loop) {combo_stop(forge);}
}
 
combo forge {
 
    block_rumble (); //         If you have your controller in, this will stop it from shaking all over the place.
    set_val(XB1_A, 100);
    wait(160);
    set_val(XB1_A, 0);
    wait(390);
    set_val(XB1_A, 100);
    wait(130);
    set_val(XB1_A, 0);
    wait(3360);
    set_val(XB1_A, 100);
    wait(140);
    set_val(XB1_A, 0);
    wait(140)
 
}