Code SevenSingStaticEventPeriodSpawn

Saint

Heir
Customer
Code:
# When changing the period and the owner of the Seal, the spawn and the type of mobs change (Off-like).
# To always spawn only mobs with a drop of stones - SevenSingStaticEventPeriodSpawn = True
SevenSingStaticEventPeriodSpawn = false

When set to true, prevents Lilith/Anakim from spawning even if all SSQ conditions are met.

Servers code:
Current with SevenSingStaticEventPeriodSpawn = true
Code:
case 3: // Seal Validation Period
    if (Config.ALT_SEVEN_SING_STATIC_EVENT_PERIOD_SPAWN) {
        SpawnManager.this.spawn(SpawnManager.cB); // [ssq_event] - ALWAYS spawns
        return; // EXITS HERE - never reaches seal-specific spawns!
    }
    // This code NEVER executes:
    switch (SevenSigns.getInstance().getSealOwner(1)) {
        case 2: // Dawn controls Seal of Avarice
            SpawnManager.this.spawn(SpawnManager.cE); // [ssq_seal1_dawn] - Lilith
            break;
    }

I'm unable to currently post ticket on redmine, hence posting in the thread.
 
after some more research on your matter:

Untitled.webp

as we see here, (inside spawnlist files) Lilith/Anakim are called to spawn according to the specific event being executed.

but if enabled: ALT_SEVEN_SING_STATIC_EVENT_PERIOD_SPAWN, calls this spawn(which is the period of competition{midweek} spawnlist) -> event_name="[ssq_event]"
you can easily solve this just by changing the event_name for these 2 raid bosses spawn from ssq_seal1_.... to ssq_event
 
Setting it to [ssq_event] will skip seal ownership requirements, good workaround but a tradeoff at the same time.
 
after some more research on your matter:

View attachment 6761

as we see here, (inside spawnlist files) Lilith/Anakim are called to spawn according to the specific event being executed.

but if enabled: ALT_SEVEN_SING_STATIC_EVENT_PERIOD_SPAWN, calls this spawn(which is the period of competition{midweek} spawnlist) -> event_name="[ssq_event]"
you can easily solve this just by changing the event_name for these 2 raid bosses spawn from ssq_seal1_.... to ssq_event
thank you very much for the tutorial
 
Back
Top