Storing vehicle ID into a variable - 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: Storing vehicle ID into a variable (
/showthread.php?tid=361720)
Storing vehicle ID into a variable -
Tee - 22.07.2012
Would it be wiser to define a variable and store a player's current vehicle ID in that vairable than using 'GetPlayerVehicleID(playerid);' each time or even doing 'new vid = GetPlayerVehicleID(playerid);' each time you need to get the ID more than once.
Example:
pawn Код:
public OnPlayerStateChange(playerid, newstate, oldstate)
{
ServerData[playerid][CurrentVehicleID] = GetPlayerVehicleID(playerid);
return 1;
}
And using 'ServerData[playerid][CurrentVehicleID]' throughout the rest of the script.
Would all that be wiser than what I stated above?
Re: Storing vehicle ID into a variable -
leonardo1434 - 22.07.2012
You could do this:
pawn Код:
ServerData[playerid][GetPlayerVehicleID(playerid)];
But you didn't explained carefully what do you want to do, at least myself didn't get it.
Re: Storing vehicle ID into a variable -
Tee - 22.07.2012
Instead of having to search (prefer not to use get) for the player's vehicle ID each time I need to use it, would it be wiser and or more efficient to store it into a variable ONCE and get it from that variable each time it's needed?
Re: Storing vehicle ID into a variable -
leonardo1434 - 22.07.2012
Yeh.. i use it, pretty helpful since you won't need to type this again. Normally i do that.
pawn Код:
new vehid = GetPlayerVehicleID(playerid);
Re: Storing vehicle ID into a variable -
Kindred - 22.07.2012
Yea, I suppose using GetPlayerVehicleID every time is less efficient then using a variable.
Could be possible to see how fast it takes for each, if needed.
Re: Storing vehicle ID into a variable -
[KHK]Khalid - 22.07.2012
I did some benchmarking for this, here are the results if anyone is interested (Note: VehicleID is the player's vehicle variable):
pawn Код:
// First time
[04:57:18] GetPlayerVehicleID took 262 ms to execute
[04:57:19] VehicleID took 231 ms to execute
// Second time
[04:57:47] GetPlayerVehicleID took 308 ms to execute
[04:57:47] VehicleID took 218 ms to execute
// Third time
[04:57:49] GetPlayerVehicleID took 260 ms to execute
[04:57:49] VehicleID took 215 ms to execute