04.11.2012, 19:26
(
Last edited by Emmet_; 07/04/2013 at 10:15 AM.
)
Removed. Please don't ask me for the script because I don't have it
#define FILTERSCRIPT
#include <a_samp>
#include <walkstyle>
public OnPlayerConnect(playerid)
{
SetPlayerWalkingStyle(playerid, 1);
return 1;
}
// Gamemode
#include <a_samp>
#include <zcmd>
#include <YSI\y_ini>
#include <streamer>
#include <timerfix>
#include <walkstyle>
public OnPlayerConnect(playerid)
{
if (GetPlayerWalkingStyle(playerid) == 1)
{
SendClientMessage(playerid, -1, "Your walking style is 1.");
new
str[12],
File:handle = fopen("walkingstyle.txt", io_write);
format(str, sizeof(str), "%d", GetPlayerWalkingStyle(playerid));
fwrite(handle, str);
fclose(handle);
}
return 1;
}