16.11.2010, 18:32
He made a comment in your code where an issue is, here:
It should be
Although the problem is caused by the fact your script does not contain main()
pawn Код:
SetPVarInt(killerid ,"killstreak", GetPVarInt(killerid, "var") + 1); //var should be killstreak, there is the error
pawn Код:
SetPVarInt(killerid ,"killstreak", GetPVarInt(killerid, "killstreak") + 1);
pawn Код:
main()
{
}