Ayuda con el Score en GM
#1

Hola!!!
Tengo el GM por default, que es el LVDM, pero estoy aprendiendo a modificarlo... XD
Me gustaria saber como tengo que hacer para que en el SCORE aparesca el numero de asesinatos de jugador, y no el dinero... es algo simple, y que muchos GM tienen, pero aun no lo encuentro....
Les agradeceria me ayudaran...

Si quieren entrar a mi server para chequearlo, esta en mi firma XD
Reply
#2

mira
elimina esto:
pawn Код:
forward MoneyGrubScoreUpdate()
SetTimer("MoneyGrubScoreUpdate", 1000, 1);
y esto tambien:
pawn Код:
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);
            }
        }
    }
}
luego en OnPlayerDeath:
pawn Код:
public OnPlayerDeath(playerid, killerid, reason)
{
  new score;
  score = GetPlayerScore(killerid);
  SetPlayerScore(killerid, score+1);
  return 1;
}
espero que te haya servido
Reply
#3

Perfect... is nice and tight!!!
Se ajusta a lo que pedi, gracias... justo estaba leyendo lo de OnPlayerDeath, pero a veses no funcaba cuando lo ponia... Gracias!!!
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)