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
|
-|script|summon-tyrant|32767
{
end;
OnCast:
if(call("magic_checks")) end;
if ($DOOMSDAY_SUMMON < 2) end;
if (getmapflag(getmap(), MF_TOWN)) end;
if (Sp < 100) end;
if (getskilllv(SKILL_MAGIC) < .level) end;
if (countitem("LargeManaElixir") < 1) end;
if (@dd4cooldown > gettimetick(2)) goto L_Cooldown;
delitem "LargeManaElixir", 1;
set @_M_BLOCK, 1; // block casting, until the timer clears it
addtimer 15000, "Magic Timer::OnClear"; // set the new debuff
callfunc "adjust_spellpower";
set Sp, Sp - 100;
misceffect FX_MAGIC_MAGGOT_CAST, strcharinfo(0);
callfunc "magic_exp";
set .@puppet$, "#"+strnpcinfo(0)+"#"+BL_ID;
set .@puppet, puppet(getmap(), POS_X, POS_Y, .@puppet$, 127);
if (.@puppet < 1) end;
set .master, BL_ID, .@puppet;
set .lifetime, (@spellpower*9)+150000, .@puppet;
set @dd4cooldown, gettimetick(2)+160; // This is measured in seconds
addnpctimer 10000, .@puppet$+"::OnSummon";
addnpctimer 11000, .@puppet$+"::OnDestroy";
// Causes caster to heal (I thought in converting MP to HP but meh)
heal 30000, 0;
end;
OnSummon:
if (!(isloggedin(.master))) destroy;
if(get(Hp, .master) < 1) destroy; // destroy if master is missing
if(getmap(.master) != strnpcinfo(3)) destroy; // destroy if master left the map
specialeffect FX_MAGIC_MAGGOT_SPAWN;
set .@x, getnpcx();
set .@y, getnpcy();
set .@map$, strnpcinfo(3);
callsub S_SummonAll;
end;
OnDestroy:
destroy;
S_SummonAll:
summon .@map$, rand(.@x-2,.@x+2), rand(.@y-2,.@y+2), .master, 1150, 2, .lifetime;
destroy;
L_Cooldown:
message strcharinfo(0), "This skill is in forced cooldown; Please wait your first summon to expire.";
end;
OnInit:
set .school, SKILL_MAGIC_ASTRAL;
set .invocation$, chr(MAGIC_SYMBOL) + "manatez"; // used in npcs that refer to this spell
void call("magic_register", "OnCast");
set .level, 1;
set .exp_gain, 1;
end;
}
|