05.12.2010, 13:23
Okay, that would be because you do not have the OnPlayerRequestClass function setup so that you can actually see the skin you are selecting.
This is an example that I took from LVDM that comes with the server package.
So what you're doing is basically putting the player somewhere and specifically moving his camera somewhere else to look at his character during the class selection.
As for the "running like a pussy" part, you need to add
To OnGameModeInit.
This is an example that I took from LVDM that comes with the server package.
pawn Код:
public OnPlayerRequestClass(playerid)
{
SetPlayerInterior(playerid,14);
SetPlayerPos(playerid,258.4893,-41.4008,1002.0234);
SetPlayerFacingAngle(playerid, 270.0);
SetPlayerCameraPos(playerid,256.0815,-43.0475,1004.0234);
SetPlayerCameraLookAt(playerid,258.4893,-41.4008,1002.0234);
return 1;
}
As for the "running like a pussy" part, you need to add
pawn Код:
UsePlayerPedAnims();

