summaryrefslogblamecommitdiff
path: root/npc/081-2/logic.txt
blob: 2eb77e3b9efcea0d404cb14c5e773b3ba46f0126 (plain) (tree)























                                                               

                                                                        



        
// TMW Script.
// Author:
//    Jesusalva
// Notes:
//    Christmas 2021 - Northen Lights Dungeon

081-2,90,20,0	script	#0812Nexit	NPC_HIDDEN,0,0,{
    end;
OnTouch:
    .@id = X21ID();

    /* We need to determine if instance exists and is needed */
    .@t = X21TYPE();
	.@mapn$="0813@"+X21ID2();
    .@inst = instance_create("Northen Lights", .@id, .@t);
    // Instance must be created
    if (.@inst >= 0) {
        // We... Could use base name, actually, but whatever
        instance_attachmap("081-3", .@inst, false, .@mapn$);
		instance_set_timeout(1800, 1800, .@inst);
		instance_init(.@inst);
    }

    warp .@mapn$, 44, 49;
    // FIXME: Cleanup if inst returns -4
    //doevent instance_npcname("Pentagram#Xmas21A", .@inst)+"::OnClean";
    end;
}