Scriptname MS11BradonCorpse
short Crime
short CurrentCrimeCount
begin OnActivate Player
if ( GetStage MS11 < 50 ) && ( IsActionRef Player == 1 )
Messagebox "Repeated tampering with Bradon's corpse is a crime and will alert the authorities."
set Crime to ( Crime + 1 )
endif
end
begin gamemode
if ( Crime >= CurrentCrimeCount ) && ( Crime >= 2 )
sendtrespassalarm player
player.modcrimegold 100
set Crime to CurrentCrimeCount
endif
end |