26.04.2012, 11:04
How do I make it show the person?
It sets the colour etc.
This is the OnPlayerReqeustclass
It sets the colour etc.
pawn Код:
// Classes
AddPlayerClass(188,2512.8611,-1673.2799,13.5104,87.7485,0,0,0,0,0,0); // Grove Spawn
AddPlayerClass(280,1543.7747,-1675.7197,13.5571,92.8834,0,0,0,0,0,0); // LSPD Spawn
pawn Код:
public OnPlayerRequestClass(playerid, classid)
{
// With this you save the chosen class number into pClass[playerid]
pClass[playerid] = classid;
SetPlayerPos(playerid, 1543.7747, -1675.7197, 13.5571);
SetPlayerCameraPos(playerid, 1553.7931, -1677.5583, 51.8137);
SetPlayerCameraLookAt(playerid, 1553.7931, -1677.5583, 51.8137);
return 1;
}