Class model previews don't show up on connect
#1

When you connect to my (in development) freeroam gamemode/server, when you get to the "pick your class" crap. It does not show the models.

If you want a better explaination, go to the server:
71.173.247.175:7777
Reply
#2

Same here please someone help?
Reply
#3

Did you add any player classes to choose?
Reply
#4

Set the player into the camera view with SetPlayerPosition under OnPlayerRequestClass
Reply
#5

Quote:
Originally Posted by dice7
Set the player into the camera view with SetPlayerPosition under OnPlayerRequestClass
yea but what are the cords for this?
Reply
#6

Quote:
Originally Posted by McCrisp
yea but what are the cords for this?
You can find them in-game by walking 2 meters foward and saving your position.
Reply
#7

Quote:
Originally Posted by cοοp
Quote:
Originally Posted by McCrisp
yea but what are the cords for this?
You can find them in-game by walking 2 meters foward and saving your position.
yea kinda stupid of me ^^

But do i just gotta add this code in PWN?

Код:
public SetupPlayerForClassSelection(playerid)
{
	SetPlayerPos(playerid,106,1962.0925,1343.0800,15.4823,86.5290);
}
Reply
#8

Quote:
Originally Posted by McCrisp
But do i just gotta add this code in PWN?

Код:
public SetupPlayerForClassSelection(playerid)
{
	SetPlayerPos(playerid,106,1962.0925,1343.0800,15.4823,86.5290);
}
You've copied that from the Las Venturas Moneygrub gamemode, right?
No. You have to add that on OnPlayerSpawn.
Reply
#9

check onplayerrequestclass
Reply
#10

I mean, you have to add your SetPlayerPos on OnPlayerSpawn. Like this:

pawn Код:
public OnPlayerSpawn(playerid)
{
SetPlayerPos(playerid,106,1962.0925,1343.0800,15.4823,86.5290);
return 1;
}
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)