SA-MP Forums Archive
change from money to kills - 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: change from money to kills (/showthread.php?tid=131443)



change from money to kills - 02manchestera - 03.03.2010

hi i was wondering if it is possible to change the score from money to kills.

Код:
public ScoreUpdate() {
	foreachEx(i) {
		SetPlayerScore(i,GetPlayerMoney(i));
	}
	return 1;
}



Re: change from money to kills - 02manchestera - 04.03.2010

bump


Re: change from money to kills - Jefff - 04.03.2010

Код:
public ScoreUpdate() {
	foreachEx(i) {
		SetPlayerScore(i, ArrayKills[i]);
	}
	return 1;
}