09.08.2014, 02:59
No soy bueno explicando amigo. Pero como veras el codigo es de lo mas simple
Aqui imagenes que funciona
[IMG][/IMG]
[IMG][/IMG]
Codigo
Aqui imagenes que funciona
[IMG][/IMG]
[IMG][/IMG]
Codigo
PHP код:
#include <a_samp>
#include <zcmd>
#include <sscanf2>
#define loghablan "Logs/Hablan.txt"
CMD:hablar(playerid, params[])
{
new texto[128];
if(sscanf(params, "s[128]", texto)) return SendClientMessage(playerid, -1, "USA:{FF0000} /hablar (texto)");
new string[150], nombre[MAX_PLAYER_NAME];
GetPlayerName(playerid, nombre, sizeof(nombre));
format(string, sizeof(string), "%s dice: %s", nombre, texto);
LogTest(string);
return 1;
}
forward LogTest(string[]);
public LogTest(string[])
{
new entry[256];
format(entry, sizeof(entry), "%s\r\n",string);
new File:hFile;
hFile = fopen(loghablan, io_append);
fwrite(hFile, entry);
fclose(hFile);
}