11.03.2016, 23:06
Would need client side modification, so no.
I'm going to post here R17, it's should be stable but I post it here before I release on github.
R17
- Added OnPlayerClientGameInit*
- Added compatibility with SKY, now both plugin can be loaded without crash
- Added GetActorAnimation
- Added (Set/Get)RecordingDirectory
- Added GetVehicleModelCount, GetVehicleModelsUsed
- Added YSF_SetExtendedNetStatsEnabled, YSF_IsExtendedNetStatsEnabled (by default disabled)
- Added YSF_(Set/Get)AFKAccuracy to adjust AFK accuracy, in ms - default 1500
- TogglePlayerOnPlayerList renamed to TogglePlayerInServerQuery
- Fixed GangZoneShowForAll would call OnPlayerLeaveGangZone
- Fixed crash with AttachObjectToPlayer
- Fixed crash with AttachPlayerObjectToPlayer
- Fixed GetObjectAttachedData -> 'attachedplayerid'
- Other minor bugfixes & improvements
* This callback will be called immendiately after player connect to server. You can change the inital settings here for player like cjwalk, onfoot_rate, etc.
http://www.mfrserver.net/up/YSF_kurta999_version_R17.7z
I would like to ask, test the new OnPlayerClientGameInit callback before release please.
I'm going to post here R17, it's should be stable but I post it here before I release on github.
R17
- Added OnPlayerClientGameInit*
- Added compatibility with SKY, now both plugin can be loaded without crash
- Added GetActorAnimation
- Added (Set/Get)RecordingDirectory
- Added GetVehicleModelCount, GetVehicleModelsUsed
- Added YSF_SetExtendedNetStatsEnabled, YSF_IsExtendedNetStatsEnabled (by default disabled)
- Added YSF_(Set/Get)AFKAccuracy to adjust AFK accuracy, in ms - default 1500
- TogglePlayerOnPlayerList renamed to TogglePlayerInServerQuery
- Fixed GangZoneShowForAll would call OnPlayerLeaveGangZone
- Fixed crash with AttachObjectToPlayer
- Fixed crash with AttachPlayerObjectToPlayer
- Fixed GetObjectAttachedData -> 'attachedplayerid'
- Other minor bugfixes & improvements
* This callback will be called immendiately after player connect to server. You can change the inital settings here for player like cjwalk, onfoot_rate, etc.
http://www.mfrserver.net/up/YSF_kurta999_version_R17.7z
I would like to ask, test the new OnPlayerClientGameInit callback before release please.
pawn Code:
public OnPlayerClientGameInit(playerid, &usecjwalk, &limitglobalchat, &globalchatradius, &nametagdistance, &disableenterexits, &nametaglos, &manualvehengineandlights,
&spawnsavailable, &shownametags, &showplayermarkers, &onfoot_rate, &incar_rate, &weapon_rate, &lacgompmode, &vehiclefriendlyfire)
{
if(playerid == 0) // you can get name too, i'm lazy..
{
onfoot_rate = 13;
usecjwalk = 0;
}
return 1;
}