SA-MP Forums Archive
Killfeed 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)
+--- Thread: Killfeed help! (/showthread.php?tid=409024)



Killfeed help! - Kudoz - 20.01.2013

alright, so I have this Clear Killfeed script in the gamemode.

Код:
 stock ClearKillFeed() {
        for (new i; i != 5; ++i) {
        SendDeathMessage(MAX_PLAYERS, MAX_PLAYERS, 202);
        SendClientMessageToAll(playerid, COLOR_LIGHTRED, ".: {B4B5B7}An {FF6347}[{B4B5B7}Admin{FF6347}] {B4B5B7}has cleared the Killfeed {FF6347}:.");
    }
}
-thanks to Littlehelper btw
anyways, how can I use it? I mean, with a cmd or something? I've used it before but I forgot how lol..


Re: Killfeed help! - B-Matt - 20.01.2013

pawn Код:
CMD:...(playerid, params[])
{
    ClearKillFeed();
    return 1;
}
Like this?


Re: Killfeed help! - Kudoz - 20.01.2013

yea thanks forgot it lol