08.08.2010, 11:42
Drunk level isnt float, its decimal, so you need to use %d, but %d can't show digits behind comat, so you need to convert drunk level to float to print 0.1 etc
or just print format . .. . "Drunk level: 0.%d",GetPlayerDrunkLevel(playerid)/1000);
or just print format . .. . "Drunk level: 0.%d",GetPlayerDrunkLevel(playerid)/1000);

