19.02.2012, 13:36
Change
>
Because you're updating lines in the file as float, and you're checking it as integers.
pawn Код:
if(dini_Int(file, "X") == 0 || dini_Int(file, "Y") == 0 || dini_Int(file, "Z") == 0)
pawn Код:
if(dini_Float(file, "X") == 0 || dini_Float(file, "Y") == 0 || dini_Float(file, "Z") == 0)

