summaryrefslogblamecommitdiff
path: root/npc/025-2/main.txt
blob: 2450eb867690108a453cf782c215c924f8708a57 (plain) (tree)






























                                                                    
// TMW-2 Script.
// Author:
//    Jesusalva
// Notes:
//    Fortress Island South (Lv 70~150 Area)

025-2	mapflag	mask	3

025-2,97,122,0	script	Airship	NPC_AIRSHIP,{
	mesc l(".:: Fortress Island ::."), 1;
	mes "";
	mesc l("Do you want to return to Land Of Fire Village?"), 1;
	next;
	if (askyesno() == ASK_YES) {
        specialeffect FX_CIRCLE, SELF, getcharid(3);
		sleep2(5000);
	    removespecialeffect(FX_CIRCLE, SELF, getcharid(3));
		if (ispcdead()) end;
		warp "017-10", 64, 25;
		closeclientdialog;
	}
	close;

OnInit:
    .sex = G_OTHER;
    .distance = 8;
	end;

}