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
71
72
73
74
75
76
77
78
|
// Evol Script
// Authors: Gumi, Jesusalva
// areatimer("<map>", <x1>, <y1>, <x2>, <y2>, <tick>, "<npc>::<event>")
function script areatimer {
.@c = getunits(BL_PC, .@players, false, getarg(0), getarg(1), getarg(2), getarg(3), getarg(4));
for (.@i = 0; .@i < .@c; .@i++) {
addtimer(getarg(5), getarg(6), .@players[.@i]);
}
return .@i;
}
// areadeltimer("<map>", <x1>, <y1>, <x2>, <y2>, "<npc>::<event>")
function script areadeltimer {
.@c = getunits(BL_PC, .@players, false, getarg(0), getarg(1), getarg(2), getarg(3), getarg(4));
for (.@i = 0; .@i < .@c; .@i++) {
deltimer(getarg(5), .@players[.@i]);
}
return .@i;
}
// areatimer2("<map>", <x1>, <y1>, <x2>, <y2>, <tick>, "<npc>::<event>")
function script areatimer2 {
.@c = getunits(BL_PC, .@players, false, getarg(0), getarg(1), getarg(2), getarg(3), getarg(4));
for (.@i = 0; .@i < .@c; .@i++) {
deltimer(getarg(6), .@players[.@i]);
addtimer(getarg(5), getarg(6), .@players[.@i]);
}
return .@i;
}
// addtimer2(<tick>, "<npc>::<event>")
function script addtimer2 {
deltimer(getarg(1));
addtimer(getarg(0), getarg(1));
return;
}
// maptimer("<map>", <tick>, "<npc>::<event>")
function script maptimer {
.@c = getunits(BL_PC, .@players, false, getarg(0));
for (.@i = 0; .@i < .@c; .@i++) {
addtimer(getarg(1), getarg(2), .@players[.@i]);
}
return .@i;
}
// Same as maptimer() but deletes any previously running timer
// maptimer2("<map>", <tick>, "<npc>::<event>")
function script maptimer2 {
.@c = getunits(BL_PC, .@players, false, getarg(0));
for (.@i = 0; .@i < .@c; .@i++) {
deltimer(getarg(2), .@players[.@i]);
addtimer(getarg(1), getarg(2), .@players[.@i]);
}
return .@i;
}
// mapdeltimer("<map>", "<npc>::<event>")
function script mapdeltimer {
.@c = getunits(BL_PC, .@players, false, getarg(0));
for (.@i = 0; .@i < .@c; .@i++) {
deltimer(getarg(1), .@players[.@i]);
}
return .@i;
}
// partytimer("<map>", <tick>, "<npc>::<event>", partyid)
function script partytimer {
.@c = getunits(BL_PC, .@players, false, getarg(0));
for (.@i = 0; .@i < .@c; .@i++) {
if (getcharid(2, strcharinfo(0,"",.@players[.@i]) ) == getarg(3))
addtimer(getarg(1), getarg(2), .@players[.@i]);
}
return .@i;
}
|