PHP код:
//SavePlant
SavePlant(plantid)
{
new pFile[64];
format(pFile, sizeof(pFile),"plants/%d.ini",plantid);
new INI:File = INI_Open(pFile);
INI_SetTag(File, "Plant");
INI_WriteString(File, "Owner", Plants[plantid][pOwner]);
INI_WriteInt(File, "PlantSpawned", Plants[plantid][pObjectSpawned]);
INI_WriteInt(File, "Type", Plants[plantid][pPlantType]);
INI_WriteInt(File, "Object", Plants[plantid][pObject]);
INI_WriteInt(File, "Growth", Plants[plantid][pGrowth]);
INI_WriteInt(File, "VW", Plants[plantid][pExpires]);
INI_WriteInt(File, "Interior", Plants[plantid][pInterior]);
INI_WriteFloat(File, "PosX", Plants[plantid][pPos][0]);
INI_WriteFloat(File, "PosY", Plants[plantid][pPos][1]);
INI_WriteFloat(File, "PosZ", Plants[plantid][pPos][2]);
INI_WriteInt(File, "Experies", Plants[plantid][pExpires]);
INI_WriteInt(File, "DrugSkill", Plants[plantid][pDrugsSkill]);
INI_Close(File);
return 1;
}