11.12.2014, 16:55
pawn Код:
new INI:File = INI_Open(HousePath(/*put your house id here for example "i" in loop*/));
INI_SetTag(File,"Houses");
INI_WriteInt(File,"House ID", hID);
INI_WriteInt(File,"House Interior", hInterior);
INI_WriteFloat(File,"hX", X);
INI_WriteFloat(File,"hY", Y);
INI_WriteFloat(File,"hZ", Z);
stock HousePath(houseid /*you have to call something :|*/)
{
new string[128];
format(string,sizeof(string),PATH, houseid /* <-----------*/);
return string;
}