07.04.2011, 19:27
pawn Код:
new
deathmsgs[][] = {
{"%s has fucked up %s with a %s"},
{"%s has killed %s with a %s"}
};
// OnPlayerDeath
new
rand = random(sizeof(deathmsgs)),
msg[128];
format(msg, sizeof(msg), deathmsgs[rand], killerid, playerid, reason);