SA-MP Forums Archive
Ayuda Comando /w (Whisper) - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Español/Spanish (https://sampforum.blast.hk/forumdisplay.php?fid=29)
+---- Thread: Ayuda Comando /w (Whisper) (/showthread.php?tid=592063)



Ayuda Comando /w (Whisper) - EloyGonzalez - 20.10.2015

Buenas tengo una duda, Como hago para enviar un whisper y que se muestre el whisper en caso de mandarme el whisper yo mismo, esto de manera privada entre el usuario y el administrador...

Uso Zcmd, y pues estuve probando pero yo mando el whisper pero nunca lo recibo yo mismo.


Код:
CMD:w(playerid, params[])
{
	if(IsPlayerConnected(playerid)) 
	{
		new wID, targetid, Message[128],playername[MAX_PLAYER_NAME],targetName[MAX_PLAYER_NAME],string[128],string2[128];
		if(sscanf(params, "us[60]", wID, Message)) return SendClientMessage(playerid, COLOR_ROJO, "Usa: /w [ID] [Texto]");
		if(wID == INVALID_PLAYER_ID) return SendClientMessage(playerid, COLOR_ROJO, "ID Invalida");
		GetPlayerName(playerid, playername, sizeof(playername));
		GetPlayerName(targetid, targetName,sizeof(targetName));
		format(string, sizeof(string), "Administraciуn: %s[%d] te whispea: %s", playername, playerid, Message);
		format(string2, sizeof(string2), "Administraciуn: %s le whispeas %s", targetName, Message);
		SendClientMessage(wID, COLOR_AMARILLO, string);
	}
	return 1;
}
Que me estб faltando?


Respuesta: Ayuda Comando /w (Whisper) - Ghost112397 - 20.10.2015

Код:
SendClientMessage(playerid, COLOR_AMARILLO, string2);