SA-MP Forums Archive
need help - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: need help (/showthread.php?tid=128857)



need help - Evo_ - 20.02.2010

Can anyone tell me how to remove the score system in LSTWSE, So that...1 kill = 1 score point.


Re: need help - Evo_ - 20.02.2010

anyone?


Re: need help - [SU]CHRiS - 20.02.2010

i was very mean but this is whats your looking for.

Код:
public OnPlayerDeath(playerid, killerid, reason)
{  

	SetPlayerScore(killerid,GetPlayerScore(killerid)+1);
	SetPlayerScore(playerid,GetPlayerScore(playerid)-1);
	
	return 1;
}