http://sampforum.hu/index.php?topic=39085.0Itt a filterscript, könnyen szerkeszthetõ, ha kell. Kell hozzá a ZCMD.inc
http://pastebin.com/XFy0R97cEz egy include (asszem), jelöld ki az egészet, CTRL+c > a szervered mappája\\pawno\\includes -ben létrehozol egy walk.inc file-t, pawnoval nyisd meg ctrl+v és mentsd
Mododban vagy filterscriptedben elejére beírod: #include <walk> 
#include <a_samp>
#include <walk>
 Aztán parancs létrehozása (sscanf és zcmd kell hozzá!) 
CMD:walkstyle(playerid, params[])
{
new styleka;
if(sscanf(params, \"i\", styleka)) return SendClientMessage(playerid, COLOR_GREY, \"Használat: /walkstyle [id]\");
{
if(styleka >= 0 && stlyeka <= 13)
{
SetPlayerWalkingStyle(playerid, styleka);
SendClientMessage(playerid, 0xFF0000AA, \"Átállítva!\");
}else{
SendClientMessage(playerid, 0xFF0000AA, \" 0-13 lehet az érték!!!\");
}
}
return 1;
}
 #define WALK_DEFAULT    0
#define WALK_NORMAL     1
#define WALK_PED        2
#define WALK_GANGSTA    3
#define WALK_GANGSTA2   4
#define WALK_OLD        5
#define WALK_FAT_OLD    6
#define WALK_FAT        7
#define WALK_LADY       8
#define WALK_LADY2      9
#define WALK_WHORE      10
#define WALK_WHORE2     11
#define WALK_DRUNK      12
#define WALK_BLIND      13
 tehát ha a cj futást akarod /walkstyle 1
ha ped futást, /walkstyle 2
Ez egy sétálás stílust állító include, egy kis logikával futást csinálhatsz belõle.
ZCMD leírása:
http://sampforum.hu/index.php?topic=10780.0sscanf leírása:
http://sampforum.hu/index.php?topic=4400.0