28.07.2017, 10:17
(
Последний раз редактировалось HoussamMaroc; 28.07.2017 в 12:16.
)
ok done your fs bellow
PHP код:
#include <a_samp>
#include <core>
#include <float>
public OnFilterScriptInit()
{
LoadObjectsFromFile("/Objects/Objects.txt");
return 1;
}
public OnFilterScriptExit()
{
return 1;
}
stock LoadObjectsFromFile(const filename[])
{
new File:file_ptr;
new line[256];
new var_from_line[64];
new Object;
new Float:SpawnX;
new Float:SpawnY;
new Float:SpawnZ;
new Float:SpawnRX;
new index;
new Objects_loaded;
file_ptr = fopen(filename,filemode:io_read);
if(!file_ptr) return 0;
Objects_loaded = 0;
while(fread(file_ptr,line,256) > 0)
{
index = 0;
index = token_by_delim(line,var_from_line,',',index);
if(index == (-1)) continue;
Object = strval(var_from_line);
index = token_by_delim(line,var_from_line,',',index+1);
if(index == (-1)) continue;
SpawnX = floatstr(var_from_line);
index = token_by_delim(line,var_from_line,',',index+1);
if(index == (-1)) continue;
SpawnY = floatstr(var_from_line);
index = token_by_delim(line,var_from_line,',',index+1);
if(index == (-1)) continue;
SpawnZ = floatstr(var_from_line);
index = token_by_delim(line,var_from_line,',',index+1);
if(index == (-1)) continue;
SpawnRX = floatstr(var_from_line);
CreateObject(Object, SpawnX, SpawnY, SpawnZ, SpawnRX, 0.0, 0.0);
Objects_loaded++;
}
fclose(file_ptr);
printf("Loaded %d Object From: %s",Objects_loaded,filename);
return Objects_loaded;
}
stock token_by_delim(const string[], return_str[], delim, start_index)
{
new x=0;
while(string[start_index] != EOS && string[start_index] != delim) {
return_str[x] = string[start_index];
x++;
start_index++;
}
return_str[x] = EOS;
if(string[start_index] == EOS) start_index = (-1);
return start_index;
}