14.07.2012, 01:58
Hola a todos!
Tengo 3 teams VIP, ADMIN, NORMAL
y quiero que al hablar me diga por ejemplo
Si soy VIP:
CeKiT[VIP]: Hablando por el chat
SI soy Admin:
CeKIT[Admin]: Hablando por el Chat
Si soy Normal:
CeKiT[Normal]:
Es facil lo debe ser pero no se me ocurre como debo editar esto?
Muchas Gracias!
Tengo 3 teams VIP, ADMIN, NORMAL
y quiero que al hablar me diga por ejemplo
Si soy VIP:
CeKiT[VIP]: Hablando por el chat
SI soy Admin:
CeKIT[Admin]: Hablando por el Chat
Si soy Normal:
CeKiT[Normal]:
Es facil lo debe ser pero no se me ocurre como debo editar esto?
Код:
public OnPlayerText(playerid, text[]) { new textv2[128], name[MAX_PLAYER_NAME]; GetPlayerName(playerid, name, sizeof (name)); format(textv2, sizeof (textv2), "%d >> %s: %s", playerid, name, text); SendPlayerMessageToAll(playerid, textv2); return 0; // ignore the default text and send the custom one }