06.12.2010, 16:50
Oke, I have this:
But it won't show any objects..how can I do to show them?
Thanks.
pawn Код:
public OnPlayerRequestClass(playerid, classid)
{
switch(classid)
{
case 0..3:
{
GameTextForPlayer(playerid, "~w~Los Santos ~g~SAPD", 5000, 3);
SetPlayerCameraPos(playerid, 1780.6676, -2462.4436, 15.5547);
SetPlayerCameraLookAt(playerid, 1791.9713, -2470.5684, 16.9427);
}
case 4..7: GameTextForPlayer(playerid, "~w~San Fierro ~g~SAPD", 5000, 3);
case 8..11: GameTextForPlayer(playerid, "~w~Las Venturas ~g~SAPD", 5000, 3);
case 12..14: GameTextForPlayer(playerid, "~w~Las Venturas ~g~DRIFTER", 5000, 3);
}
PlayerPlaySound(playerid, 1185, 0, 0, 0);
SetPlayerPos(playerid, 1792.3409, -2471.4387, 16.9700);
SetPlayerFacingAngle(playerid, 57.9551);
SetPlayerVirtualWorld(playerid, 0);
return 1;
}
Thanks.