Skip to main content

SetPVarString

คำอธิบาย

Saves a string into a player variable.

NameDescription
playeridThe ID of the player whose player variable will be set.
varnameThe name of the player variable.
string_valueThe string you want to save in the player variable.

ส่งคืน

This function does not return any specific values.

ตัวอย่าง

public OnPlayerConnect(playerid)
{
new h,m,s,str[50];
gettime(h,m,s); // get the time
format(str,50,"Connected: %d:%d:%d",h,m,s); // create the string with the connect time
SetPVarString(playerid,"timeconnected",str); // save the string into a player variable
return 1;
}

บันทึก

tip

Variables aren't reset until after OnPlayerDisconnect is called, so the values are still accessible in OnPlayerDisconnect.

ฟังก์ชั่นที่เกี่ยวข้องกัน

  • 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.
  • SetPVarFloat: Set a float for a player variable.
  • GetPVarFloat: Get the previously set float from a player variable.
  • DeletePVar: Delete a player variable.