SetPVarFloat

From SA-MP Wiki

(Difference between revisions)
Jump to: navigation, search
Revision as of 19:34, 23 April 2010
Evrim (Talk | contribs)

← Previous diff
Revision as of 04:23, 5 February 2014
Connor Mead (Talk | contribs)

Next diff →
Line 1: Line 1:
{{Scripting}} {{Scripting}}
-{{Title}} 
{{Description|Saves a float variable into a player variable.}} {{Description|Saves a float variable into a player variable.}}
Line 33: Line 32:
[[Category:Scripting Functions]] [[Category:Scripting Functions]]
 +
 +[[fr:SetPVarFloat]]

Revision as of 04:23, 5 February 2014



Description:

Saves a float variable into a player variable.


Parameters:
(playerid, varname[], Float:float_value)
playeridThe ID of the player whose player variable will be set.
varnameThe name of the player variable.
float_valueThe float you want to save in the player variable.


Return Values:

This function does not return any specific values.


forward SavePos(playerid);
public SavePos(playerid)
{
    new Float:x,Float:y,Float:z;
    GetPlayerPos(playerid,x,y,z); // Get the players position
    SetPVarFloat(playerid,"xpos",x); // Save the float into a player variable
    SetPVarFloat(playerid,"ypos",y); // Save the float into a player variable
    SetPVarFloat(playerid,"zpos",z); // Save the float into a player variable
    return 1;
}

Related Functions

The following functions may be useful, as they are related to this function in one way or another.

  • SetPVarInt: Set an integer for a player variable.
  • GetPVarInt: Get the previously set integer from a player variable.
  • GetPVarString: Get the previously set string from a player variable.
  • GetPVarFloat: Get the previously set float from a player variable.
In other languages