Seria asн Eginaxtamente, solo tendrias que crear tus 3 textos y definirlos.
pawn Код:
if (strcmp("Comando", cmdtext, true, 10) == 0)
{
Mensaje(playerid,"Comando");//Se envia el comando segun tu quieras
return 1;
}
//Referencia..
forward Mensaje(playerid,command[]);public Mensaje(playerid,command[])
{
format(string2,sizeof(string2),"%s fue a %s",PlayerName(playerid),command);//Mostramos Name y Comando/Texto definido en el CMD
if (textos==0) {TextDrawSetString(Texto1,string2);TextDrawShowForAll(Texto1);
SetTimerEx("Hide", 5000, 0,"d",playerid);
}
else if (textos2==0)
{
TextDrawSetString(Texto2,string2);TextDrawShowForAll(Texto2);
SetTimerEx("Hide", 5000, 0,"d",playerid);
}
else if (textos3==0)
{
TextDrawSetString(Texto3,string2);TextDrawShowForAll(Texto3);
SetTimerEx("Hide", 5000, 0,"d",playerid);
}
return 1;
}
public Hide(playerid)
{
TextDrawHideForAll(Texto1);TextDrawHideForAll(Texto2);TextDrawHideForAll(Texto3);
}