27.06.2012, 03:59
I wanna know how to do this
public OnPlayerRequestClass(playerid, classid)
{
SetPlayerPos(playerid, 1999.2517,-755.3153,129.1501);
SetPlayerCameraPos(playerid, 1999.2517,-755.3153,129.1501);
SetPlayerCameraLookAt(playerid, 1999.2517,-755.3153,129.1501);
SetPlayerFacingAngle(playerid,108.0085);
if(classid == 0)
{
GameTextForPlayer(playerid, "~r~ Human", 9000, 3);
gTeam[playerid] = TEAM_HUMAN;
}
else if(classid == 1)
{
GameTextForPlayer(playerid, "~b~ Zombie", 9000, 3);
gTeam[playerid] = TEAM_ZOMBIE;
}
return 1;
}
This wont show player skin on playerrequest class
I wanna show skin of each group
how to do that?
For eg: i wann do it like this
the current is
see no player skin is showing
public OnPlayerRequestClass(playerid, classid)
{
SetPlayerPos(playerid, 1999.2517,-755.3153,129.1501);
SetPlayerCameraPos(playerid, 1999.2517,-755.3153,129.1501);
SetPlayerCameraLookAt(playerid, 1999.2517,-755.3153,129.1501);
SetPlayerFacingAngle(playerid,108.0085);
if(classid == 0)
{
GameTextForPlayer(playerid, "~r~ Human", 9000, 3);
gTeam[playerid] = TEAM_HUMAN;
}
else if(classid == 1)
{
GameTextForPlayer(playerid, "~b~ Zombie", 9000, 3);
gTeam[playerid] = TEAM_ZOMBIE;
}
return 1;
}
This wont show player skin on playerrequest class
I wanna show skin of each group
how to do that?
For eg: i wann do it like this
the current is
see no player skin is showing