note Help Needed
This wiki is the result of an ongoing community effort — thank you all for helping!
If you want to provide changes to this page then please click here.
SetPlayerWeather
Description
Set a player's weather.
Name | Description |
---|---|
playerid | The ID of the player whose weather to set. |
weather | The weather to set. |
Returns
This function does not return any specific values.
Examples
public OnPlayerCommandText(playerid, cmdtext[])
{
if (!strcmp(cmdtext, "/storm", true))
{
SetPlayerWeather(playerid, 8);
return 1;
}
return 0;
}
Notes
tip
- If TogglePlayerClock is enabled, weather will slowly change over time, instead of changing instantly.
- There are only valid 21 weather IDs in the game (0 - 20), however the game does not have any form of range check.
Related Functions
- GetPlayerWeather: Get a player's weather.
- SetWeather: Set the global weather.
- SetGravity: Set the global gravity.