Cant see skins
#1





I cant see the skin selection.. help?
Reply
#2

You have more than one player class?
If you only have one class, you can't see anything.
Reply
#3

Your coordinates are wrong.
Reply
#4

CameraPos and PlayerPos are on a place (sry for my bad enlish xd)
Reply
#5

Quote:
Originally Posted by M1K1
CameraPos and PlayerPos are on a place (sry for my bad enlish xd)
What do u mean?
Reply
#6

Quote:
Originally Posted by ee100
Quote:
Originally Posted by M1K1
CameraPos and PlayerPos are on a place (sry for my bad enlish xd)
What do u mean?
he means that the skins are standing somewhere else and not where the camera is
check your coordinates of the skins
Reply
#7

I have tried, but I really dont under stand the CameraLookAt.. Mind edit what I have done wrong?



Код:
public OnPlayerRequestClass(playerid, classid)
{

	SetPlayerPos(playerid, 2020.6265, 1007.7409, 10.8203);
	SetPlayerCameraPos(playerid, 2020.6265, 1007.7409, 10.8203);
	SetPlayerCameraLookAt(playerid, 2020.6265, 1007.7409, 10.8203);
	SetPlayerColor(playerid, 0xFFFFFF);
	return 1;
}
I am sorry if I am a little nub, its just that PAWNO is new to me :]
Reply
#8

OnGameModeInt:

Код:
	for(new c = 0;c < 400; c++)
	{
		AddPlayerClass(c,1958.3783,1343.1572,15.3746,270.1425,0,0,24,300,-1,-1);
	}
Reply
#9

you are using the same coords 3 times. the camera is actually watching the character, but its not far enough to be in front of the "lens". so just modify the cameras' position to 2 units west (x-axis -2), so it becomes:
Код:
public OnPlayerRequestClass(playerid, classid)
{

	SetPlayerPos(playerid, 2020.6265, 1007.7409, 10.8203);
	SetPlayerCameraPos(playerid, 2018.6265, 1007.7409, 10.8203);
	SetPlayerCameraLookAt(playerid, 2020.6265, 1007.7409, 10.8203);
	SetPlayerColor(playerid, 0xFFFFFF);
	return 1;
}
Reply
#10

Quote:
Originally Posted by benlevi
OnGameModeInt:

Код:
	for(new c = 0;c < 400; c++)
	{
		AddPlayerClass(c,1958.3783,1343.1572,15.3746,270.1425,0,0,24,300,-1,-1);
	}
Player will crash on invalid skin-IDs.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)