Quote:
Originally Posted by ServerScripter
Hi , i had this :
AddPlayerClass(285,-379.6754,911.4002,9.4913,81.5043,0,0,0,0,0,0);//Team3///
and this Under public SetupPlayerForClassSelection(playerid):
pawn Код:
public SetupPlayerForClassSelection(playerid) { SetPlayerPos(playerid, 1958.3783, 1343.1572, 15.3746); SetPlayerCameraPos(playerid, 1958.3783, 1343.1572, 15.3746); SetPlayerCameraLookAt(playerid, 1958.3783, 1343.1572, 15.3746); return 1; }
but My Problem is i can't see the Swat Man in spawn Selection :
If Someone have any Idea please Help me.
|
I think the problem is that
It is not suppose to be under SetupPlayerForClassSelection
Copy and Paste it to under PlayerRequestClass
So this is what it is suppose to look like
pawn Код:
public OnPlayerRequestClass(playerid)
{
AddPlayerClass(285,-379.6754,911.4002,9.4913,81.5043,0,0,0,0,0,0);//Team3///
SetPlayerPos(playerid, 1958.3783, 1343.1572, 15.3746);
SetPlayerCameraPos(playerid, 1958.3783, 1343.1572, 15.3746);
SetPlayerCameraLookAt(playerid, 1958.3783, 1343.1572, 15.3746);
return 1;
}