[SOLVED, Thanks guys] TextDraw / CheckPoint Indicator ??
#7

Everyone,

Quote:
pawn Код:
new Currentcp[MAX_PLAYERS] = 0;
new string[128];
OnPlayerEnterRaceCheckpoint(playerid)
{
    Currentcp[playerid] ++;
    format(string, sizeof(string), "%d/11", Currentcp[playerid]);
    TextDrawSetString(textdraw, string);
    return 1;
}
-->
pawn Код:
new string[128];
new Currentcp[MAX_PLAYERS];
public OnPlayerEnterRaceCheckpoint(playerid)
{
    Currentcp[playerid]++>11; //But let him step up 11
    format(string, sizeof(string), "%d/11", Currentcp[playerid]);
    TextDrawSetString(textdraw, string);
    return 1;
}
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 2 Guest(s)