Crashdetect
#6

Replace:
pawn Код:
if(killerid != 255)
to:
pawn Код:
if(killerid != INVALID_PLAYER_ID)
and
pawn Код:
if(!IsACop(killerid))
{
    WantedLevel[killerid] += 6;
    SetPlayerCriminal(killerid,255, "Prvostepeno Ubistvo");
}
to:
pawn Код:
if(killerid != INVALID_PLAYER_ID && !IsACop(killerid))
{
    WantedLevel[killerid] += 6;
    SetPlayerCriminal(killerid,255, "Prvostepeno Ubistvo");
}
Reply


Messages In This Thread
Crashdetect - by DusanInfinity - 06.06.2015, 09:04
Re: Crashdetect - by Konstantinos - 06.06.2015, 09:30
Re: Crashdetect - by DusanInfinity - 06.06.2015, 10:56
Re: Crashdetect - by Konstantinos - 06.06.2015, 11:02
Re: Crashdetect - by DusanInfinity - 06.06.2015, 14:40
Re: Crashdetect - by Konstantinos - 06.06.2015, 14:47
Re: Crashdetect - by DusanInfinity - 06.06.2015, 14:55
Re: Crashdetect - by DusanInfinity - 07.06.2015, 13:19
Re: Crashdetect - by Konstantinos - 07.06.2015, 13:22
Re: Crashdetect - by DusanInfinity - 07.06.2015, 15:17

Forum Jump:


Users browsing this thread: 3 Guest(s)