Como hacer los teleport en randon
#5

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);
}
Reply


Messages In This Thread
Como hacer los teleport en randon - by Zodiaco - 08.12.2014, 23:35
Respuesta: Como hacer los teleport en randon - by jotajeda - 08.12.2014, 23:57
Respuesta: Como hacer los teleport en randon - by Julian40MASTER - 10.12.2014, 01:58
Respuesta: Como hacer los teleport en randon - by jotajeda - 10.12.2014, 01:59
Respuesta: Como hacer los teleport en randon - by PolloLoko - 10.12.2014, 03:34

Forum Jump:


Users browsing this thread: 1 Guest(s)