25.06.2009, 19:34
*Nuke disarmed.
Now, while where here I have a quick question about strings,
Declarations:
Names works, but the enum doesn't. Any help would be REALLY appreciated.
Now, while where here I have a quick question about strings,
pawn Код:
new tempo[7];
for(new i; i < Pickups; i ++) {
format(tempo, 7, "%dName", i);
format(Names[i], 25, "%s", dini_Get("/LSA/Data/BizData.txt", tempo));
format(tempo, 7, "%dOwner", i);
format(BizData[Owner][i], 25, "%s", dini_Get("/LSA/Data/BizData.txt", tempo));
}
pawn Код:
enum BizInfo {
Name[25],
Owner[25]
}
new Names[Pickups][25];