SA-MP Forums Archive
YSI - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: YSI (/showthread.php?tid=421243)



YSI - markoku - 08.03.2013

Can i add Ysi with this includes

tnx

Quote:

#include <a_samp>
#include <core>
#include <float>
#include <time>
#include <file>
#include <utils>
#include <morphinc>




Re: YSI - MP2 - 08.03.2013

Of course you can..

a_samp already includes all those other files, so I'm not sure why you're re-including them all..


Re: YSI - Scenario - 08.03.2013

... there's a thing called trial and error. Use it sometime!


Re: YSI - markoku - 08.03.2013

how these to make it like these on 2 quote
Quote:

forward UcitajVikendice(idvikendice, name[], value[]);
public UcitajVikendice(idvikendice, name[], value[])
{
INI_Int("ProveraVlasnika",VikendicaInfo[idvikendice][vProveraVlasnika]);
INI_String("Vlasnik",VikendicaInfo[idvikendice][vVlasnik],45);
INI_String("Vrsta",VikendicaInfo[idvikendice][vVrsta],35);
INI_Float("UlazX",VikendicaInfo[idvikendice][vUlazX]);
INI_Float("UlazY",VikendicaInfo[idvikendice][vUlazY]);
INI_Float("UlazZ",VikendicaInfo[idvikendice][vUlazZ]);
INI_Float("IzlazX",VikendicaInfo[idvikendice][vIzlazX]);
INI_Float("IzlazY",VikendicaInfo[idvikendice][vIzlazY]);
INI_Float("IzlazZ",VikendicaInfo[idvikendice][vIzlazZ]);
INI_Int("Level",VikendicaInfo[idvikendice][vLevel]);
INI_Int("Cena",VikendicaInfo[idvikendice][vCena]);
INI_Int("Interior",VikendicaInfo[idvikendice][vInt]);
INI_Int("Zatvoreno",VikendicaInfo[idvikendice][vZatvoreno]);
INI_Int("VW",VikendicaInfo[idvikendice][vVW]);
INI_Int("PromenaIntVikendice",VikendicaInfo[idvikendice][vPromenaIntVikendice]);
return 1;
}


Quote:

public LoadProperty()
{
new arrCoords[30][64];
new strFromFile2[256];
new File: file = fopen("cfg/property.cfg", io_read);
if (file)
{
new idx;
while (idx < sizeof(HouseInfo))
{
fread(file, strFromFile2);
split(strFromFile2, arrCoords, ',');
HouseInfo[idx][hEntrancex] = floatstr(arrCoords[0]);
HouseInfo[idx][hEntrancey] = floatstr(arrCoords[1]);
HouseInfo[idx][hEntrancez] = floatstr(arrCoords[2]);
HouseInfo[idx][hExitx] = floatstr(arrCoords[3]);
HouseInfo[idx][hExity] = floatstr(arrCoords[4]);
HouseInfo[idx][hExitz] = floatstr(arrCoords[5]);
HouseInfo[idx][hHealthx] = strval(arrCoords[6]);
HouseInfo[idx][hHealthy] = strval(arrCoords[7]);
HouseInfo[idx][hHealthz] = strval(arrCoords[8]);
HouseInfo[idx][hArmourx] = strval(arrCoords[9]);
HouseInfo[idx][hArmoury] = strval(arrCoords[10]);
HouseInfo[idx][hArmourz] = strval(arrCoords[11]);
//printf("HouseInfo hEntrancez %f",HouseInfo[idx][hEntrancez]);
strmid(HouseInfo[idx][hOwner], arrCoords[12], 0, strlen(arrCoords[12]), 255);
strmid(HouseInfo[idx][hDiscription], arrCoords[13], 0, strlen(arrCoords[13]), 255);
HouseInfo[idx][hValue] = strval(arrCoords[14]);
HouseInfo[idx][hHel] = strval(arrCoords[15]);
HouseInfo[idx][hArm] = strval(arrCoords[16]);
HouseInfo[idx][hInt] = strval(arrCoords[17]);
HouseInfo[idx][hLock] = strval(arrCoords[18]);
HouseInfo[idx][hOwned] = strval(arrCoords[19]);
HouseInfo[idx][hRooms] = strval(arrCoords[20]);
HouseInfo[idx][hRent] = strval(arrCoords[21]);
HouseInfo[idx][hRentabil] = strval(arrCoords[22]);
HouseInfo[idx][hTakings] = strval(arrCoords[23]);
HouseInfo[idx][hVec] = strval(arrCoords[24]);
if(HouseInfo[idx][hVec] == 457)
{
HouseInfo[idx][hVec] = 411;
}
HouseInfo[idx][hVcol1] = strval(arrCoords[25]);
HouseInfo[idx][hVcol2] = strval(arrCoords[26]);
HouseInfo[idx][hDate] = strval(arrCoords[27]);
HouseInfo[idx][hLevel] = strval(arrCoords[28]);
HouseInfo[idx][hWorld] = strval(arrCoords[29]);

printf("HouseInfo:%d Owner:%s hTakings %d hVec %d",idx,HouseInfo[idx][hOwner],HouseInfo[idx][hTakings],HouseInfo[idx][hVec]);
idx++;
}
fclose(file);
}
return 1;
}