20.10.2015, 01:25
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.
Que me estб faltando?
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; }