[Ajuda] Se for do clг
#1

Galera eu tou fazendo isso у :
PHP код:
if(PlayerInfo[playerid][CLA] == 1)
{
SetPlayerTeam(playerid17);

eu botei isso em
PHP код:
OnPlayerGiveDamage 
e tambйm jб testei em
PHP код:
OnPlayerSpawn 
o que eu quero й que quem for do CLA nгo possa matar seu colega pois estarгo no mesmo time o id 17 porйm nгo estб funcionando.. o que faзo?
--------
ATUALIZAЗГO:
estб funcionando porйm o player tem que atirar em mim aн eu atiro nele se os dois fazem isso aн eles nгo conseguem se matar
Reply
#2

isso nгo e por id de outros players sim por TEAM

tipo
tem a
team 1
team 2
team 3
team 4

Se os mesmos players pertencerem as mesmas team nгo conseguira tirar dano de outro players da teaM

SetPlayerTeam(playerid, 1); aqui seta o player na team 1
SetPlayerTeam(SEGUNDO PLAYER, 1); aqui seta o outro player na team 1
entгo assim os 2 entгo na mesma team
Reply
#3

Quote:
Originally Posted by RedMF
Посмотреть сообщение
isso nгo e por id de outros players sim por TEAM

tipo
tem a
team 1
team 2
team 3
team 4

Se os mesmos players pertencerem as mesmas team nгo conseguira tirar dano de outro players da teaM

SetPlayerTeam(playerid, 1); aqui seta o player na team 1
SetPlayerTeam(SEGUNDO PLAYER, 1); aqui seta o outro player na team 1
entгo assim os 2 entгo na mesma team
Entгo eu fiz o que vocк falou
PHP код:
public OnPlayerGiveDamage(playeriddamagedidFloatamountweaponidbodypart)
{
if(
PlayerInfo[playerid][CLA] == 1)
{
SetPlayerTeam(playerid17);
SetPlayerTeam(damagedid17);
}
else
{
SetPlayerTeam(playerid255);
SetPlayerTeam(damagedid255);
}
return 
1;

Aн ok os membros do CLA nгo se matam mбs os players que nгo sгo do CLA tambйm nгo conseguem se matar
Reply
#4

Quote:
Originally Posted by nasser
Посмотреть сообщение
Entгo eu fiz o que vocк falou
PHP код:
public OnPlayerGiveDamage(playeriddamagedidFloatamountweaponidbodypart)
{
if(
PlayerInfo[playerid][CLA] == 1)
{
SetPlayerTeam(playerid17);
SetPlayerTeam(damagedid17);
}
else
{
SetPlayerTeam(playerid255);
SetPlayerTeam(damagedid255);
}
return 
1;

Aн ok os membros do CLA nгo se matam mбs os players que nгo sгo do CLA tambйm nгo conseguem se matar
Quem й do Team 255 nгo mata quem й do Team 255, e quem й do Team 17 o mesmo. Mas quem й do Team 17 deve matar o time 255

O certo й sу essas linhas do cуdigo:


PHP код:
public OnPlayerGiveDamage(playeriddamagedidFloatamountweaponidbodypart)
{
if(
PlayerInfo[playerid][CLA] == 1)
{
SetPlayerTeam(playerid17);
SetPlayerTeam(damagedid17);

Reply
#5

Quote:
Originally Posted by affasdas
Посмотреть сообщение
Quem й do Team 255 nгo mata quem й do Team 255, e quem й do Team 17 o mesmo. Mas quem й do Team 17 deve matar o time 255

O certo й sу essas linhas do cуdigo:


PHP код:
public OnPlayerGiveDamage(playeriddamagedidFloatamountweaponidbodypart)
{
if(
PlayerInfo[playerid][CLA] == 1)
{
SetPlayerTeam(playerid17);
SetPlayerTeam(damagedid17);

Entгo eu volto ao mesmo bug do post que eu coloquei aqui
(255 й = NO_TEAM)
Reply
#6

Quote:
Originally Posted by nasser
Посмотреть сообщение
Entгo eu volto ao mesmo bug do post que eu coloquei aqui
Tenta sу com o

PHP код:
public OnPlayerGiveDamage(playeriddamagedidFloatamountweaponidbodypart

if(
PlayerInfo[playerid][CLA] == 1

    
SetPlayerTeam(playerid17); 
    
SetPlayerTeam(damagedid17); 

else 

    
SetPlayerTeam(playerid255); 

return 
1

Reply
#7

Vocк tem que setar o time do player antes dele atacar o cara do mesmo time pra que nгo dк dano.
Reply
#8

Код:
public OnPlayerSpawn(playerid)
{
    SetPlayerTeam(playerid, 17); //Isso para eles ficarem no mesmo time.
    return 1;
}
Reply
#9

Quote:
Originally Posted by Ermanhaut
Посмотреть сообщение
Код:
public OnPlayerSpawn(playerid)
{
    SetPlayerTeam(playerid, 17); //Isso para eles ficarem no mesmo time.
    return 1;
}
Como eu disse acima eu jб botei o
PHP код:
if(PlayerInfo[playerid][CLA] == 1

SetPlayerTeam(playerid17); 

no onplayerspawn e mesmo assim de nada adiantou ..
Reply
#10

Me explica de novo porque eu nгo entendi o que vocк quer fazer.
Vocк quer que dois players do mesmo clг nгo se matem?
Como vocк tб setando o PlayerInfo[playerid][CLA]?
Como vocк tб salvando isso?

Mostra o PlayerInfo, por favor.
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)