SA-MP Forums Archive
Get a float array using dini - 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)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Get a float array using dini (/showthread.php?tid=112378)



Get a float array using dini - .Bino. - 07.12.2009

I want to read from file a float array like this

Код:
{-1956.7854, 260.8535, 41.0470, 242.0}, // homespawn
{-1945.3067, 263.1175, 41.0470, 17.3}, // homespawn
{-1947.7381, 270.8883, 41.0534, 25.6}, // homespawn
{-1953.1245, 275.0979, 41.0470, 17.3}, // homespawn
{-1955.9945, 289.3790, 41.0470, 332.3}, // homespawn
{-1954.5942, 302.5281, 41.8934, 17.3}, // homespawn
{-1957.5754, 299.2217, 41.6033, 197.3}, // homespawn
{-1951.0284, 298.5231, 41.0470, 8.2}, // homespawn
{-1949.4483, 273.8665, 41.8443, 257.8}, // homespawn
{-1951.1414, 265.9249, 41.8710, 130.5}, // homespawn
{-1946.6102, 256.0560, 41.1962, 242.3}
How to get it from file?? How i write it in the file? I want to use dini...


Re: Get a float array using dini - *ToM* - 07.12.2009

https://sampwiki.blast.hk/wiki/Useful_Fu....28Dini.inc.29

http://forum.sa-mp.com/index.php?topic=981.0

http://forum.sa-mp.com/index.php?topic=126584.0

Try reading some of these threads, they might help you .


Re: Get a float array using dini - .Bino. - 07.12.2009

Quote:
Originally Posted by Toniu_
They not help me


Re: Get a float array using dini - MenaceX^ - 07.12.2009

floatstr?


Re: Get a float array using dini - ft941 - 07.12.2009

se vuoi farlo col dini non puoi leggere matrici... ma ogni float singola tipo


x=0.00000
y=0.00000

ecc...


se non ricordo male si fa cosi... cmq c'и una discussione su gta expert che aveva fatto alle... vedi di trovarla asd

ongamemodeinit

Код:
if(!dini_Exists("p.txt"))
{
dini_Create("p.txt");
}
x scrivere


Код:
dini_Set("p.txt", "x", "0.0000");
x leggere


Код:
string = dini_Get("p.txt", "x");
http://forum.sa-mp.com/index.php?topic=71935.0



Re: Get a float array using dini - .Bino. - 07.12.2009

Quote:
Originally Posted by ft941
se vuoi farlo col dini non puoi leggere matrici... ma ogni float singola tipo


x=0.00000
y=0.00000

ecc...


se non ricordo male si fa cosi... cmq c'и una discussione su gta expert che aveva fatto alle... vedi di trovarla asd

ongamemodeinit

Код:
if(!dini_Exists("p.txt"))
{
dini_Create("p.txt");
}
x scrivere


Код:
dini_Set("p.txt", "x", "0.0000");
x leggere


Код:
string = dini_Get("p.txt", "x");
http://forum.sa-mp.com/index.php?topic=71935.0
non mi serve... ste cose le so giа fare... a me serve farlo in matrice


Re: Get a float array using dini - ft941 - 07.12.2009

non credo si possa fare


Re: Get a float array using dini - MenaceX^ - 07.12.2009

English for god sakes. This forum has rules.


Re: Get a float array using dini - .Bino. - 08.12.2009

UP


Re: Get a float array using dini - Malice - 08.12.2009

If you still need to know. I would scrap dini for this purpose and just fread. Use sscanf to "extract" the values from the string. Use format then write of course.