[Pedido] Carregar armas da org por um arquivo
#2

Use a funзгo Fread.

Код:
// Open "file.txt" in "read only" mode
new File:handle = fopen("file.txt", io_read),
 
	// Initialize "buf"
	buf[128];
 
// Check, if the file is opened
if(handle)
{
	// Success
 
	// Read the whole file
	while(fread(handle, buf)) print(buf);
 
	// Close the file
	fclose(handle);
}
else
{
	// Error
	print("The file \"file.txt\" does not exists, or can't be opened.");
Reply


Messages In This Thread
Carregar armas da org por um arquivo - by lKiller - 07.01.2016, 00:52
Re: Carregar armas da org por um arquivo - by Monotox - 07.01.2016, 10:04
Re: Carregar armas da org por um arquivo - by lKiller - 07.01.2016, 12:09
Re: Carregar armas da org por um arquivo - by lKiller - 08.01.2016, 03:54
Re: Carregar armas da org por um arquivo - by GabrielCOP - 08.01.2016, 23:48

Forum Jump:


Users browsing this thread: 1 Guest(s)