Jump to content
  • 0

pomoc Pawno otázka


Máchal

Dotaz

Prosím vás nevíte proč se mi nezobrazují skiny, když se připojím na server?

public OnGameModeInit()

{

// Don't use these lines if it's a filterscript

SetGameModeText("LS");

AddPlayerClass(249,1543.7592,-1353.7017,329.4736,268.2025,26,9996,0,0,0,0);

AddPlayerClass(33,1543.7592,-1353.7017,329.4736,268.2025,26,9996,0,0,0,0);

AddPlayerClass(47,1543.7592,-1353.7017,329.4736,268.2025,26,9996,0,0,0,0);

AddPlayerClass(49,1543.7592,-1353.7017,329.4736,268.2025,26,9996,0,0,0,0);

AddPlayerClass(56,1543.7592,-1353.7017,329.4736,268.2025,26,9996,0,0,0,0);

AddPlayerClass(59,1543.7592,-1353.7017,329.4736,268.2025,26,9996,0,0,0,0);

AddPlayerClass(62,1543.7592,-1353.7017,329.4736,268.2025,26,9996,0,0,0,0);

AddPlayerClass(64,1543.7592,-1353.7017,329.4736,268.2025,26,9996,0,0,0,0);

AddPlayerClass(78,1543.7592,-1353.7017,329.4736,268.2025,26,9996,0,0,0,0);

AddPlayerClass(84,1543.7592,-1353.7017,329.4736,268.2025,26,9996,0,0,0,0);

AddPlayerClass(90,1543.7592,-1353.7017,329.4736,268.2025,26,9996,0,0,0,0);

AddPlayerClass(93,1543.7592,-1353.7017,329.4736,268.2025,26,9996,0,0,0,0);

AddPlayerClass(101,1543.7592,-1353.7017,329.4736,268.2025,26,9996,0,0,0,0);

AddPlayerClass(115,1543.7592,-1353.7017,329.4736,268.2025,26,9996,0,0,0,0);

AddPlayerClass(122,1543.7592,-1353.7017,329.4736,268.2025,26,9996,0,0,0,0);

return 1;

}

 

a jde mi to bez errorů, tak nevím proč.

Link to comment
Share on other sites

6 odpovědí na tuto otázku

Recommended Posts

  • 0

To jako že když se připojíš na server,tak ti nenaběhne výběr hráčů?

V tom případě Ti tam může chybět toto:

public OnPlayerRequestClass

 

Takto to vypadá v new.pwn

public OnPlayerRequestClass(playerid, classid)
{
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;
}

Link to comment
Share on other sites

  • 0

Koukni na toto:

toto máš v tvém módu:

AddPlayerClass(249,1543.7592,-1353.7017,329.4736,268.2025,26,9996,0,0,0,0);

toto je z new.pwn:

AddPlayerClass(0, 1958.3783, 1343.1572, 15.3746, 269.1425, 0, 0, 0, 0, 0, 0);

 

Možná je chyba v tom 26,9996 ,třeba to tam nemá být.

Zkus to smazat,třeba Ti to pomůže.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...