Almacenar informaciуn en un archivo .txt
#3

No soy bueno explicando amigo. Pero como veras el codigo es de lo mas simple

Aqui imagenes que funciona

[IMG][/IMG]

[IMG][/IMG]

Codigo

PHP код:
#include <a_samp>
#include <zcmd>
#include <sscanf2>
#define loghablan              "Logs/Hablan.txt"
CMD:hablar(playeridparams[])
{
    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(playeridnombresizeof(nombre));
    
format(stringsizeof(string), "%s dice: %s"nombretexto);
    
LogTest(string);
    return 
1;
}
forward LogTest(string[]);
public 
LogTest(string[])
{
   new 
entry[256];
   
format(entrysizeof(entry), "%s\r\n",string);
   new 
File:hFile;
   
hFile fopen(loghablanio_append);
   
fwrite(hFileentry);
   
fclose(hFile);

Reply


Messages In This Thread
Almacenar informaciуn en un archivo .txt - by xTexTx - 09.08.2014, 02:02
Re: Almacenar informaciуn en un archivo .txt - by admantis - 09.08.2014, 02:55
Respuesta: Almacenar informaciуn en un archivo .txt - by Alvaro89 - 09.08.2014, 02:59
Respuesta: Almacenar informaciуn en un archivo .txt - by Swedky - 09.08.2014, 04:03
Respuesta: Almacenar informaciуn en un archivo .txt - by DesingMyCry - 09.08.2014, 05:45
Re: Almacenar informaciуn en un archivo .txt - by SickAttack - 09.08.2014, 06:12

Forum Jump:


Users browsing this thread: 1 Guest(s)