blob: 23baed06a3a5141a7d4b713795da4b73a3998508 (
plain) (
tree)
|
|
// TMW 2 Script
// Author:
// Jesusalva
// Micksha
// Description:
// Controls jails
// Controls lockpicks
042-3,0,0,0 script #KSlimeSpawn NPC_HIDDEN,{
end;
OnKillSlime:
if (@lockpicks)
end;
if (rand2(10000) > 1000)
end;
@lockpicks=true;
getitem Lockpicks, 1;
getitem TreasureKey, 1;
end;
}
|