summaryrefslogtreecommitdiff
path: root/npc/003-2/hiddenwarp.txt
blob: 9fd868a3f02ff0352ed95182a2a73569df974294 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// TMW2 Script
// Author:
//    Crazyfefe
//    Jesusalva
// This warp is enabled after waiting for lua

003-2,28,41,0	script	#LeaveComplaints	NPC_HIDDEN,0,0,{
    end;

OnTouch:
    if ((BaseLevel >= 40 && getq(General_Narrator) >= 2) || is_gm())
        warp "003-2-1", 47, 34;
    else
        npctalk3 l("Complaints Depto. temporaly closed, come back later");
    end;
}