26.07.2010, 15:29
Boas pessoal,
hoje fiz um comando /noticias mas queria que tipo um player /noticias e enquanto a noticia dura, nгo se possa fazer comandos que utilizem o radio do tipo:/noticias /entrevistar.
Tкm aqui o comando /noticias:
Alguem sabe como o fazer?
hoje fiz um comando /noticias mas queria que tipo um player /noticias e enquanto a noticia dura, nгo se possa fazer comandos que utilizem o radio do tipo:/noticias /entrevistar.
Tкm aqui o comando /noticias:
pawn Код:
if(strcmp(cmd, "/noticias", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if(PlayerInfo[playerid][pFaction] != 255 && DynamicFactions[PlayerInfo[playerid][pFaction]][fType] == 4)
{
if(NewOnDuty[playerid] == 0)
{
new length = strlen(cmdtext);
while ((idx < length) && (cmdtext[idx] <= ' '))
{
idx++;
}
new offset = idx;
new result[64];
while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
{
result[idx - offset] = cmdtext[idx];
idx++;
}
result[idx - offset] = EOS;
SendClientMessageToAll(COLOR_LIGHTYELLOW2,"[INFO:] Para ouvires as noticias ou comunicados tens de ligar o radio.");
SendClientMessageToAll(COLOR_LIGHTGREEN, "______________________[TRV-News]________________________");
SendClientMessageToAll(COLOR_LIGHTGREEN, " ***Jingle da TRV-News***");
NewOnDuty[playerid] = 1;
}
else
{
new length = strlen(cmdtext);
while ((idx < length) && (cmdtext[idx] <= ' '))
{
idx++;
}
new offset = idx;
new result[64];
while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
{
result[idx - offset] = cmdtext[idx];
idx++;
}
result[idx - offset] = EOS;
SendClientMessageToAll(COLOR_LIGHTGREEN, " ***Jingle da TRV-News***");
SendClientMessageToAll(COLOR_LIGHTGREEN, "_________________________________________________________");
NewOnDuty[playerid] = 0;
}
}
}
return 1;
}