Alguna Ayuda Con OnPlayerText
#1

Hola Amigos Del Samp Tengo Un Pequeсo problema Con El OnPlayerText e Tratado de buscar la forma para cuando un VIP o Un Admin Escriba En Su Nick Name Diga [Admin]Jhensel05 : Text
Pero Asta Ora Nada Ahora Lo que Necesito Que Diga Es [Policia]iMrJhensel05 :Text
o [Ladron]iMrJhensel05 : Text Ya Saben Solo quiero Que Identifique Que Es El Jugador

Quote:

public OnPlayerText(playerid, text[])
{
new pText[144];
format(pText, sizeof (pText), "(%d) %s", playerid, text);
SendPlayerMessageToAll(playerid, pText);
return 0; // ignore the default text and send the custom one
}

Reply
#2

Intenta con algo asн a ver.

Quote:

new pText[144];
if(IsPlayerAdmin(playerid))
{
format(pText, sizeof (pText), "[ADMIN] (%d) %s", playerid, text);
SendPlayerMessageToAll(playerid, pText);
return 1;
}
format(pText, sizeof (pText), "(%d) %s", playerid, text);
SendPlayerMessageToAll(playerid, pText);

Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)