1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
//Assasin Cross Made by Evera/Lorri
valkyrie.gat,44,58,6 script Assassin Cross 725,{
if ((readparam(11)>=99) && (readparam(19)==12) && (readparam(55) >= 50)) goto Lnovice;
if ((readparam(19)==4001) && (readparam(55) >= 10)) goto Lhtheif;
if ((readparam(19)==4001) && (readparam(55) < 10)) goto LCem;
if ((readparam(19)==4007) && (readparam(55) >= 40)) goto Lhsin;
if ((readparam(19)==4007) && (readparam(55) < 40)) goto LCem;
if ((readparam(19)) && (readparam(19))) goto LCongrats;
if (readparam(19)==4013) goto Lcrazy;
if (readparam(12) != 0) goto Lskpt;
mes "[Assasin Cross]";
mes "Who are you?";
mes "Meet all the req. first.";
close;
Lnovice:
mes "[Assasin Cross]";
mes "Now, here's the deal. I change you into a High Novice.";
mes "You come back to become a High Theif, then become an Assassin Cross.";
mes "You wanna do it?";
menu "Yes",Lnovice2,"No",Lcancel;
Lnovice2:
mes "We shall start the ceremony....";
next;
jobchange 24;// Job: Job_Novice_High
resetlvl(1);
close;
Lhtheif:
mes "[Assasin Cross]";
mes "Wanna become a High Theif?";
menu "Yes",Lhtheif2,"No",Lcancel;
Lhtheif2:
mes "[Assasin Cross]";
mes "We shall start the ceremony....";
next;
jobchange 30;// Job: Job_Thief_High
close;
Lhsin:
mes "[Assasin Cross]";
mes "Ready to become a Assassin Cross?";
menu "Yes",Lhsin2,"No",Lcancel;
Lhsin2:
mes "[Assasin Cross]";
mes "We shall start the ceremony....";
jobchange 36;// Job: Job_Assassin_Cross
close;
Lcrazy:
mes "[Assassin Cross]";
mes "We shall start the ceremony....";
next;
mes "[Assassin Cross]";
mes "You've already gone to the next level";
close;
Lskpt:
mes "[Assasin Cross]";
mes "Use your skillpoints first";
close;
LCem:
mes "We shall start the ceremony....";
next;
mes "[Assassin Cross]";
mes "You're not ready to go to the next level";
close;
LCongrats:
mes "Congratulations on your victory.";
mes "May you and others have honor and glory!";
close;
Lcancel:
mes "Bye";
close;
}
|