blob: dad9b97a785445e3ec2c9d86e2f443a0e9a756a0 (
plain) (
blame)
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
|
// TMW2 scripts.
// Authors:
// Pyndragon
// Jesusalva
// Description:
// Warp Crystal
- script Warp Crystal NPC_HIDDEN,{
close;
function Cooldown {
mesn;
mesc l("Successive warps cause time-space distortions and thus, are not allowed.");
mesc l("You can use it again in @@.", FuzzyTime(TELEPORTER_TIME));
getitem @itemid, 1;
close;
}
function ReturnItem {
getitem @itemid, 1;
end;
}
OnUse:
// Receives @dest$
if (TELEPORTER_TIME > gettimetick(2))
Cooldown();
if (BaseLevel < 20) {
dispbottom l("This is too powerful to you. Get level 20 before attempting to use.");
ReturnItem();
}
// TODO: Are you already at target point?
// It have at least 30% chance to break
// Chances begin at 100%, and lower in 0.01% each second
// It will never be below 30%, which happens after 7000 seconds
.@adj_breakrate=max(3000, 10000-(gettimetick(2)-TELEPORTER_TIME) );
//debugmes "Adjusted break ratio: %d", .@adj_breakrate;
if (rand(0,10000) > .@adj_breakrate)
getitem @itemid, 1;
else
getitem BrokenWarpCrystal, 1;
// Apply Cooldown, same variable as LoF Teleporter
TELEPORTER_TIME=gettimetick(2)+300;
// Save new location and warp you there
EnterTown(@dest$);
doevent "Emergency Exit::OnVisitLX";
end;
}
|