Castlevania; Symphony of the Night Fast Leveling

Head to the Dark Octopus's room (google its location). When you drop down into the Dark Octopus room, there is 2 small ledges by the upper screen where you drop in at. Stand on the right side ledge close to its edge. Youll need to have Power of Sire equipped in the 2nd hand slot and you need Duplicator equipped on an accessory slot. Approximately you need 120+ ATK power for tihs script to work. Take note of your exp needed to level. Press Square and let the script run for a min. Press Square again to disable it and now see if you were gaining any exp. If not then you are not powerful enough to use this script yet. I leveled to 99 over night. I uploaded a tutorial video on youtube. Copy and paste the title in search. Have fun!
Version1.0
AuthorTRU-ASSASSIN
Publish DateThu, 27 Jul 2017 - 21:04
Last UpdateThu, 27 Jul 2017 - 21:04
Downloads49
RATE


0

0

Release Notes: Tested on Playstation TV but will work on PS3 as well.
Code: Select all
// Castlevania SOTN fast leveling.
 
int TimeX=6000; //30000 Milliseconds = 30 seconds
int TimeY=30000; //30000 Milliseconds = 30 seconds
int runLoop;
 
main {
vm_tctrl(-8);
    if (event_press(PS4_UP)) {
        if (runLoop == TRUE) {
            runLoop = FALSE;
        } else if (runLoop == FALSE) {
            runLoop = TRUE;
        }
    }
 
    if (runLoop == TRUE) {
        combo_run(AutoSummonAttack);
    }
}
 
combo AutoSummonAttack{
    set_val(PS4_CIRCLE, 100);
    wait(1330);
    set_val(PS4_CROSS, 100);
    wait(275);
    set_val(PS4_DOWN, 100);
    wait(20);
    set_val(PS4_CROSS, 100);
    wait(25);
    set_val(PS4_DOWN, 100);
    wait(20);
    set_val(PS4_DOWN, 100);
    set_val(PS4_CROSS, 100);
    wait(200);
}