GTA Közösség - A magyar GTA fórum
San Andreas Multiplayer (SA-MP) => SA-MP: Szerverfejlesztés => Segítségkérés => A témát indította: FastFurious - 2012. február 18. - 10:43:15
-
van 5000000$ es 5000000 score miert? :whistle:
-
Szia! lvdm módot használsz?
Írd be a keresõbe: SetTimer(\"MoneyGrubScoreUpdate\", 1000, 1);
És töröld ki!! ;)
-
nem lvdm et hasznalok hanem STUNT_MOD ot
-
Van benne valahol SetPlayerScore függvény?
Ha van, másold már be azokat a helyeket, ahol megtalálható! Köszi ;)
-
public MoneyGrubScoreUpdate()
{
new CashScore;
new name[MAX_PLAYER_NAME];
//new string[256];
for(new i=0; i<MAX_PLAYERS; i++)
{
if (IsPlayerConnected(i))
{
GetPlayerName(i, name, sizeof(name));
CashScore = GetPlayerMoney(i);
SetPlayerScore(i, CashScore);
if (CashScore > CashScoreOld)
{
CashScoreOld = CashScore;
//format(string, sizeof(string), \"$$$ %s is now in the lead $$$\", name);
//SendClientMessageToAll(COLOR_YELLOW, string);
}
}
}
}
ez kelle?
-
Írd be a keresõbe: SetTimer(\"MoneyGrubScoreUpdate\"
És töröld ki!! ;)