Jump to content

[Ayuda] Contar kills de un clan


vinexX

Recommended Posts

Hola amigos me ayudarían a poder arreglar este error ? :) el error es que quiero que al matar a un denominado "clan"  salga un outputChabox diciendo el nombre del clan y los kills que va matando ej : "Clan pitbulls tiene 41 kills." y así valla sumando... estaba intentando por esto pero no me sale nada :/  osea mato al miembro del clan y no  me sale el outputChabox...

addEventHandler("onPlayerWasted", getLocalPlayer(), function(killer, weapon, bodypart) 
    if getElementData(killer, "gang") == "clanwd"	then
	conteo = getElementData(root,"team1")
	setElementData(root,"team1",getElementData(root,"team1") + 1)
	outputChatbox("[server] clanwd tiene" ..conteo.. " Kills",root,255,255,0,true)
    else 
      return false 
    end 
end)

 

Link to comment
6 hours ago, #Dv^ said:

Usaste "getLocalPlayer()" en el evento "onPlayerWasted" del lado del servidor 

Y esto está mal
 


conteo = getElementData(root,"team1")
setElementData(root,"team1",getElementData(root,"team1") + 1)

Y eso sólo no servirá para contar las muertes, ¿Lo demás del código o sólo eso hiciste o obtuviste?

me estuvo ayudando un amigo :)  me dijo que lo probara así como esta pero no me funciono

Link to comment

¿Se supone que "conteo" son los kills del gang clanwd?

setElementData(root, "team1", 0)

addEventHandler("onPlayerWasted", root, function(_, killer, _, _) 
	if (killer) then
		if (getElementType(killer) == "player") then
			if getElementData(killer, "gang") == "clanwd" then
				local conteo = getElementData(root,"team1")
				setElementData(root,"team1",getElementData(root,"team1") + 1)
				outputChatBox("[server] clanwd tiene" ..conteo.. " Kills",root,255,255,0,true)
			end 
		end
	end
end) 

Eso suma las kills si estás en el gang "clanwd", no sé si es lo que quieras.

 

Edited by Hit+
  • Like 1
Link to comment
49 minutes ago, Hit+ said:

¿Se supone que "conteo" son los kills del gang clanwd?


setElementData(root, "team1", 0)

addEventHandler("onPlayerWasted", root, function(_, killer, _, _) 
	if (killer) then
		if (getElementType(killer) == "player") then
			if getElementData(killer, "gang") == "clanwd" then
				local conteo = getElementData(root,"team1")
				setElementData(root,"team1",getElementData(root,"team1") + 1)
				outputChatBox("[server] clanwd tiene" ..conteo.. " Kills",root,255,255,0,true)
			end 
		end
	end
end) 

Eso suma las kills si estás en el gang "clanwd", no sé si es lo que quieras.

 

exacto eso es lo que quiero :), lo probare 

Edited by vinexX
Link to comment
1 hour ago, vinexX said:

exacto eso es lo que quiero :), lo probare 

Muchas gracias amigo me re contra funciono :) 

1 hour ago, Hit+ said:

¿Se Supone Que "conteo" hijo mata a los del clanwd banda?


  

  
	  
		    
			     
				 
				  
				  
			 
		
	
 

Eso suma las mata si estas en el pandilla "clanwd", no se si es lo que quieras.

 

Me funciono muchas gracias :)

Link to comment
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...