blob: 9f48bc3be190039839a83630868a338a7bd3b08c (
plain) (
tree)
|
|
// TMW2/LoF Script.
// Author:
// Jesusalva
// Notes:
// Based on BenB idea.
017-3,80,39,0 script Vault NPC_NO_SPRITE,{
mesn;
mesq l("There's a shiny safe here. How much money is inside? Nobody is looking at you, great!");
// 2*3 = 6 possibilities, 5 attempts
if (LockPicking(2, 3)) {
Zeny=Zeny+$VAULT_01738039;
$VAULT_01738039=40;
mesn;
mesq l("Booty!");
} else {
mesn;
mesq l("Arrested!");
.@inch=(Zeny/100);
Zeny-=.@inch;
$VAULT_01738039+=.@inch;
atcommand("@jailfor 5mn "+strcharinfo(0));
}
close;
OnInit:
.distance=3;
end;
OnClock0201:
OnClock1418:
$VAULT_01738039+=rand2(5,25);
end;
}
|