Returning a float value - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Returning a float value (
/showthread.php?tid=321236)
Returning a float value -
WooTFTW - 26.02.2012
pawn Код:
stock GetVehicleConsumption(vehicleid)
{
new Speed = GetVehicleSpeed(vehicleid);
new modelid = GetVehicleModel(vehicleid);
new Float:volume = Degpaterins[modelid - 400];
//printf("pat: %f, for: speed:%i vol: %f iznakus: %f", Degpaterins[modelid - 400], Speed, volume, Speed / (volume * 12) + volume/3);
return Speed/(volume*15) + volume/3; // tag mismatch
}
How can i return a float value without any warnings?
Re: Returning a float value - T0pAz - 26.02.2012
pawn Код:
stock GetVehicleConsumption(vehicleid)
{
new Speed = GetVehicleSpeed(vehicleid);
new modelid = GetVehicleModel(vehicleid);
new Float:volume = Degpaterins[modelid - 400];
//printf("pat: %f, for: speed:%i vol: %f iznakus: %f", Degpaterins[modelid - 400], Speed, volume, Speed / (volume * 12) + volume/3);
return float(Speed/(volume*15) + volume/3);
}
Re: Returning a float value -
RyDeR` - 26.02.2012
Just add a Float tag before you function name:
pawn Код:
stock Float: GetVehicleConsumption(vehicleid)
{
new Speed = GetVehicleSpeed(vehicleid);
new modelid = GetVehicleModel(vehicleid);
new Float:volume = Degpaterins[modelid - 400];
//printf("pat: %f, for: speed:%i vol: %f iznakus: %f", Degpaterins[modelid - 400], Speed, volume, Speed / (volume * 12) + volume/3);
return Speed/(volume*15) + volume/3; // tag mismatch
}
Re: Returning a float value -
WooTFTW - 26.02.2012
Quote:
Originally Posted by RyDeR`
Just add a Float tag before you function name:
pawn Код:
stock Float: GetVehicleConsumption(vehicleid) //function with tag result used before definition, forcing reparse { new Speed = GetVehicleSpeed(vehicleid); new modelid = GetVehicleModel(vehicleid); new Float:volume = Degpaterins[modelid - 400]; //printf("pat: %f, for: speed:%i vol: %f iznakus: %f", Degpaterins[modelid - 400], Speed, volume, Speed / (volume * 12) + volume/3); return Speed/(volume*15) + volume/3; // tag mismatch }
|
Thanks,
but it shows: function with tag result used before definition, forcing reparse
Re: Returning a float value - T0pAz - 26.02.2012
Quote:
Originally Posted by Skorch
Thanks,
but it shows: function with tag result used before definition, forcing reparse
|
It's because your returning an integer. Use
float(); at return.
Re: Returning a float value -
WooTFTW - 26.02.2012
Quote:
Originally Posted by T0pAz
It's because your returning an integer. Use float(); at return.
|
I already tried that..
and its float what I am returning
Re: Returning a float value - T0pAz - 26.02.2012
Sorry, you need to put this function before the line where are you calling the function.