dini tag mis match with Floats
#1

pawn Код:
dini_IntSet(file, "Enterx", hinfo[houseid][Enterx]);
                dini_IntSet(file, "Entery", hinfo[houseid][Entery]);
                dini_IntSet(file, "Enterz", hinfo[houseid][Enterz]);
                dini_IntSet(file, "Exitx", hinfo[houseid][Exitx]);
                dini_IntSet(file, "Exity", hinfo[houseid][Exity]);
                dini_IntSet(file, "Exitz", hinfo[houseid][Exitz]);
I tryed using dini_Set but I still get the same warning any idea why becuase I can save the other items in dini and they look just like this but I don't get a tag mismatch
Reply
#2

Use dini_FloatSet
Reply
#3

Код:
	   dini_FloatSet(file, "Enterx", hinfo[houseid][Enterx]);
                dini_FloatSet(file, "Entery", hinfo[houseid][Entery]);
                dini_FloatSet(file, "Enterz", hinfo[houseid][Enterz]);
                dini_FloatSet(file, "Exitx", hinfo[houseid][Exitx]);
                dini_FloatSet(file, "Exity", hinfo[houseid][Exity]);
                dini_FloatSet(file, "Exitz", hinfo[houseid][Exitz]);
Reply
#4

awesome thanks!
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)