
This time is this: Can I make my game to create a .txt file? (of course with the things I want to be writen on it).
Where that .txt file would be created? Could the player select the destination folder?
Thank you very much for your time.
FERdeBOER wrote:This time is this: Can I make my game to create a .txt file? (of course with the things I want to be writen on it).
Where that .txt file would be created?
Could the player select the destination folder?
Thank you very much for your time.
Fuzzy wrote:FERdeBOER wrote:This time is this: Can I make my game to create a .txt file? (of course with the things I want to be writen on it).
Yes.
FILE *f=fopen("yourfile.txt","w");
fprintf(f,"Hello world");
fclose(f);
FILE *f=fopen("00base.mu","w");
fprintf(f,"VERSION 3"
"OWNALLIANCE 0"
"DIFFICULTY 1"
"TOTALNUMSIDES 1"
"NUMDRIVEABLES 1"
"MONTH 1"
"WORLDGRID 2"
"LATLONG 54.071823 -11.025635"
";"
"SEASTATE %i\n",seastate
"MDR 0 0 0"
"BOTTOMTYPE %i\n",bottomtype
"TIMEOFDAY %i\n",timeofday
"WEATHER %i\n",weather
"CLOUDHEIGHT %i\n",clouds
"SSP %i\n",ssp
""
""
"ENTITY 2342 SUBENTITY"
"HULLID 1"
"ALLIANCE 1"
"POS 305928.125000 597045.187500 -70"
"POINTS 750"
"COURSE 0"
"SPEED 5"
"PROB 100"
"DRIVEABLE 1"
"UNIQUENAME "SSN""
"COMMSINTERVAL 0.000000"
"TACTIC RANDOMBOX"
"BOX 266453.875000 638493.187500 345402.343750 555597.250000"
"AIRLOADOUT 244"
"AIRCRAFT 1722 1 Alert5 0 : Alert15 1 : 0 Alert30 0 : "
"END");
fclose(f);
seastate=rand(5);
bottomtype=rand(3);
and so on...
FILE *f=fopen("00base.mu","w");
fprintf(f,"VERSION 3" \
OWNALLIANCE 0\
DIFFICULTY 1\
TOTALNUMSIDES 1\
NUMDRIVEABLES 1\
MONTH 1\
WORLDGRID 2\
LATLONG 54.071823 -11.025635\
;"\
SEASTATE %i\n,seastate \
MDR 0 0 0\
BOTTOMTYPE %i\n,bottomtype \
TIMEOFDAY %i\n,timeofday \
WEATHER %i\n,weather \
CLOUDHEIGHT %i\n,clouds \
SSP %i\n,ssp \
\
\
ENTITY 2342 SUBENTITY \
HULLID 1 \
ALLIANCE 1 \
POS 305928.125000 597045.187500 -70 \
POINTS 750 \
COURSE 0 \
SPEED 5\
PROB 100\
DRIVEABLE 1\
UNIQUENAME "SSN" \
COMMSINTERVAL 0.000000\
TACTIC RANDOMBOX\
BOX 266453.875000 638493.187500 345402.343750 555597.250000\
AIRLOADOUT 244\
AIRCRAFT 1722 1 Alert5 0 : Alert15 1 : 0 Alert30 0 : \
END");
fclose(f);
Error line 35: Expected )
Error line 35: Expected ;
, has this format on the mission files, each platform has its name and comes quoted, can this be a problem?UNIQUENAME "SSN"
fprintf(f,"Hello,\n\tworld!");
Hello,
world!
Game A Gogo wrote:to have multiline strings, simply use the escape sequence \n
FILE *f=fopen("00base.mu","w");
fprintf(f,"VERSION 3\nOWNALLIANCE 0\nDIFFICULTY 1\nTOTALNUMSIDES 1\nNUMDRIVEABLES 1\nMONTH 1\nWORLDGRID 2\nLATLONG 54.071823 -11.025635\n;\nSEASTATE %i\n",seastate,"\nMDR 0 0 0\nBOTTOMTYPE 1\nTIMEOFDAY 21\nWEATHER 0\nCLOUDHEIGHT 30\nSSP 2\n\n\nENTITY 2342 SUBENTITY\nHULLID 1\nALLIANCE 1\nPOS 554859.937500 559978.937500 -70\nPOINTS 750\nCOURSE 0\nSPEED 5\nPROB 100\nDRIVEABLE 1\nUNIQUENAME ""SSN"" \nCOMMSINTERVAL 0.000000\nTACTIC RANDOMBOX\nBOX 515385.812500 601426.937500 594334.187500 518531.031250\nAIRLOADOUT 244\nAIRCRAFT 1722 1 Alert5 0 : Alert15 1 : 0 Alert30 0 : \nEND\n");
fclose(f);
\nSEASTATE %i\n",seastate,"\nMDR 0 0 0\n
Hblade wrote:Its over 256 characters, which could be the reason probably
Hblade wrote:Strange... Usually it will give you an error if you use any print or sprint command, and have over the max limit character of 256.
Users browsing this forum: No registered users and 1 guest