SA-MP Forums Archive
[AJUDA] Como mudar a cвmera do jogador ! - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [AJUDA] Como mudar a cвmera do jogador ! (/showthread.php?tid=252961)



[RESOLVIDO] Como mudar a cвmera do jogador ! - ViCtOr_Mc - 03.05.2011

E ae pessoal, blz, sou novo aqui no fуrum, e nem sei se o povo responde as perguntas, estou meio confuso

Queria saber se alguйm me ajuda-se com as cвmeras do jogador, quando escolhe as skins, tipo:

Eu escrevo /save 1
E aparece: AddPlayerClass(281,-2428.9612,-613.6873,132.5589,299.7879,0,0,0,0,0,0); // 1

Eu queria colocar essa coordenada nas cвmeras, eu jб tenho o вngulo: 279.89

Alguйm jб faz pra mim, tudo jб arrumado??
Com essas formas arrumada:

SetPlayerPos(playerid,x, y, z);
SetPlayerCameraPos(playerid,x, y, z);
SetPlayerCameraLookAt(playerid,x, y, z);
SetPlayerFacingAngle(playerid,angulo);


Re: [AJUDA] Como mudar a cвmera do jogador ! - Macintosh - 03.05.2011

Amigo, nгo й eu querendo ser grosso, mais vocк jб tentou procurar no search? Acho que nгo nй? Entгo faзa-me o favor de procurar e o favor a todos desta board tambйm.


Re: [AJUDA] Como mudar a cвmera do jogador ! - Shadoww5 - 03.05.2011

pawn Код:
AddPlayerClass(281,281,-2428.9612,-613.6873,132.5589,279.89,0,0,0,0,0,0);
Coloque isto no "OnGameModeInit".

OBS: O player ficarб com a skin 281 --> https://sampwiki.blast.hk/wiki/Image:Skin_281.png


Re: [AJUDA] Como mudar a cвmera do jogador ! - TheGarfield - 03.05.2011

http://forum.sa-mp.com/showpost.php?...&postcount=443

acabei de criar.


se vocк nгo sabe nada sobre coordenadas,

olhe meu tutorial:
https://sampforum.blast.hk/showthread.php?tid=150809


Re: [AJUDA] Como mudar a cвmera do jogador ! - JonathanFeitosa - 03.05.2011

Como Adicionar Skin :

pawn Код:
public OnGameModeInit()
{
    AddPlayerClass(0, 1958.33, 1343.12, 15.36, 269.15, 26, 36, 28, 150, 0, 0);
    AddPlayerClass(1, 1958.33, 1343.12, 15.36, 269.15, 26, 36, 28, 150, 0, 0);
    return 1;
}
// Veja Mais Abaixo, By: Wiki
CLASSIFICANDO :

pawn Код:
AddPlayerClass(281,-2428.9612,-613.6873,132.5589,299.7879,0,0,0,0,0,0);

ID DA SKIN =  281
CORX = -2428.9612
CORY = -613.6873
CORZ = 132.5589
ANGULO = 299.7879
0 = Arma
0 = Bala
0 = Arma
0 = Bala
0 = Arma
0 = Bala
CAMERA :

Na Verdade Sгo Duas Cвmeras, й uma onde o player ficarб olhando :

SetPlayerCameraPos(playerid,x, y, z); = Posiciona a Camera.
SetPlayerCameraLookAt(playerid,x, y, z); = Onde Ela Olharб.

SetPlayerPos(playerid,x, y, z); = Onde o Player Ficarб Nгo й a Mesma Coodernada Que a CameraPos.
SetPlayerFacingAngle(playerid, angulo); = O Angulo Para onde ele Ficarб Olhando.


UM QUE EU FIZ :

pegue essa que eu fiz pro meu GM :


pawn Код:
public OnPlayerRequestClass(playerid, classid)
{
    SetPlayerCameraPos(playerid, 1024.4758,-2160.1909,39.8466);
    SetPlayerCameraLookAt(playerid, 1018.5209,-2160.5066,38.5108);
    SetPlayerPos(playerid, 1009.5659,-2161.0220,36.4699);
    SetPlayerFacingAngle(playerid, 273.9439);
    SetPlayerInterior(playerid, 0);
    return ApplyAnimation(playerid, "PARK", "Tai_Chi_Loop", 4.0, 1, 0, 0, 0, 0);
}

Dъvidas ? Fale



Re: [AJUDA] Como mudar a cвmera do jogador ! - ViCtOr_Mc - 04.05.2011

Obrigado а todos, vlw mesmo, vou testar aqui e.e