/samp-walking-styles

Ben Jackster's walking styles script, forked by me, allowing player to choose between 15 walking styles

Primary LanguagePawnMIT LicenseMIT

samp-walking-styles

sampctl

Installation

Simply install to your project:

sampctl package install Mergevos/samp-walking-styles

Include in your code and begin using the library:

#include <walking-styles>

Usage

If you've had included this into your script/gamemode etc... Start by using a simple function

Player_SetWalkingStyle(const playerid, const style);

This is going to set you some of walking styles below

enum {
	WALKING_STYLE_DEFAULT = 0,
	WALKING_STYLE_NORMAL,
	WALKING_STYLE_PED,
	WALKING_STYLE_GANGSTA,
	WALKING_STYLE_GANGSTA2,
	WALKING_STYLE_OLD,
	WALKING_STYLE_FAT_OLD,
	WALKING_STYLE_FAT,
	WALKING_STYLE_WOMANOLD,
	WALKING_STYLE_WOMANFATOLD,
	WALKING_STYLE_SHUFFLE,
	WALKING_STYLE_LADY,
	WALKING_STYLE_LADY2,
	WALKING_STYLE_WHORE,
	WALKING_STYLE_WHORE2,
	WALKING_STYLE_DRUNK,
	WALKING_STYLE_BLIND
};

And there is

Player_GetWalkingStyle(const playerid);

This will return you the player's walking style.

Note: If you've set the player's walking style, to activate it, firstly press W then left alt key.

Testing

To test, firstly configure pawn.json then simply run the package:

sampctl package run