SetGravity
From SA-MP Wiki
Description:
Set the gravity for all players.
(Float:gravity)
Float:gravity | The value that the gravity should be set to (between -50 and 50). |
Return Values:
This function always returns 1, even when it fails to execute if the gravity is out of the limits (lower than -50 or high than +50).
Example Usage:
public OnGameModeInit() { // Set moon-like gravity SetGravity(0.001); return 1; }
Related Functions
The following functions may be useful, as they are related to this function in one way or another.
- GetGravity: Get the currently set gravity.
- SetWeather: Set the global weather.
- SetWorldTime: Set the global server time.