30.08.2009, 19:27
Heya,
I've been searching most of this afternoon and trying different things but I can't seem to get my class selection music to play....any chance anybody could give me a hand to fix it?
Here is my code:
Knowing my luck it will probably be the simplest little thing stopping it from playing. :L
Ashley
I've been searching most of this afternoon and trying different things but I can't seem to get my class selection music to play....any chance anybody could give me a hand to fix it?
Here is my code:
pawn Код:
public OnPlayerRequestClass(playerid, classid)
{
TogglePlayerControllable(playerid,0);
PlayerPlaySound(playerid, 1185, 0.0,0.0,0.0);
SetPlayerPos(playerid, 1498.7487,-945.5091,51.2734);
SetPlayerCameraPos(playerid, 1502.2191,-943.7787,51.2934);
SetPlayerCameraLookAt(playerid, 1498.7487,-945.5091,51.2734);
SetPlayerFacingAngle(playerid,280);
return 1;
}
Ashley