18 lines
447 B
Plaintext
18 lines
447 B
Plaintext
/////////////////////////////////////////////////
|
|
// Slaver Death
|
|
/////////////////////////////////////////////////
|
|
void main()
|
|
{
|
|
object oMe=OBJECT_SELF;
|
|
string sRes=GetResRef(oMe);
|
|
object oMod=GetModule();
|
|
int nP=GetLocalInt(oMod,"nSlaverPower");
|
|
int nV=1;
|
|
if (sRes=="slvg4") nV=2;
|
|
else if (sRes=="slvg5") nV=5;
|
|
nP=nP-nV;
|
|
if (nP<1) nP=0;
|
|
SetLocalInt(oMod,"nSlaverPower",nP);
|
|
ExecuteScript("rts_mon_death",oMe);
|
|
}
|